@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap");

/*************************************************************************
    RESET AND INITIAL STYLES
**************************************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    font-family: "Source Sans Pro", sans-serif;
    /* propriedades para a fonte ficar mais legível */
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

input,
button {
    outline: 0;
    font-family: "Source Sans Pro", sans-serif;
}

a {
    text-decoration: none !important;
    color: #fff;
}

/*************************************************************************
    HEADER
**************************************************************************/

header#main-header {
    height: 52px;
    position: fixed;
    background: #283c4a;
    width: 100vw;
    display: flex;
    justify-content: center;
    z-index: 999;
}

header#main-header > div {
    width: 1188px;
    padding-left: 24px;
    padding-right: 40px;

    display: none;
    align-items: center;
    justify-content: space-between;
}

header#main-header > div > div {
    display: flex;
    align-items: center;
    width: 100%;
}

header#main-header > div > div > span {
    display: none;
}

a.mobilechatlink {
    display: none;
}

header#main-header > div > div > img#header-logo {
    width: 38px;
    height: 38px;
    margin-right: 10px;
    cursor: pointer;
}

header#main-header > div > div > img#header-picture-menu {
    display: none;
}

header#main-header > div > div > span#header-picture-menu-bars {
    display: none;
}

header#main-header > div div input {
    font-weight: bold;
    background: #e1e9ee;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    height: 34px;
    max-width: 280px;
    flex: 1;
    color: rgba(40, 62, 74, 0.75);
    padding-left: 10px;
}

header#main-header > div > div div {
    display: flex;
    flex: 1;
    max-width: 280px;
    position: relative;
}

header#main-header > div > div div input:focus {
    background: #fff;
}

header#main-header > div div div span#search-icon {
    position: absolute;
/*    left: 10px;*/
    right: 7px;
/*    top: 14px;*/
    top: 0;
    font-size: 12px;
    color: #283e4a;
    cursor: pointer;
    line-height: 39px;
}

header#main-header > div div div span#search-button {
    display: none;
    position: absolute;
    right: 0;
    padding: 9px;
    background: #e1e9ee;
    color: #0084bf;
    border-radius: 2px;
}

header#main-header > div nav {
    margin-right: 17px;
}

header#main-header > div nav ul {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0px;
}

header#main-header > div nav ul li {
    color: #c7d1d8;
    display: inline-block;
    height: 52px;
}

header#main-header > div nav ul li a {
    color: #fff;
}

header#main-header > div nav ul li div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 80px;
    font-size: 20px;
    height: 100%;
    padding-bottom: 3px;
    cursor: pointer;
    transition: color 0.3s;
}

header#main-header > div nav ul li div:hover {
    color: #fff;
}

header#main-header > div nav ul li div.selected {
    border-bottom: solid 2px #fff;
    color: #fff;
}

header#main-header > div nav ul li div#home {
    position: relative;
}

header#main-header > div nav ul li div#home::after {
    position: absolute;
    right: 23px;
    top: 5px;
    width: 13px;
    height: 13px;
    background: #d11124;
    border: 2px solid #283e4a;
    content: "";
    border-radius: 50%;
}

header#main-header > div nav ul li div#right-border {
    border-right: solid 1px rgba(255, 255, 255, 0.3);
}

header#main-header > div nav ul li div img {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 1px solid #e1e9ee;
}

header#main-header > div nav ul li div a {
    font-size: 13px;
    width: 100px;
    text-align: center;
    padding-bottom: 7px;
    color: #d3d2a1;
    margin-left: 20px;
    line-height: 1.2;
}

header#main-header > div nav ul li div a:hover {
    text-decoration: underline;
}

header#main-header > div nav ul li div span.nav-item-text {
    font-size: 13px;
}

header#main-header > div nav ul li div span.nav-item-text span {
    margin-left: 4px;
}

/***************************************************************************
    header > HEADER MEDIA QUERY
/**************************************************************************/

@media only screen and (max-width: 1047px) {
    header#main-header > div nav ul li div {
        width: 45px;
        justify-content: center;
    }

    header#main-header > div nav ul li div.selected {
        border-style: none;
    }

    header#main-header > div nav ul li div span.nav-item-text {
        display: none;
    }

    header#main-header > div nav ul li div a {
        padding-bottom: 0;
    }

    header#main-header > div nav ul li#premium {
        margin: 0 20px;
    }

    header#main-header > div nav ul li div#home::after {
        right: 5px;
        top: 10px;
    }
}

@media only screen and (max-width: 700px) {
    header#main-header > div {
        padding-right: 14px;
    }

    header#main-header > div nav {
        display: none;
    }

    header#main-header > div > div > img#header-logo {
        display: none;
    }

    header#main-header > div > div > img#header-picture-menu {
        display: block;
        height: 38px;
        width: 38px;
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: inset 0 1.5px 3px 0 rgba(0, 0, 0, 0.15),
            0 1.5px 3px 0 rgba(0, 0, 0, 0.15);
        background-color: #c7d1d8;
        cursor: pointer;
        margin-right: 25px;
    }

    header#main-header > div > div > span#header-picture-menu-bars {
        display: block;
        position: absolute;
        left: 25px;
        top: 26px;
        color: #283c4a;
        background: #fff;
        font-size: 10px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #f6f6f6;
        text-align: center;
    }

    header#main-header > div > div > span#header-picture-menu-bars span {
        margin-top: 5px;
    }

    a.mobilechatlink{
        display: block;
        color: #c7d1d8;
        margin-left: 23px;
    }
    a.mobilechatlink span {
        
        width: 38px;
        font-size: 26px;
        cursor: pointer;
        transition: color 0.3s;
        
    }
    
    header#main-header > div > div >  span {
        display: block;
        color: #c7d1d8;
        margin-left: 23px;
        width: 38px;
        font-size: 26px;
        cursor: pointer;
        transition: color 0.3s;
        
    }

    header#main-header > div > div > span:hover {
        color: #fff;
    }

    header#main-header > div > div div {
        max-width: 100%;
        flex-shrink: 1;
        width: 0;
    }

    header#main-header > div div input {
        max-width: 100%;
        width: 0;
    }

    header#main-header > div div input {
        max-width: 100%;
        width: 0;
    }
}

/*************************************************************************
    MAIN CONTAINER
**************************************************************************/

div.customcontainer {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 30px;

    grid-template-areas:
        "ads ads ads"
        "left-aside main-section right-aside";
    grid-template-rows: 100px 1fr;
    grid-template-columns: 216px 1fr 312px;

    display: none;
}

/**************************************************************************
    main container > ADS SECTION
**************************************************************************/

div.customcontainer section#ads {
    grid-area: ads;
    display: flex;
    align-items: flex-end;
}

section#ads div {
    padding: 16px 0;
    height: 50%;
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-family: helvetica, arial, sans-serif;
}

section#ads div a {
    cursor: pointer;
    font-weight: bold;
}

section#ads div a:hover {
    text-decoration: underline;
}

section#ads div span#ad-title {
    color: #0084bf;
}

section#ads div span#ad-subtitle {
    padding-left: 3px;
    color: #434649;
}

section#ads div span#ad {
    font-size: 13px;
    padding-left: 3px;
    color: rgba(82, 67, 67, 0.55);
}

/**************************************************************************
    main container > LEFT ASIDE
**************************************************************************/

.customcontainer > div#left-aside-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.customcontainer aside#left-aside {
    grid-area: left-aside;
    height: 100vh;
    width: 216px;
}

.customcontainer aside#left-aside > div {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
}

/**************************************************************************
    main container > left aside > PROFILE CARD
**************************************************************************/

aside#left-aside div#profile-card {
/*    height: 305px;*/
    height: auto;
    margin-bottom: 8px;

    display: flex;
    flex-direction: column;
}

aside#left-aside div#profile-card div#background {
    height: 54px;
/*    background: linear-gradient(
        90deg,
        rgba(2, 0, 36, 1) 0%,
        rgba(9, 9, 121, 1) 100%
    );*/
    background-position: center !important;
    background-size: cover !important;
}

aside#left-aside div#profile-card div#profile-info {
/*    height: 161px;*/
    height: auto;
    width: 216px;
    background: transparent;
    padding: 12px 12px 16px;
/*    border-bottom: 1px solid rgba(0, 0, 0, 0.15);*/
    margin: -49px auto 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

aside#left-aside div#profile-card div#profile-info img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: inset 0 1.5px 3px 0 rgba(0, 0, 0, 0.15),
        0 1.5px 3px 0 rgba(0, 0, 0, 0.15);
    background-color: #fff;
    margin-bottom: 18px;
    cursor: pointer;
}

aside#left-aside div#profile-card div#profile-info strong {
    font-size: 20px;
    margin-bottom: 5px;
    cursor: pointer;
}

aside#left-aside div#profile-card div#profile-info small {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
}

aside#left-aside div#profile-card div#profile-links {
    font-size: 14px;
    padding-top: 6px;

    display: flex;
    flex-direction: column;
}

aside#left-aside div#profile-card div#profile-links a {
    display: flex;
    justify-content: space-between;
    padding: 3px 12px;
}

aside#left-aside div#profile-card div#profile-links a:hover {
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.6);
}

aside#left-aside div#profile-card div#profile-links a span {
    color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    font-size: 13px;
}

aside#left-aside div#profile-card div#profile-links a span.profile-number {
    color: #0073b1;
}

aside#left-aside div#profile-card > span {
    font-size: 12px;
    padding: 0 12px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.9);
}

aside#left-aside div#profile-card > a {
    font-size: 13px;
    margin-top: 15px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.6) !important;

    display: flex;
    flex-direction: column;
    align-items: center;
}

aside#left-aside div#profile-card > a span#profile-premium {
    color: rgba(0, 0, 0, 0.9);
    font-weight: bold;
    font-size: 12px;
}

aside#left-aside div#profile-card > a span#profile-premium span {
    padding-right: 4px;
    color: #b29a53;
    font-size: 10px;
}

aside#left-aside div#profile-card > a:hover {
    text-decoration: underline;
}

/**************************************************************************
    main container > left aside > PROFILE GROUPS
**************************************************************************/

aside#left-aside div#profile-groups {
    padding-top: 8px;
    width: 216px;
}

aside#left-aside div#profile-groups section {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
}

aside#left-aside div#profile-groups section header {
    padding: 3px 12px 5px;
    font-weight: normal;
    color: #000;

    display: flex;
    justify-content: space-between;
}

aside#left-aside div#profile-groups section header span.fas {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    display: none;
    cursor: pointer;
    padding: 0 7px;
}

aside#left-aside div#profile-groups section header:hover {
    background: #f3f5f7;
}

aside#left-aside div#profile-groups section span.group-title {
    color: #0073b1;
    font-weight: bold;
    cursor: pointer;
}

aside#left-aside div#profile-groups section span.group-title:hover {
    text-decoration: underline;
}

aside#left-aside div#profile-groups section ul {
    margin-bottom: 2px;
    user-select: none;
}

aside#left-aside div#profile-groups section ul li {
    list-style: none;
    padding: 3px 12px;
    cursor: pointer;
}

aside#left-aside div#profile-groups section ul li:hover {
    background: #f3f5f7;
}

aside#left-aside div#profile-groups section ul li span:last-child:hover {
    color: #0073b1;
    text-decoration: underline;
}

aside#left-aside div#profile-groups section ul li .fas {
    width: 20px;
    margin-right: 3px;
    text-align: center;
    color: #7a8b98;
}

aside#left-aside div#profile-groups section a {
    color: rgba(0, 0, 0, 0.6) !important;
    padding-left: 38px;
    user-select: none;
}

aside#left-aside div#profile-groups section a:hover {
    color: #0073b1 !important;
    text-decoration: underline !important;
}

aside#left-aside div#profile-groups > a {
    display: block;
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    padding: 12px;
    margin-top: 15px;
    border-top: 1px #cfcfcf solid;
}

aside#left-aside div#profile-groups > a:hover {
    color: #0073b1;
    text-decoration: underline;
}

aside#left-aside div#profile-groups section .group-list {
    margin-bottom: 15px;
}

/**************************************************************************
    main container > MAIN SECTION
**************************************************************************/

.customcontainer > div#main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin-bottom: 100px;
}

div.customcontainer main#main-section {
    grid-area: main-section;
    margin: 0 25px;
    width: -moz-available;
    width: -webkit-fill-available;
/*    width: 550px;*/
}

/**************************************************************************
    main container > main section > SHARE BOX & FEED SORT
**************************************************************************/

main#main-section div#share-box {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    margin-top: 1px;

    display: flex;
    flex-direction: column;
}

main#main-section div#share-box div#button-box {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

main#main-section div#share-box div#button-box .fas {
    font-size: 18px;
}

main#main-section div#share-box div#button-box button {
    background: #fff;
    border: 0;
    color: #696c6f;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    padding: 26px 26.5px;
    cursor: pointer;
}

main#main-section div#share-box div#button-box button#btn-post {
    width: 100%;
    text-align: left;
    padding: 26px 17px;
}

main#main-section div#share-box div#button-box button#btn-post:hover {
    color: #0073b1;
}

main#main-section
    div#share-box
    div#button-box
    button#btn-post:hover
    span#btn-text {
    text-decoration: underline;
}

main#main-section div#share-box div#button-box button#btn-post span#btn-text {
    font-size: 16px;
    font-weight: bold;
    padding-left: 6px;
}

main#main-section div#share-box div#button-box button#btn-document {
    border-right: 0;
    padding: 26px 30px;
}

main#main-section div#share-box div#button-box button#btn-picture:hover,
main#main-section div#share-box div#button-box button#btn-video:hover,
main#main-section div#share-box div#button-box button#btn-document:hover {
    background: #f3f6f8;
}

main#main-section div#link-box {
    padding: 13px 16px;
    background: #f3f6f8;
    font-size: 14px;
}

main#main-section div#link-box a {
    color: #0073b1 !important;
    font-weight: bold;
    padding-right: 1px;
}

main#main-section div#link-box a:hover {
    text-decoration: underline;
}

main#main-section div#feed-sort {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

main#main-section div#feed-sort hr {
    flex: 1;
    border: 0;
    display: block;
    height: 1px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

main#main-section div#feed-sort button {
    border: 0;
    background: transparent;
    margin-left: 15px;
    padding-bottom: 4px;
    cursor: pointer;
}

main#main-section div#feed-sort button span {
    color: rgba(0, 0, 0, 0.6);
}

main#main-section div#feed-sort button span.fas {
    font-size: 18px;
    padding: 0 2px;
}
/**************************************************************************
    main container > main section > FEED POSTS
**************************************************************************/

main#main-section article {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    margin-bottom: 8px;
    position: relative;
}

main#main-section article div#post-author {
    display: flex;
    padding: 14px 14px 0;
}

main#main-section article div#post-author a {
    flex: 1;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.9) !important;
    font-weight: bold;
}
main#main-section article div#post-author a h3 {
    font-size: 15px;
}

main#main-section article div#post-author > div {
    cursor: pointer;
    border-radius: 50%;
    height: 32px;
    width: 32px;

    display: flex;
    align-items: center;
    justify-content: center;
}

main#main-section article div#post-author > div:hover {
    background: #f3f6f8;
}

main#main-section article div#post-author > div > span {
    padding: 2px;
    font-size: 4px;
}

main#main-section article div#post-author a > div {
    display: flex;
}

main#main-section article div#post-author a > div img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid transparent;
    margin-right: 6px;
}

main#main-section article div#post-author a > div > div {
    display: flex;
    flex-direction: column;
    margin-top: 1px;
}

main#main-section article div#post-author a > div > div > span {
    line-height: 10px;
    margin-top: 4px;
    margin-left: 1px;
}

main#main-section article div#post-author a > div > div div strong {
    color: #000;
    font-size: 15px;
}

main#main-section article div#post-author a > div > div div strong:hover {
    color: #0073b1;
}

main#main-section article div#post-author a > div > div div span span {
    font-size: 14px;
    font-weight: bold;
}

main#main-section article div#post-data p {
    padding: 8px 14px 0;
}

main#main-section article div#post-data p span {
    color: #0073b1;
    font-weight: bold;
    cursor: pointer;
}

main#main-section article div#post-data p a {
    color: #0073b1;
    font-weight: bold;
}

main#main-section article div#post-data p#post-translation {
    padding-left: 7px;
}

main#main-section article div#post-data p#post-translation button {
    border: 0;
    background: #fff;
    color: #0073b1;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 4px 7px;
    cursor: pointer;
    transition: background-color 0.3s;
}

main#main-section article div#post-data p#post-translation button:hover {
    background-color: #e8f7ff;
}

main#main-section article div#post-data img {
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #e6e9ec;
    border-top: 1px solid #e6e9ec;
}

main#main-section article div#post-interactions div#interactions-amount {
    margin: 7px 16px;
    border-bottom: 1px solid #e6e9ec;
    padding-bottom: 10px;

    display: flex;
    align-items: center;
}

main#main-section
    article
    div#post-interactions
    div#interactions-amount
    span.fas {
    font-size: 8px;
    padding: 3px;
    margin-right: 3px;
    border-radius: 50%;
    color: #f3f6f8;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3), 1px -1px 0 rgba(0, 0, 0, 0.3),
        -1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

main#main-section
    article
    div#post-interactions
    div#interactions-amount
    span#amount-info {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-left: 3px;
    cursor: pointer;
}

main#main-section
    article
    div#post-interactions
    div#interactions-amount
    span.like_count {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-left: 3px;
    cursor: pointer;
}

main#main-section
    article
    div#post-interactions
    div#interactions-amount
    span.comment_count {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-left: 3px;
    cursor: pointer;
}

main#main-section
    article
    div#post-interactions
    div#interactions-amount
    span#amount-info
    span {
    font-size: 14px;
    font-weight: bold;
}

main#main-section
    article
    div#post-interactions
    div#interactions-amount
    span#like-icon {
    background: #0092e0;
}

main#main-section
    article
    div#post-interactions
    div#interactions-amount
    span#heart-icon {
    background: #f67373;
}

main#main-section article div#post-interactions div#interactions-btns {
    margin: 4px 10px;
    display: flex;
}

main#main-section article div#post-interactions div#interactions-btns button {
    border: 0;
    background: #fff;
    color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    font-size: 14px;
    padding: 2px 5px;
    height: 30px;
    margin-right: 5px;
    cursor: pointer;

    display: flex;
    align-items: center;
}

main#main-section
    article
    div#post-interactions
    div#interactions-btns
    button:hover {
    background: #f1f1f1;
    color: rgba(0, 0, 0, 0.8);
}

main#main-section
    article
    div#post-interactions
    div#interactions-btns
    button
    span.far {
    font-size: 20px;
    margin-right: 5px;
}

main#main-section
    article
    div#post-interactions
    div#interactions-btns
    button
    span.fa-thumbs-up {
    margin-bottom: 4px;
}

main#main-section
    article
    div#post-interactions
    div#interactions-btns
    button
    span.fa-share-square {
    font-size: 18px;
}

/**************************************************************************
    main container > RIGHT ASIDE
**************************************************************************/

div.customcontainer aside#right-aside {
    grid-area: right-aside;
    background-color: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 2px;
    height: 699px;
}

/**************************************************************************
    main container > right aside > RECOMMENDATIONS SECTION
**************************************************************************/

aside#right-aside div#rec-section {
/*    height: 273px;*/
    height: auto;
    padding: 16px 0;
    border-bottom: 1px solid #cfcfcf;
}

aside#right-aside div#rec-section div header {
    font-size: 18px;
    padding: 13px 12px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

aside#right-aside div#rec-section div header span.fas {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
}

aside#right-aside div#rec-section div header span.fas > span {
    display: none;
    position: absolute;
    top: -4px;
    right: 18px;

    font-size: 20px;
    color: #fff;
    text-shadow: -1px 0 #fff, 0 1px #cfcfcf, 1px 0 #cfcfcf, 0 -1px #cfcfcf;
}

aside#right-aside div#rec-section div header span.fas div#float-info {
    display: none;
    position: absolute;
    top: -22px;
    right: 33px;
    height: 60px;
    width: 320px;

    padding: 13px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    color: #000;
    background-color: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 2px;
    line-height: 1.2;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

aside#right-aside div#rec-section div header span.fas div#float-info a {
    color: #0073b1;
    font-weight: bold;
}

aside#right-aside div#rec-section div header span.fas div#square {
    position: absolute;
    top: -22px;
    right: 10px;
    height: 60px;
    width: 30px;
    background: transparent;
    min-height: 1px;
}

aside#right-aside div#rec-section > div > div {
    padding-bottom: 6px;
}

aside#right-aside div#rec-section > div > div > div {
    display: flex;
    align-items: center;
    padding: 0 10px 3px;
}

aside#right-aside div#rec-section > div > div > div img {
    width: 48px;
    height: 48px;
    border: 4px solid transparent;
    border-radius: 2px;
    margin-right: 8px;
    cursor: pointer;
}

aside#right-aside div#rec-section > div > div > div > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 5px;
}

aside#right-aside div#rec-section > div > div > div > div strong {
    font-size: 14px;
    padding-bottom: 3px;
    cursor: pointer;
    color: #212529;
}

aside#right-aside div#rec-section > div > div > div > div small {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 14px;
    cursor: pointer;
}

aside#right-aside div#rec-section > div > div > div button {
    background: #fff;
    color: #0073b1;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid #0073b1;
    border-radius: 2px;
    height: 26px;
    width: 80px;
    padding: 0 6px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background-color 0.2s;
}

aside#right-aside div#rec-section > div > div > div button:hover {
    border: 2px solid #0073b1;
    background-color: #e4f4fc;
}

aside#right-aside div#rec-section > div > div > div button span.fas {
    padding-right: 5px;
}

aside#right-aside div#rec-section > div > a {
    color: #0073b1 !important;
    font-size: 16px;
    margin: 13px;
}

aside#right-aside div#rec-section > div > a:hover {
    color: #016194;
}

/**************************************************************************
    main container > right aside > LINKEDIN SECTION
**************************************************************************/

aside#right-aside div#linkedin-section section {
    height: 279px;
    padding: 16px 0;
    border-bottom: 1px solid #cfcfcf;

    display: flex;
    flex-direction: column;
}

aside#right-aside div#linkedin-section section small {
    align-self: flex-end;
    padding-right: 15px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 2px;
}

aside#right-aside div#linkedin-section section a span {
    color: rgba(0, 0, 0, 0.6);
    display: block;
    text-align: center;
    font-size: 13px;
    padding: 0 12px;
}

aside#right-aside div#linkedin-section section a div {
    display: flex;
    justify-content: center;
}

aside#right-aside div#linkedin-section section a div img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin: 10px;
}

aside#right-aside div#linkedin-section section a div img#linkedin-key {
    border-radius: 0;
}

aside#right-aside div#linkedin-section section a strong {
    color: rgba(0, 0, 0, 0.7);
    display: block;
    text-align: center;
    font-size: 16px;
    padding: 0 16px;
    font-weight: normal;
}

aside#right-aside div#linkedin-section section a button {
    background: #fff;
    color: #0073b1;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid #0073b1;
    border-radius: 2px;
    height: 34px;
    padding: 0 16px;
    margin-top: 10px;
    cursor: pointer;
}

aside#right-aside div#linkedin-section footer ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    font-size: 14px;
    color: #485d69;
    margin: 18px 0;
}

aside#right-aside div#linkedin-section footer ul li {
    margin: 2.5px 12px;
    cursor: pointer;
}

aside#right-aside div#linkedin-section footer ul li:hover {
    color: #0073b1;
}

aside#right-aside div#linkedin-section footer ul li:hover .fas {
    color: #0073b1;
}

aside#right-aside div#linkedin-section footer ul li span {
    padding: 4px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

aside#right-aside div#linkedin-section footer > div {
    text-align: center;
    font-size: 14px;
}

aside#right-aside div#linkedin-section footer > div > strong span {
    background: #0073b1;
    color: #fff;
    padding: 0 2px;
    border-radius: 2px;
    margin: 1px;
    font-size: 12px;
}

aside#right-aside div#linkedin-section footer > div > span {
    font-size: 13px;
}

/***************************************************************************
    container > CONTAINER MEDIA QUERY
/**************************************************************************/

@media only screen and (max-width: 1180px) {
    div.customcontainer {
        grid-template-areas:
            "ads ads"
            "left-aside main-section";
        grid-template-rows: 100px 1fr;
        grid-template-columns: 1fr 2fr;
    }

    div.customcontainer aside#right-aside {
        display: none;
    }
}

@media only screen and (max-width: 861px) {
    div.customcontainer {
        grid-template-areas:
            "."
            "main-section ";
        grid-template-rows: 62px 1fr;
        grid-template-columns: 1fr;
    }

    .customcontainer > div#main-wrapper {
        align-items: center;
    }

    div.customcontainer section#ads {
        display: none;
    }

    div.customcontainer aside#left-aside {
        display: none;
    }
}

@media only screen and (max-width: 660px) {
    div.customcontainer {
        padding: 0;
    }

    div.customcontainer main#main-section {
        max-width: 550px;
        width: 100%;
        margin: 0;
    }

    main#main-section div#share-box div#button-box button {
        display: none;
    }

    main#main-section div#share-box div#button-box button#btn-post {
        display: block;
        padding: 20px 17px;
        border-right: 0;
    }

    main#main-section div#feed-sort button {
        margin-right: 10px;
    }
}

/*
div.customcontainer {
    max-width: 1188px;
    margin: 0 auto;
    padding: 0 30px;

    grid-template-areas:
        "ads ads ads"
        "left-aside main-section right-aside";
    grid-template-rows: 100px 1fr;
    grid-template-columns: 216px 1fr 312px;

    display: none;
}
*/

/**************************************************************************
    LOADING PAGE
**************************************************************************/

div#loading-page > div {
    position: fixed;
    top: 25%;
    left: calc(50% - 32px);

    display: flex;
    flex-direction: column;
    align-items: center;
}

div#loading-page img {
    width: 50px;
    height: 50px;
}

div#dot-loader {
    padding-left: 2px;
    width: 64px;
    height: 64px;
}

/* css loader from loading.io */
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #0073b1;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(19px, 0);
    }
}

/***************************************************************************
    GLOBAL CLASSES
/**************************************************************************/

.letter-spacing {
    letter-spacing: 0.6px;
}

.font-16 {
    font-size: 16px !important;
}

.position-fixed {
    position: fixed;
    top: 60px;
}

.right-aside-fixed {
    background: #fff;
    border: 1px solid #cfcfcf;
    width: 312px;
    height: 440px;
}

.vanish {
    border: 0 !important;
    background: transparent !important;
}

ul.group-list.inner_left li {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.group-list.inner_left li .last-span {
    margin-left: auto;
}

/************ my css ************/

.inner_left_second {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-top: 1.6rem;
    text-align: center;
    padding-bottom: 1rem;
}
.inner_left_second h2 {
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
}
.inner_left_second p {
    font-size: 13px;
    margin-bottom: 10px;
}
.inner_left_second p a {
    padding-left: 0px !important;
    color: #0a66c2 !important;
}
form.mail_input_form {
    margin-bottom: 10px;
}
form.mail_input_form input#mail {
    border-radius: 0.4rem;
    color: rgb(0,0,0,0.9);
    padding: 0.3rem 0.8rem;
    box-sizing: border-box;
    background-color: white;
}
form.mail_input_form .mail_input_btn {
    padding-left: 1.6rem!important;
    padding-right: 1.6rem!important;
    border-radius: 1.6rem;
    margin-top: 8px;
}
form.mail_input_form .mail_input_btn button {
    border: 1px solid #0a66c2;
    background: transparent;
    color: #0a66c2;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
}
.inner_left_second a {
    padding-left: 0px !important;
}
.inner_left_second_footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-top: 1.6rem;
    text-align: center;
    padding-bottom: 1rem;
}
.inner_left_second_footer ul {
    display: block;
}
.inner_left_second_footer ul li {
    display: inline-block;
}
.inner_left_second_footer ul li a {
    padding-left: 0px !important;
}
.seel_btn {
    width: auto !important;
}
.seel_btn:hover{
    border-radius: 4px !important;
}
.seel_btn a.all_invitation {
    border-radius: 4px;
    padding: 5px;
}
.inivtation_box {
    padding: 0 10px;
}
.inivtation_box ul {
    list-style: none;
}
.inivtation_box ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}
.profile_box {
    border-radius: 50%;
    width: 50px;
}
.profile_box img {
    width: 100%;
    border-radius: 50%;
}
.inivtation_profile_details h3 {
    color: #000;
    font-size: 15px;
}
.inivtation_profile_details p {
    width: 100%;
    color: rgba(0, 0, 0, 0.6);
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.inivtation_profile_btn_box {
    align-items: center;
    /* justify-content: space-between; */
    display: flex;
    margin-left: auto;
}
.inivtation_profile_btn_box a {
    background: #f3f6f8;
    color: rgba(0,0,0,0.6) !important;
    /* display: inline-block; */
    padding: 5px 14px;
    margin: 0 5px;
    border-radius: 18px;
    border: 1px solid #f3f6f8;
    margin-top: 10px;
    font-size: 13px;
}
a.accept_btn {
     border: 1px solid #848484;
    color: #fff !important;
    background: #0a66c2;
}
body.network_page main#main-section {
    width: 100%;
}
.all_network_row {
    display: flex;
    flex-wrap: wrap;
    /* margin: -10px; */
    justify-content: flex-start;
}

.all_network_row .col-3 {
    width: 23%;
    padding: 10px;
    box-sizing: border-box;
    margin: 0 8px;
}

.all_network_profile_box {
    text-align: center;
    /* padding: 10px; */
    border-radius: 10px;
    /* border: 1px solid #b3b3b3; */
    box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.08);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.close_btn {
    position: absolute;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    right: 15px;
    top: 15px;
    z-index: 2;
}
.all_network_profile_box .cover_box {
    background-size: cover;
    background-position: center;
    padding: 25px 0;
    background-repeat: no-repeat;
    border-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    height: 50px;
}

.profileimg_box {
    border-radius: 50%;
    width: 100px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: -35px;
    background: #f2f2f2;
    padding: 10px;
    position: relative;
}
.profileimg_box img {
    width: 100%;
    border-radius: 50%;
}
.all_network_profile_about_box {
    padding: 10px;
    color: #000;
}
.all_network_profile_about_box p {
    font-size: 12px;
}
.conn_box {
    padding: 10px;
}
.conn_box span {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}
.conn_box span i {
    margin-right: 10px;
}
.all_network_profile_footer {
    padding: 10px;
}
.all_network_profile_footer a {
    background: white;
    border: 1px solid #0a66c2;
    color: #0a66c2 !important;
    padding: 5px 20px;
    border-radius: 20px;
}
.all_network_profiles {
    padding-bottom: 14px;
}
a.post_job_btne {
    border: 1px solid #0073b1;
    color: #0073b1 !important;
    padding: 15px 30px;
    text-align: center;
    border-radius: 50px;
    margin-top: 20px;
    display: block;
}
.search_jobs {
    padding: 10px;
}
a.job_search_link {
    padding: 1px 8px;
    color: #0073b1 !important;
    border: 1px solid #0073b1;
    display: inline-block;
    border-radius: 50px;
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 12px;
}
.job_profile_box {
    width: 100px;
}
.job_profile_box img {
    width: 100%;
}
.job_profile_details h3 {
    color: #0073b1;
    font-size: 15px;
    padding-left: 0px;
}
.job_profile_details span {
    color: #000;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.job_profile_details p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 13px;
    margin-bottom: 2px;
}
.jobs_recommeded_section {
    display: block !important;
}
.job_profile_details span.job_time {
    color: green;
    font-size: 13px;
    display: block;
}
span.job_status {
    color: rgba(0, 0, 0, 0.6);
    display: block;
    margin-top: 6px;
}
span.job_status i {
    color: green;
}
.job_profile_details span.job_time {
    color: green;
    font-size: 13px;
    display: block;
    margin-top: 10px;
}
.job_box {
    padding: 0 10px;
    margin-top: 10px;
}
.job_box ul {
    list-style: none;
}
.job_box ul li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin: 10px 0;
}
a.job_detail_sec {
    width: 100%;
}
.job_profile_details {
    width: 78%;
}
.job_btn_box {
    align-items: center;
    /* justify-content: space-between; */
    display: flex;
    margin-left: auto;
}
.job_btn_box a {
    padding: 5px;
    color: #000 !important;
    margin: 0 5px;
}
.text-center {
    text-align: center;
}
.jobs_footer a {
    color: #000 !important;
    display: block;
    padding: 10px;
}
.jobs_footer a:hover {
        background: rgba(0,0,0,0.08);
}
.jobs_footer {
    /* padding: 10px; */
    border-top: 1px solid rgba(0,0,0,0.08);
}
.jobs_rec_box {
    padding: 10px !important;
    height: auto !important;
}
.jobs_rec_box header {
    display: block !important;
    padding: 0px !important;
    margin-bottom: 10px;
}
.jobs_rec_box header p {
    font-size: 12px;
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.6);
}
.jobs_rec_box p {
    font-size: 14px;
}
.inner_left_second_footer ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    font-size: 14px;
    color: #485d69;
    margin: 18px 0;
}
.inner_left_second_footer ul li {
    margin: 2.5px 12px;
    cursor: pointer;
}
aside#left-aside div#profile-groups section ul li:hover {
    color: #0073b1;
    background: transparent !important;
}
.inner_left_second_footer footer > div {
    text-align: center;
    font-size: 14px;
}
.inner_left_second_footer footer > div Strong span {
    background: #0073b1;
    color: #fff;
    padding: 0 2px;
    border-radius: 2px;
    margin: 1px;
    font-size: 12px;
}
.inner_left_second_footer footer > div > span {
    font-size: 13px;
}
.jobs_right_side {
    background: transparent !important;
    border: none !important;
}
.jobs_rec_box {
    padding: 10px !important;
    height: auto !important;
    background-color: #fff;
    border: 1px solid #cfcfcf;
}
.jobs_left_aside aside div#profile-groups {
    padding: 10px 0 !important;
}
.jobs_left_aside aside div#profile-groups ul.group-list {
    margin-bottom: 0px !important;
}
a.post_job_btne:hover {
    border: 1px solid #0073b1;
    background: #0073b117 !important;
}
span.explore_ad_btn {
    margin-top: 10px;
    display: block;
}
span.explore_ad_btn a {
    color: rgba(0,0,0,0.6) !important;
    font-size: 15px;
}
span.explore_ad_btn a:hover {
    color: #0073b1 !important;
    text-decoration: underline;
}
.notifyleftside div#profile-groups {
    padding: 10px !important;
}
.notifyleftside div#profile-groups h3 {
    margin-bottom: 10px;
    font-size: 15px;
}
.notifyleftside div#profile-groups section a {
    padding-left: 0px !important;
}
.notifyleftside div#profile-groups section a:hover {
    color: #0073b1;
    text-decoration: underline;
}
.notify_box {
    padding: 0px;
}
.notify_box ul {
    list-style: none;
}
.notify_box ul li{
    display: flex;
    align-items: start;
    gap: 15px;
    margin: 0px 0;
    padding: 15px 10px;
}
.notify_box ul li:hover {
    background: rgba(0,0,0,0.08);
}
.notify_profile_box {
    width: 45px;
    border-radius: 50%;
}
.notify_profile_box img {
    width: 100%;
    border-radius: 50%;
}
.notify_profile_details h3 {
    color: #000;
    font-size: 13px;
    padding-left: 0px;
    margin-bottom: 0px;
    padding-bottom: 2px;
    padding-top: 0px;
}
.notify_profile_details p {
    width: 399px;
    color: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-top: 5px;
    font-size: 12px;
}
.activity-inks.notify_right_corner_box {
    width: 110px;
}
.notify_right_corner_box span {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
/*    display: block;*/
}
.notify_right_corner_box button {
    background: none;
    border: none;
    display: block;
    font-size: 17px;
    padding: 5px 10px;
}
.notify_dropdown button i {
    font-size: 19px;
}
/******** dropdown button **********/

.notify_dropbtn {
  cursor: pointer;
}

.notify_dropdown {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.notify-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 300px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    right: -48px;
}

.notify-dropdown-content a {
  color: rgba(0, 0, 0, 0.6) !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.notify_dropdown a:hover {background-color: #ddd;}

.notify_show {display: block;}
.show {display: block !important;}


.header_dropdown {
  position: relative;
/*  display: inline-block;
  margin-top: 10px;*/
}

.header-profile-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 270px;
/*    overflow: auto;*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    top: 55px;
    width: 270px !important;
}

.header-profile-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/*.header_dropdown a:hover {background-color: #ddd;}*/
span.header_drop_head {
    padding: 10px;
    display: block;
}
span.header_drop_head_prof {
    display: flex;
    align-items: center;
    gap: 15px;
}
span.header_drop_profile {
    width: 66px;
    border-radius: 50%;
    padding-left: 10px;
}
span.header_drop_profile img {
    width: 100% !important;
    height: auto !important;
}
span.header_drop_profile_details h4 {
    color: #000;
    font-size: 15px;
}
span.header_drop_profile_details p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    margin-top: 6px;
}
span.view_btn {
    display: block;
    margin-top: 10px;
    text-align: center !important;
}
span.view_btn a {
    color: #0073b1 !important;
    border: 1px solid #0073b1;
    border-radius: 50px;
    padding: 4px 10px;
    margin: 0 auto !important;
    width: 47% !important;
}
span.header_drop_content {
    display: block;
    padding: 10px;
}
span.header_drop_content h4 {
    color: #000;
    font-size: 15px;
}
ul.header_drop_links {
    display: block !important;
}
ul.header_drop_links li {
    display: block !important;
    height: auto !important;
}
ul.header_drop_links li a {
    width: 100% !important;
    text-align: left !important;
    margin-left: 0px !important;
    padding: 8px 8px 8px 0px;
    color: rgba(0, 0, 0, 0.6) !important;
}
hr.dropdown_line {
    margin-top: 0px;
    margin-bottom: 0px;
}
article.profile_main_sec {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 8px;
}
.profile_header {
    padding-bottom: 10px;
}
.cover_box {
    width: 100%;
    height: auto;
    position: relative;
    cursor: pointer;
}
.cover_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.edit_box {
    position: absolute;
    right: 10px;
    top: 10px;
}
.edit_box span {
    background: #fff;
    border-radius: 50%;
    display: block;
    text-align: center;
    padding: 3px 10px;
    cursor: pointer;
}
.edit_box span i {
    color: #0073b1;
    font-size: 12px;
}
.profile_pic_box {
    width: 150px;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 2px;
    margin-top: -45px;
/*    z-index: 2;*/
    position: relative;
    background: #fff;
    margin-left: 20px;
}
.profile_pic_box img {
    border-radius: 50%;
    width: 100%;
}
.profile_detail_section {
    padding: 10px;
}
.profile_detail_section h3.profile_name_details {
    font-size: 20px;
    color: #000;
}
.profile_detail_section p.profile_skills {
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 13px;
}
.profile_detail_section span.profile_location {
    display: block;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
}
.profile_detail_section span.profile_location a {
    color: #0073b1 !important;
    font-weight: bold;
}
.profile_detail_section span.profile_conn {
    color: #0073b1;
    font-weight: 600;
    font-size: 14px;
/*    cursor: pointer;*/
}
.copyurlbtn i {
    color: #fff;
}
.profile_detail_section span.conn_sec {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 600;
    font-size: 14px;
}
.profile_detail_section span.profile_conn a {
    color: #0073b1 !important;
}
.profile_useful_links {
    padding: 10px;
}
.profile_useful_links ul.profile_btn_links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0px 0;
}
li.open_btn a {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    background: #0073b1;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
li.add_section_btn a {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    color: #0073b1 !important;
}
li.more_btn a.more_toggle_btn {
    border: 1px solid rgba(0,0,0,0.6);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0,0,0,0.6) !important;
}

.more_dropdown_menu {
    margin-top: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.more_dropdown_menu a.dropdown-item {
    color: rgba(0, 0, 0, 0.5) !important;
}
.more_dropdown_menu a.dropdown-item i {
    color: rgba(0, 0, 0, 0.6);
    margin-right: 15px;
}

.suggest_section {
    padding: 10px;
}

.suggest_section h3 {
    font-size: 15px;
    color: rgba(0, 0, 0, 1);
    padding-left: 0px;
    padding-bottom: 0px;
}
.suggest_section p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
}
.progress_sec .progress {
    height: 10px;
}
.progress_sec .progress .progress-bar {
    background-color: rgba(0,0,0,0.6);
}
.progress_text {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}
p.progress_intimate {
    margin-top: 10px;
    font-size: 14px;
}
p.progress_intimate a {
    color: #0073b1 !important;
    font-weight: bold;
}
.suggest_about_sec {
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 4px;
}
.suggest_about_sec_header {
    display: flex;
    align-items: start;
    gap: 15px;
    margin: 10px 0;
}
.suggest_abou_header_icon i {
    font-size: 30px;
}
.suggest_abou_header_university_sec h5 {
    font-size: 16px;
    color: rgba(0,0,0,0.6);
}
.suggest_abou_header_close_box span i {
    font-size: 16px;
}
.suggest_about_sec_btn a {
    border: 1px solid rgba(0,0,0,0.6);
    padding: 2px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0,0,0,0.6) !important;
}
.edit_sections {
    padding: 10px;
}
.edit_sections_header {
    display: flex;
    align-items: center;
    gap: 98px;
    margin: 10px 0;
    margin-bottom: 0px;
}
.edit_sections span.selected_content {
    font-size: 12px;
    color: rgba(0,0,0,0.7);
}
.edit_sections_header h4 {
    font-size: 16px;
}
.edit_sections_header a {
    color: rgba(0,0,0,0.8) !important;
}
.edit_sections hr {
    margin: 10px 0;
}
.activity-row {
    display: flex;
    align-items: center;
    gap: 0%;
    margin: 10px 0;
}
.activity-row div {
    width: 100%;
/*    display: block;*/
}
.activity-title p {
    color: #0073b1;
    font-size: 13px;
    font-weight: bold;
}
.activity-inks {
    text-align: right;
}
.activity-inks a.create_post {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    background: #fff;
    font-size: 16px;
    color: #0073b1 !important;
}
a.post_edit_btn {
    color: rgba(0,0,0,0.6) !important;
    padding: 10px;
    border-radius: 7px;
    text-align: center;
}
a.post_edit_btn:hover {
    background: #f3f6f8;
}
.allposts_links a {
    margin-right: 10px;
}
.allposts_links {
    margin-bottom: 30px;
}
a.posts_btn {
    background: #057642;
    border: 1px solid #057642;
    padding: 4px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
}
a.comments_btn {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.6);
    padding: 4px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    color: rgba(0,0,0,0.6) !important;
}
a.images_btn {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.6);
    padding: 4px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    color: rgba(0,0,0,0.6) !important;
}
.recent_post_sec a p {
    margin-bottom: 0px;
    padding: 10px 0;
}
.post_box {
    display: flex;
    align-items: start;
    gap: 0;
    margin: 0px 0;
}
.post_content_img {
    width: 90px;
    border-radius: 8px;
}
.post_content_img a img {
    border-radius: 8px;
}
.post_content {
    padding: 0px 10px;
    width: 100%;
}
.post_content a p {
    color: #000;
    font-size: 14px;
}
.post_links a {
    margin-right: 10px;
    color: #0073b1 !important;
    font-size: 15px;
    font-weight: bold;
}
p.reaction_section {
    margin-top: 15px;
}
p.reaction_section a span.reaction_btn {
    color: rgba(0,0,0,0.6);
    font-size: 13px;
}
p.reaction_section i {
    background: #0073b1;
    padding: 4px;
    font-size: 9px;
    border-radius: 50%;
    color: #fff;
    margin-right: 5px;
}
.experience_post_box {
    display: flex;
    align-items: start;
    gap: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.experience_content_img {
    width: 80px;
    border-radius: 4px;
}
.experience_content_img img {
    border-radius: 4px;
}
.company_profile_sec .experience_content_img {
    width: 60px;
    border-radius: 4px;
}
.company_profile_sec .experience_content {
    padding: 0px 10px;
    width: 64%;
}
.view_sec {
    width: auto !important;
}
.view_sec a {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.6);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    color: rgba(0,0,0,0.6) !important;
}

.experience_content {
    padding: 0px 10px;
    width: 100%;
}
.experience_content p {
    margin-bottom: 3px;
}
.skill_post_box {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.skill_post_box a {
    color: #000 !important;
    display: block;
    width: 100%;
    padding: 10px 0px;
}
.skill_post_box:last-child {
    border-bottom: none;
}
.interests_sec button.active {
    color: #057642 !important;
    border-bottom: 2px solid #057642 !important;
}
.interests_sec button {
    border: none !important;
    margin-bottom: 0px !important;
    color: rgba(0,0,0,0.6) !important;
}
.tab_content_sec .intersted_sec {
    display: flex;
    align-items: start;
    gap: 15px;
    margin: 10px 0;
}
.intersted_box_img {
    width: 60px;
    border-radius: 50%;
    height: 60px;
}
.intersted_box_img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intersted_box_details h3 {
    margin-bottom: 2px;
}
.intersted_box_details p {
    margin-bottom: 2px;
}
.intersted_box_details span {
    color: rgba(0,0,0,0.6);
    font-size: 12px;
}
.follow_btn {
    margin-top: 15px;
}
.follow_btn a {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.6);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    color: rgba(0,0,0,0.6) !important;
}
.follow_btn a i {
    color: rgba(0,0,0,0.6);
    margin-right: 10px;
}
.profile_stick_header {
    padding-top: 54px !important;
}
.header_profile_about_sec {
    display: flex;
    align-items: start;
    gap: 15px;
    margin: 10px 0;
}
.header_profile_about_sec .header_profile_img_box {
    width: 35px;
    border-radius: 50%;
    position: relative;
}
.header_profile_about_sec .header_profile_img_box img {
    width: 100%;
    border-radius: 50%;
}
.online_status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #057642;
    position: absolute;
    bottom: -2px;
    right: 6px;
    border: 1px solid #fff;
}
.header_profile_detals_box h3 {
    font-size: 12px;
    margin-bottom: 2px;
    padding-left: 0px;
    padding-bottom: 0px;
}
.header_profile_detals_box p {
    margin-bottom: 0px;
    font-size: 11px;
    color: rgba(0,0,0,0.8);
}
.header_profile_links_box {
    text-align: right;
    padding-top: 15px;
}
.header_profile_links_box a.header_profile_more_btn {
    border: 1px solid rgba(0,0,0,0.6);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0,0,0,0.6) !important;
}
.header_profile_links_box a.header_profile_prosec_btn {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    color: #0073b1 !important;
}
.header_profile_links_box a.header_profile_open_btn {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    background: #0073b1;
    font-size: 16px;
    font-weight: 400;
}
.header_profile_links_box a {
    margin: 0 5px;
}
/******** Sticky profile header ************/
/* GENERAL STYLES */
.profile_stick_header {
  position: relative;
  min-width: 100%;
  display: none;
}

/* STICKY HEADER STYLES */
@keyframes slidein {
  from {
    position: fixed;
    top: -50px;
    opacity: 0;
  }
  to {
    position: fixed;
    top: 0;
    opacity: 1;
  }
}
@keyframes slideout {
  from {
    position: fixed;
    top: 0;
    opacity: 1;
  }
  to {
    position: fixed;
    top: -50px;
    opacity: 0;
  }
}
.header.clone.initialized {
  -webkit-animation: slideout .3s forwards; /* for less modern browsers */
   animation: slideout .3s forwards;
}
body.sticky .profile_stick_header.clone {
  -webkit-animation: slidein .3s forwards; /* for less modern browsers */
   animation: slidein .3s forwards;
}
body.sticky .profile_stick_header{
    display: block;
}
/******* Sticky profile header  *********/
footer.footer_section {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f2f2f2;
}

.foot_sec ul {
    list-style: none;
    margin-bottom: 0px;
}
.foot_sec ul li {
    margin: 10px 0;
}
.foot_sec ul li a {
    color: rgba(0,0,0,0.6) !important;
    font-size: 12px;
}
.foot_sec ul li a:hover {
    color: #0073b1 !important;
    text-decoration: underline !important;
}
.foot_sec ul li span.sub_fot_text {
    color: rgba(0,0,0,0.6);
    padding-left: 21px;
    font-size: 12px;
}
li.important_links a {
    font-weight: bold;
}
.fotter_bottom {
    margin-top: 25px;
}
.fotter_bottom p {
    color: rgba(0,0,0,0.6) !important;
    font-size: 12px;
    padding-top: 40px;
}
.sel_language_box {
    float: right;
}
.sel_language_box label {
    color: rgba(0,0,0,0.6);
    font-size: 12px;
}
.sel_language_box select {
    display: block;
    margin-left: auto;
    border: 2px solid rgba(0,0,0,0.6);
    border-radius: 4px;
    padding: 3px 5px;
    color: rgba(0,0,0,0.6);
    font-size: 12px;
}
.edit_profile_box {
    position: absolute;
    right: 10px;
    top: 62px;
}
.edit_profile_box span {
    border-radius: 50%;
    display: block;
    text-align: center;
    padding: 2px 10px;
    cursor: pointer;
}
.edit_profile_box span i {
    color: rgba(0,0,0,0.6);
    font-size: 12px;
}
.viewed_sec .intersted_sec {
    display: flex;
    align-items: start;
    gap: 3px;
    margin: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 20px 0;
}
.viewed_sec .intersted_sec:last-child {
    border: none;
}
.viewed_sec .intersted_box_details h3 {
    font-size: 14px !important;
    color: #000 !important;
    padding-left: 0px;
    padding-bottom: 0px;
}
.viewed_sec .intersted_box_details span.hdline {
    color: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-top: 5px;
    font-size: 12px;
    width: 185px;
}
.viewed_sec .intersted_box_details .follow_btn a i {
    color: rgba(0,0,0,0.6);
    margin-right: 0px;
}
.viewed_sec .intersted_sec .intersted_box_img {
    border-radius: 50%;
/*    background: #f2f2f2;*/
    margin: 0 auto;
    padding: 6px;
    width: 100px;
    height: 77px;
}
.viewed_sec .intersted_sec .intersted_box_img img {
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
}
.intersted_box_details {
    width: 100%;
}
article.profile_main_sec .viewed_sec h3.reg_title {
    font-size: 16px;
}
/********** right side toggle *********/
    .sidebarcontainer {
      position: relative;
      overflow-x: hidden;
    }

    .sidebar {
        position: fixed;
        top: 52px;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        transition: right 0.3s;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 7px;
        bottom: 0;
        padding: 15px;
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
        z-index: 2;
    }

    .sidebar.open {
      right: 0;
    }

    .main-content {
      transition: margin-right 0.3s;
    }

    .fade-out {
        opacity: 0.5;
        pointer-events: none;
        z-index: 1;
        position: relative;
    }

/*    .navbar {
      display: block;
      height: 50px;
      background: green;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
    }*/

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: #f3f6f8;
    border: 1px solid #f3f6f8;
    padding: 4px 10px;
    border-radius: 50%;
}
.close-btn i {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
}
.sidebar h3{
    font-size: 17px;
}
.prod_links_sec {
    border: 1px solid rgba(0,0,0,0.4);
    border-radius: 10px;
    margin-top: 45px;
}
.prod_links_header {
    border-bottom: 1px solid rgba(0,0,0,0.4);
    padding: 10px;
}
.prod_links_header h3 {
    font-size: 15px;
}
.prod_links {
    padding: 20px 10px;
}
.prod_links a {
    display: inline-block;
    margin: 0 10px;
}
.prod_links a .prod_link_icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0,0,0,0.4);
    text-align: center;
    border-radius: 4px;
}
.prod_link_icon svg {
    padding-top: 10px;
}
.prod_link_content {
    width: 50px;
    height: 50px;
}
.prod_link_content span {
    color: rgba(0,0,0,0.4);
    font-size: 11px;
}
div#viewcovermodel .modal-content {
    background: #000;
}
div#viewcovermodel .modal-content .modal-header {
    border: none;
    padding: 0;
}
div#viewcovermodel .modal-content .modal-body {
    padding: 35px;
}
div#viewcovermodel .modal-content .modal-header button.close {
    padding: 0px;
    position: absolute;
    right: 32px;
    top: 18px;
    z-index: 1;
    opacity: 1;
}
div#viewcovermodel .modal-content .modal-header button.close span {
    color: #fff;
}
div#editprofilepicmodel .modal-content {
    background: #000;
}
div#editprofilepicmodel .modal-content .modal-header {
    border: none;
}
div#editprofilepicmodel .modal-content .modal-header h5 {
    color: #fff;
}
div#editprofilepicmodel .modal-content .modal-header button.close {
    color: #fff;
    opacity: 1;
}
div#editprofilepicmodel .modal-content .modal-body .model_profile_pic_box {
    border-radius: 50%;
    margin: 0 auto;
/*    width: 100px;*/
    text-align: center;
}
div#editprofilepicmodel .modal-content .modal-body .model_profile_pic_box img {
    border-radius: 50%;
}
div#editprofilepicmodel .modal-content .modal-body .pic_visi_setting a {
    padding: 5px 16px;
    border: 1px solid #fff;
    border-radius: 50px;
}
.editprofile-modal-footer {
    padding: 10px;
    border-top: 1px solid #ffffff57;
}
.model_profile_edit_links {
    display: flex;
}
.model_profile_edit_links a:hover {
    background: #ffffff3d;
}

.model_profile_edit_links a {
    text-align: center;
    padding: 10px;
    font-size: 13px;
    border-radius: 8px;
    margin: 0 10px;
}
.model_profile_delete_link {
    float: right;
    display: flex;
}
.model_profile_delete_link a:hover {
    background: #ffffff3d;
}

.model_profile_delete_link a {
    text-align: center;
    padding: 10px;
    font-size: 13px;
    border-radius: 8px;
    margin: 0 10px;
}
div#createpostModal .modal-content .modal-header a:hover {
    background: #f3f6f8;
}

div#createpostModal .modal-content .modal-header a {
    padding: 4px 8px;
    border-radius: 8px;
    width: auto;
}
div#createpostModal .modal-content .modal-header .post_profile_box {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 0px 0;
    width: 100%;
    /* justify-content: space-between; */
}
div#createpostModal .modal-content .modal-header .post_profile_box .post_profile_pic {
    border-radius: 50%;
    width: 20%;
}
div#createpostModal .modal-content .modal-header .post_profile_box .post_profile_pic img {
    border-radius: 50%;
}
div#createpostModal .modal-content .modal-header .post_profile_box .post_profile_detail {
    display: block;
    width: auto;
    text-align: left;
}
div#createpostModal .modal-content .modal-header .post_profile_box .post_profile_detail h5 {
    color: #000;
    text-align: left;
    font-size: 15px;
    margin-bottom: 0px;
}
div#createpostModal .modal-content .modal-header .post_profile_box .post_profile_detail span {
    color: rgba(0,0,0,0.6);
    font-size: 12px;
}
div#createpostModal .modal-content .modal-header .post_profile_box .drop_btn {
    width: auto !important;
}
div#createpostModal .modal-content .modal-header .post_profile_box .drop_btn i {
    color: rgba(0,0,0,0.6);
    font-size: 12px;
}
div#createpostModal .modal-content .modal-header button.close {
    margin-left: 0px;
}
div#createpostModal .modal-content .modal-body .post_text_area textarea:focus-visible {
    outline: none;
}

div#createpostModal .modal-content .modal-body .post_text_area textarea {
    width: 100%;
    border: none;
    height: 180px;
}
div#createpostModal .modal-content .modal-body .post_text_options .emoji_box {
    text-align: left;
}
div#createpostModal .modal-content .modal-body .post_text_options .emoji_box a:hover {
    background: #f2f2f2;
}

div#createpostModal .modal-content .modal-body .post_text_options .emoji_box a {
    padding: 2px 6px;
    border-radius: 50%;
}
div#createpostModal .modal-content .modal-body .post_text_options .emoji_box a i {
    color: rgba(0,0,0,0.6);
    font-size: 19px;
}
div#createpostModal .modal-content .modal-body .post_text_options .post_text_other_options {
    display: block;
    align-items: center;
    gap: 0px;
    margin: 10px 0;
    text-align: left;
}
div#createpostModal .modal-content .modal-body .post_text_options .post_text_other_options span.post_text_other_option_box:first-child {
    margin-left: 0;
}
div#createpostModal .modal-content .modal-body .post_text_options .post_text_other_options span.post_text_other_option_box {
    margin: 0px 0px;
    text-align: center;
    position: relative;
    width: 50px;
    display: inline-block;
    padding-top: 46px;
}
div#createpostModal .modal-content .modal-body .post_text_options .post_text_other_options a {
    background: #f2f2f2;
    padding: 10px 12px;
    border-radius: 50%;
}
div#createpostModal .modal-content .modal-body .post_text_options .post_text_other_options span.post_text_other_option_box span.hovr_box {
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(0,0,0,0.6);
    display: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 2px 10px;
    font-weight: bold;
    width: 100%;
    font-size: 11px;
}
div#createpostModal .modal-content .modal-body .post_text_options .post_text_other_options a i {
    color: rgba(0,0,0,0.6);
    font-size: 20px;
}
div#createpostModal .modal-content .modal-footer a {
    padding: 2px 6px;
    border-radius: 50%;
}
div#createpostModal .modal-content .modal-footer a:hover {
    background: #f2f2f2;
}
div#createpostModal .modal-content .modal-footer a i {
    color: rgba(0,0,0,0.6);
}
div#createpostModal .modal-content .modal-footer button.new_post_btn {
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    padding: 4px 15px;
    border-radius: 50px;
    color: rgba(0,0,0,0.6);
}
div#activityeditModal .modal-body {
    text-align: left;
}
div#activityeditModal .modal-body p {
    font-size: 14px;
}
div#activityeditModal .modal-body .custom-control.custom-radio {
    margin: 10px 0;
}
div#activityeditModal .modal-content .modal-footer button.new_post_btn {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    background: #0073b1;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
form.profile_form {
    padding: 10px;
}
form.profile_form h3 {
    font-size: 19px;
}
form.profile_form button {
    border-radius: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
a.add_position_btn {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    background: #0073b1;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    position: absolute;
    top: 37%;
    right: 25px;
    font-size: 15px;
}
.add_education_btn{
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    background: #0073b1;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    font-size: 15px;
}
.edit_contact_info a:hover {
    background: #0073b133;
}

.edit_contact_info a {
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    background: white;
    font-weight: 400;
    color: #0073b1 !important;
    font-size: 15px;
    font-weight: bold;
}

.suggest_box {
    padding: 10px;
    background: #f9fafb;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0.8rem;
    margin-bottom: 30px;
}
.all_suggestions {
    margin-top: 30px;
}
.all_suggestions span.suggestion_badge {
    color: rgba(0,0,0,0.6);
    border: 1px solid rgba(0,0,0,0.6);
    padding: 6px 22px;
    border-radius: 50px;
    margin: 7px 10px;
    display: inline-flex;
    text-align: center;
/*    cursor: pointer*/
}
.all_suggestions span.suggestion_badge i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 9px;
}
.summery_box label {
/*    font-size: 12px;
    color: rgba(0,0,0,0.6);*/
}
.summery_box textarea {
    height: 150px !important;
    text-align: left;
}
p.about_text {
    font-size: 16px;
}
.all_lists ul {
    list-style: none;
}
.all_lists ul li {
    margin: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.6);
    padding: 20px 0;
}
.all_lists ul li:last-child {
    border-bottom: none;
}
.all_lists ul li a {
    color: rgba(0,0,0,0.6) !important;
}
.all_lists ul li a .list_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.skill_name h4 {
    font-size: 17px;
}
.skill_edit span {
    cursor: pointer;
    border-radius: 50%;
    background: #f2f2f2;
    padding: 7px 10px;
    text-align: center;
}
.skill_edit span i {
    font-size: 12px;
}

.activity-post_box {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    margin-bottom: 8px;
}
.activity-post_box div#post-author {
    display: flex;
    padding: 14px 14px 0;
}
.activity-post_box div#post-author a {
    flex: 1;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6) !important;
}
.activity-post_box div#post-author a div {
    display: flex;
}
.activity-post_box div#post-author a div img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid transparent;
    margin-right: 6px;
}
.activity-post_box div#post-author a div > div {
    display: flex;
    flex-direction: column;
    margin-top: 1px;
}
.activity-post_box div#post-author a div > div div strong#post-author-name {
    color: #000;
    font-size: 15px;
}
.activity-post_box div#post-author a div > div span {
    line-height: 10px;
    margin-top: 4px;
    margin-left: 1px;
}
.activity-post_box div#post-author a div > div span span {
    font-size: 14px;
    font-weight: bold;
}
.activity-post_box div#post-author > div {
    cursor: pointer;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.activity-post_box div#post-author > div:hover {
    background: #f3f6f8;
}
.activity-post_box div#post-author > div > span {
    padding: 2px;
    font-size: 4px;
}
.activity-post_box div#post-data p {
    padding: 8px 14px 0;
    font-size: 1rem;
}
.activity-post_box div#post-data p span {
    color: #0073b1;
    font-weight: bold;
    cursor: pointer;
}
.activity-post_box div#post-data p#post-translation {
    padding-left: 7px;
}
.activity-post_box div#post-data p#post-translation button:hover {
    background-color: #e8f7ff;
}

.activity-post_box div#post-data p#post-translation button {
    border: 0;
    background: #fff;
    color: #0073b1;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 4px 7px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.activity-post_box div#post-data img {
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #e6e9ec;
    border-top: 1px solid #e6e9ec;
}
.activity-post_box div#interactions-amount {
    margin: 7px 16px;
    border-bottom: 1px solid #e6e9ec;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    width: auto;
}
.activity-post_box div#interactions-amount span#like-icon {
    background: #0092e0;
}

.activity-post_box div#interactions-amount span.fas {
    font-size: 8px;
    padding: 3px;
    margin-right: 3px;
    border-radius: 50%;
    color: #f3f6f8;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3), 1px -1px 0 rgba(0, 0, 0, 0.3), -1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.activity-post_box div#interactions-amount span#heart-icon {
    background: #f67373;
}
.activity-post_box div#interactions-amount span#amount-info {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-left: 3px;
    cursor: pointer;
}
.activity-post_box div#interactions-amount span#amount-info span {
    font-size: 14px;
    font-weight: bold;
}
.activity-post_box div#post-interactions div#interactions-btns {
    margin: 4px 10px;
    display: flex;
}
.activity-post_box div#post-interactions div#interactions-btns button {
    border: 0;
    background: #fff;
    color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    font-size: 14px;
    padding: 2px 5px;
    height: 30px;
    margin-right: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.activity-post_box div#post-interactions div#interactions-btns button span.far.fa-thumbs-up {
    margin-bottom: 4px;
}
.activity-post_box div#post-interactions div#interactions-btns button span.far {
    font-size: 20px;
    margin-right: 5px;
}
article.profile_small_sec {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}
article.profile_small_sec .cover_pic {
    height: 40px;
}
article.profile_small_sec .cover_pic img {
    height: 100%;
    width: 100%;
}
article.profile_small_sec .profile_small_pic_box {
    border-radius: 50%;
    padding: 3px;
    background: #fff;
    width: 70px;
    margin: 0 auto;
    margin-top: -27px;
}
article.profile_small_sec .profile_small_pic_box img {
    border-radius: 50%;
}
article.profile_small_sec .profile_small_detail_section {
    text-align: center;
}
article.profile_small_sec .profile_small_detail_section h3.profile_small_name_details {
    font-size: 12px;
    padding: 0 15px;
}
article.profile_small_sec .profile_small_detail_section p.profile_small_skills {
    font-size: 12px;
    padding: 0 15px;
    color: rgba(0,0,0,0.6);
}
article.profile_small_sec .follow_box {
    border-top: 1px solid rgba(0,0,0,0.3);
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 8px 8px;
}
article.profile_small_sec .follow_box span {
    font-size: 12px;
    color: rgba(0,0,0,0.6);
}
article.profile_small_sec .follow_box span.count_follow {
    color: #0073b1;
    font-weight: bold;
}

.job_details_section {
    padding: 10px;
}
.job_heading_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.job_detail_links a {
    color: rgba(0,0,0,0.6) !important;
    margin-right: 20px;
}
.job_detail_links .notify_dropdown button.notify_dropbtn {
    background: none;
    border: none;
    display: block;
    font-size: 17px;
    padding: 5px 10px;
}
.job_details_section p {
    font-size: 15px;
    color: rgba(0,0,0,0.6);
}
.job_type_details_sec ul {
    list-style: none;
}
.job_type_details_sec ul li {
    color: rgba(0,0,0,0.8);
    margin: 10px 0;
}
.job_type_details_sec ul li i {
    color: rgba(0,0,0,0.6);
    margin-right: 10px;
}
.job_type_details_sec ul li a {
    color: rgba(0,0,0,0.8) !important;
    text-decoration: underline !important;
}
.job_todo_butn_sec {
    margin: 30px 0;
}
.job_todo_butn_sec a.apply_btn {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    background: #0073b1;
    font-size: 16px;
    font-weight: 400;
    margin-right: 10px;
    color: #fff;
}
a.save_btn {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    color: #0073b1 !important;
}
.job_detail_text h3 {
    font-size: 15px;
}
.job_details_section p {
    font-size: 15px;
    color: rgba(0,0,0,0.6);
}
.other_details h5 {
    font-size: 13px;
}
.other_details ul {
    padding-left: 18px;
}
.other_details ul li {
    margin: 8px 0;
}
.about_job_company {
    border: 1px solid rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 10px;
}
.about_job_company h3 {
    font-size: 17px;
}
.about_company_branding_row {
    display: flex;
    align-items: center;
}
.about_company_branding_row .job_profile_box {
    display: flex;
    align-items: center;
    width: 250px;
}
.about_company_branding_row .job_profile_box .job_profile_details {
    margin-left: 10px;
}
.about_company_branding_row .job_profile_box .job_profile_details h3 {
    margin-bottom: 0px;
}

.about_job_company h3 {
    font-size: 17px;
}
.about_company_branding_row .job_btn_box {
    display: block !important;
}
.about_company_branding_row .job_btn_box a.like {
    padding: 1px 8px;
    color: #0073b1 !important;
    border: 1px solid #0073b1;
    display: inline-block;
    border-radius: 50px;
    margin-left: 10px;
    margin-bottom: 10px;
}
.job_company_strength {
    margin-top: 20px;
}
.job_company_strength ul {
    display: flex;
    list-style: none;
}
.job_company_strength ul li {
    margin-right: 10px;
}
.job_company_strength ul li::after {
    content: '.';
    font-size: 13px;
}
.job_show_more_sec {
    border-top: 1px solid rgba(0,0,0,0.5);
}
.job_show_more_sec a {
    padding: 10px;
    width: 100% !important;
    display: block;
    color: #0073b1 !important;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}
.related_jobs_sec .job_profile_box {
    width: 50px;
}
.related_jobs_sec ul li .job_profile_details h3 {
    margin-bottom: 0px;
}
.related_jobs_sec ul li .job_profile_details span.job_time {
    margin-top: 0px;
}
.related_jobs_sec ul li {
    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding: 10px 0;
}
.related_jobs_sec ul li:last-child {
    border-bottom: none;
}
.notify_dropdown .notify_show a {
    margin-right: 0px;
}
.post_job_page_heading_sec {
    padding: 15px;
}
.post_job_page_sec h3 {
    margin-bottom: 25px;
}
.post_job_page_sec p {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
}
.post_job_page_instruction {
    margin-top: 50px;
}
.post_job_page_instruction article {
    padding: 30px;
    border-radius: 8px;
}
.post_job_page_instruction article h3 {
    font-size: 19px;
    margin-bottom: 20px;
}
.post_job_page_box {
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 10px 30px;
    text-align: center;
}
.post_job_page_box img {
    width: 50%;
}
.post_job_page_instruction article h3 {
    font-size: 19px;
    margin-bottom: 20px;
}
.post_job_page_box p {
    font-size: 12px;
    color: rgba(0,0,0,0.6);
}
.post_job_sec {
    background: #38434f;
    padding: 100px 0;
}
.package_main_sec {
    padding: 20px 10px;
}
.package_main_sec p {
    font-size: 13px;
}
.package_main_sec h3 {
    font-size: 15px;
}
.package_sec {
    border: 1px solid #0073b1;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}
.package_header_row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 20px;
}
.package_header h4 {
    font-size: 15px;
}
.package_header h5 {
    font-size: 15px;
}
.package_header a.price_edit_btn {
    color: #0073b1 !important;
    margin-left: 10px;
}
.package_text span {
    color: rgba(0,0,0,0.6);
}
.package_facility_sec h5 {
    font-size: 15px;
}
.package_facility_sec ul {
    list-style: none;
    margin: 20px 0px;
}
.package_facility_sec ul li {
    margin: 10px 0;
    font-size: 13px;
}
.package_facility_sec ul li i {
    color: #0073b1;
    margin-right: 8px;
}
a.parmote_btn {
    padding: 1px 8px;
    border: 1px solid #0073b1;
    display: inline-block;
    border-radius: 50px;
    margin-left: 10px;
    margin-bottom: 10px;
    background: #0073b1;
}
  .input-group {
    position: relative;
  }

  .input-group-text {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
  }

  /* Adjust the icon size as needed */
  .input-group-text i {
    font-size: 1rem;
  }
  .login_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header#login-main-header {
    padding: 10px 0;
}
.login_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo_img_box {
    width: 83px;
}
.login_page_links_sec ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
}

.login_page_links_sec ul li {
    margin: 0 10px;
}
.login_page_links_sec ul li a.jobs_btn {
    color: rgba(0, 0, 0, 0.75) !important;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    font-weight: 500;
}
.login_page_links_sec ul li a.jobs_btn:hover {
    background: #f2f2f2;
}
.login_page_links_sec ul li a.signin_btn {
    padding: 10px 20px;
    color: #0073b1 !important;
    border: 1px solid #0073b1;
    display: inline-block;
    border-radius: 50px;
}
.login_sec {
    padding: 100px 0;
}
.login_form_box p {
    color: #8f5849;
    font-size: 42px;
    font-weight: 200;
}
form.needs-validation.login_form input {
    border-color: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 16px;
}
form.needs-validation.login_form span#show-hide-toggle {
    background: transparent;
    border: none;
}
form.needs-validation.login_form span#show-hide-toggle2 {
    background: transparent;
    border: none;
}
form.needs-validation.login_form a.forgot_btn_link {
    color: #0073b1 !important;
    font-weight: 500;
}
form.needs-validation.login_form button.btn.btn-primary {
    width: 100%;
    border-radius: 50px;
    padding: 13px 0;
    font-size: 20px;
    background: #0073b1;
    border: 1px solid #0073b1;
}
form.needs-validation.login_form a.register_btn {
    width: 100%;
    border-radius: 50px;
    padding: 13px 0;
    font-size: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.6);
    display: block;
    text-align: center;
    color: rgba(0,0,0,0.6) !important;
}
form.needs-validation.login_form a.forgot_btn_link:hover {
    text-decoration: underline !important;
}
.register_sec {
    background: #f2f2f2;
}
.register_sec article.profile_main_sec {
    padding: 20px;
}
form.needs-validation.register_form input {
    border-color: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.75);
}
form.needs-validation.register_form select.form-control {
    border-color: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    padding-left: 16px;
    padding-right: 16px;
    /* padding-top: 25px; */
    /* padding-bottom: 25px; */
    font-size: 16px;
    color: rgba(0, 0, 0, 0.75);
    height: 52px;
}
form.needs-validation.register_form span#show-hide-toggle {
    background: #fff;
    border: none;
}
form.needs-validation.register_form span#show-hide-toggle2 {
    background: #fff;
    border: none;
}
form.needs-validation.register_form a.forgot_btn_link {
    color: #0073b1 !important;
    font-weight: 500;
}
form.needs-validation.register_form button.btn.btn-primary {
    width: 100%;
    border-radius: 50px;
    padding: 13px 0;
    font-size: 20px;
    background: #0073b1;
    border: 1px solid #0073b1;
}
.register_form_box p {
    font-size: 20px;
    font-weight: 300;
}
form.needs-validation.register_form {
    margin-top: 30px;
}
.loginlink p {
    text-align: center;
}
.loginlink p a.forgot_btn_link {
    color: #0073b1 !important;
}
.innercustomcontainer {
    display: none;
}

a.nav-link.jobs_btn {
    color: rgba(0, 0, 0, 0.75) !important;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    font-weight: 500;
}
a.nav-link.jobs_btn:hover {
    background: #f2f2f2;
}
header#login-main-header nav li.nav-item {
    margin: 0 10px;
}
a.nav-link.signin_btn {
    padding: 10px 20px !important;
    color: #0073b1 !important;
    border: 1px solid #0073b1;
    display: inline-block;
    border-radius: 50px;
}
.notify_page {
    padding: 10px;
}

span.job_view_back {
    display: none;
}
/********* mobile **********/
@media screen and (max-width: 767px) {
    
    div#chat_area div#header .user_detail_box h5 {
        padding-left: 0px;
        padding-bottom: 0px;
        padding-top: 0px;
        margin-bottom: 0px;
    }
    div#chat_area div#header .user_detail_box p {
        margin-bottom: 0px;
    }
    
    div#createpost .modal-content .modal-header .post_profile_box .post_profile_pic {
        width: 24% !important;
    }
	#picloadingIndicator.spinner{
		display: inline-block;
        position: relative;
        top: 15px;
	}
    #loadingIndicator.spinner {
        display: inline-block;
        position: relative;
        top: 15px;
    }
    
    main#main-section div#feed-sort button span {
        font-size: 10px;
    }
    form.seachjob_form button {
        padding: 9px 5px;
        font-size: 12px;
    }
    span.file_msg {
        display: block !important;
    }
    li.rightmsg .msg_text {
        padding-right: 5px !important;
    }
    .job_details_inner_section {
        padding-left: 5px;
        padding-right: 5px;
    }
    span.job_view_back {
        display: block;
    }
    .relate_jobs {
        display: none;
    }
    
    article.profile_small_sec {
        margin-bottom: 15px;
    }
    
    .header_profile_detals_box h3 {
        padding-bottom: 0px;
        padding-left: 0px;
    }
    a.editpic_link {
        bottom: -3px !important;
        right: 3px !important;
    }
    
    .profile_pic_box {
        width: 85px;
        margin-top: -14px;
    }
    .comp_header_detail_sec {
        display: block !important;
    }
    .comp_header_detail_sec .profile_detail_section h3 {
        font-size: 17px;
    }
    
    div#createpost button.close {
        display: block !important;
    }
    
    div#createpost .modal-content .modal-body .post_text_options .post_text_other_options span.post_text_other_option_box {
        padding-top: 17px !important;
    }

    .postmodel .postimgpicker input#postpicinput {
        width: 100%;
    }
    .postmodel .modal-footer {
        display: block;
    } 
    .postmodel .modal-footer button {
        display: inline-block !important;
        margin-top: 10px;
    }
    .jobview_profile_img {
        width: 29% !important;
    }
    .job_profile_details {
        width: 80%;
    }
    .job_profile_details h3 {
        font-size: 13px;
    }
    .profile_detail_section span.profile_conn {
        font-size: 11px;
        /* cursor: pointer; */
    }
    .steps_box ul li .step_box span.step_box_detail {
        font-size: 12px;
    }
    .post_content_img {
        width: 70px;
    }
    .post_content {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .suggest_section h3 {
        font-size: 12px !important;
    }
    a.count_btn {
        font-size: 10px !important;
    }
    .job_icon a i {
        font-size: 28px !important;
    }
    .experience_content_img {
        width: 45px !important;
    }
    .intitute_sec i {
        font-size: 44px !important;
    }

    .compy_sec .experience_post_box.company_profile_sec {
        display: block;
        padding-bottom: 12px;
    }
    .compy_sec .experience_post_box.company_profile_sec .experience_content {
        margin: 10px 0;
        padding-left: 0px;
    }
    .compy_sec .experience_post_box.company_profile_sec .experience_content_img.intitute_sec {
        width: 35% !important;
    }
    button#addjobskill {
        margin-top: 10px;
    }

    .about_job_company h3 {
        font-size: 13px;
    }
    ul.dektlist {
        display: none;
    }
    ul.moblist {
        display: block;
    }
    .dektmsgsec {
        display: none;
    }
    .mobmsgsec {
        display: none;
    }
    .mobbackbtn{
        display: none;
    }
    .mobmsgsec .chat_scroll_sec {
        position: relative;
        height: 88vh;
    }
    .msg_text p {
        font-size: 12px;
    }
    span.del_msg {
        top: auto !important;
        bottom: 0;
        padding: 3px 6px;
    }
    button.del_msg {
        top: auto !important;
        bottom: 0;
        padding: 3px 6px;
    }
    .user_msg_time span {
        font-size: 10px;
    }
    div#chat_area div#header {
        margin-bottom: 0px;
    }
    div#chat_message_area ul.user_mssage_list li .user_msg_detail a.user_msg_img {
        width: 20% !important;
    }
/*    .mobmsgsec {
        display: block !important;
    }*/
    .dktusermayknow{
        display: none !important;
    }
    div#user_list {
        height: 100% !important;
    }
    .login_sec {
        padding: 25px 0;
    }
    header#login-main-header nav li.nav-item {
    margin: 10px 0px;
}
.login_form_box p {
    font-size: 30px;
}
form.needs-validation.login_form span#show-hide-toggle {
    background: transparent;
}
form.needs-validation.login_form span#show-hide-toggle2 {
    background: transparent;
}
form.needs-validation.login_form button.btn.btn-primary {
    font-size: 15px;
}
form.needs-validation.login_form a.register_btn {
    font-size: 15px;
}
.login_img {
    margin-top: 40px;
}
footer.footer_section {
    margin-top: 0px;
    margin-bottom: 0px;
}
.sel_language_box {
    float: left;
}
.fotter_bottom p {
    padding-top: 10px;
    margin-bottom: 0px;
    margin-top: 1.9rem;
}
form.needs-validation.register_form span#show-hide-toggle {
    background: transparent;
}
form.needs-validation.register_form span#show-hide-toggle2 {
    background: transparent;
}
.register_form_box p {
    font-size: 15px;
}
.customcontainer > div#main-wrapper {
    margin-bottom: 15px;
    padding: 10px;
}
.all_network_profile_footer a {
    padding: 5px 8px;
    font-size: 11px;
}
.inivtation_box ul li {
    display: block;
    margin: 15px 0;
}
.inivtation_box ul {
    padding: 10px 0;
}
.inivtation_profile_details h3 {
    margin-bottom: 3px;
}
inivtation_profile_details p {
    font-size: 13px;
    margin-bottom: 0px;
}

.profile_useful_links ul.profile_btn_links {
    display: block;
}
.profile_useful_links ul.profile_btn_links li {
    margin: 22px 0px;
}
.interests_sec button {
    font-size: 12px;
}
.follow_btn a {
    padding: 6px 10px;
    font-size: 12px;
}
.tab_content_sec .intersted_sec {
    display: block;
}
.allposts_links {
    line-height: 2.5;
}
form.profile_form h3 {
    font-size: 14px;
}
.all_suggestions span.suggestion_badge {
    font-size: 12px;
}
a.add_position_btn {
    position: relative;
    top: 0;
    right: 0;
    font-size: 15px;
    width: auto;
}
.close_btn {
    width: 15px;
    height: 15px;
    font-size: 12px;
    right: 9px;
    top: 5px;
}
.close_btn i {
    font-size: 10px;
}
.profileimg_box {
    width: 54px;
}
.all_network_profile_about_box h5 {
    font-size: 13px;
}
.all_network_profile_about_box p {
    font-size: 10px;
    margin-bottom: 0px;
}
.conn_box {
    padding: 10px;
    padding-top: 0px;
}
.conn_box span {
    font-size: 11px;
}
main#main-section article div#post-author {
    align-items: center;
}
main#main-section article div#post-author a h3 {
    font-size: 12px;
}
.job_profile_box {
    width: 59px;
}
.form-group label {
    font-size: 12px;
}
.modal-header h5 {
    font-size: 13px !important;
    padding-left: 0px;
    padding-bottom: 0px;
}
.activity-inks {
    line-height: 2;
}
.header_profile_links_box {
    text-align: left;
    padding-top: 15px;
    padding-bottom: 15px;
}
.header_profile_links_box a.header_profile_more_btn {
    padding: 5px 11px;
    font-size: 12px;
}
.header_profile_links_box a.header_profile_prosec_btn {
    padding: 5px 11px;
    font-size: 12px;
}
.header_profile_links_box a.header_profile_open_btn {
    padding: 5px 11px;
    font-size: 12px;
}
.mobileheader_links ul {
    list-style: none;
}
.mobileheader_links ul li {
    margin: 15px 0px;
}
.mobileheader_links ul li a {
    color: #000 !important;
}
div#mobilenavsidebar {
    display: block !important;
}
.post_job_page_box {
    margin: 20px 0;
}
.post_job_page_instruction article h3 {
    font-size: 15px;
}
.post_job_page_sec h3 {
    font-size: 15px;
}
/*.edit_sections_header {
    gap: 15px;
}*/
.viewed_sec .intersted_sec .intersted_box_img {
    width: 50px;
    height: auto;
    margin-right: 15px !important;
    margin: 0px 0px;
}
.viewed_sec .intersted_box_details span {
    width: 100%;
}
.notify_profile_details p {
    width: 100%;
}
.notify-dropdown-content {
    right: 0;
    min-width: 150px;
}
.notify_dropdown .notify_show a {
    font-size: 12px;
    padding: 7px;
}
.job_heading h3 {
    font-size: 13px;
}
.notify_dropdown {
    margin-top: 0px;
}
.job_type_details_sec ul li {
    font-size: 12px;
}
.about_company_branding_row {
    display: block;
}
.about_company_branding_row .job_btn_box a.like {
    padding: 1px 14px;
    margin-bottom: 10px;
    font-size: 14px;
    margin-left: 0px;
}
.about_company_branding_row .job_profile_box {
    width: 100%;
    margin-bottom: 10px;
}
    .register_form_box h3 {
        font-size: 15px;
    }
    .register_form_box p {
        font-size: 13px;
    }
    form.needs-validation.register_form button.btn.btn-primary {
        font-size: 14px;
        padding: 9px 0;
    }
    .profile_box {
        width: 57px;
        margin-bottom: 9px;
    }
    
    .inivtation_profile_details p {
        margin-bottom: 2px;
    }
}
/************ Tab Device **************/
@media screen and (min-width: 768px) and (max-width: 1199px) {
    
    ul.dektlist {
    display: block;
    }
    ul.moblist {
        display: none;
    }
    .dektmsgsec {
        display: block;
    }
    .mobmsgsec {
        display: none;
    }
    .mobbackbtn{
        display: none;
    }
    
    .edit_sections_header {
        gap: 15px;
    }
    .edit_sections_header h4 {
        font-size: 11px;
    }

    .edit_sections span.selected_content {
        font-size: 11px;
    }
    .header_profile_links_box a.header_profile_more_btn {
        padding: 5px 11px;
        font-size: 12px;
    }
    .header_profile_links_box a.header_profile_prosec_btn{
        padding: 5px 11px;
        font-size: 12px;
    }
    .header_profile_links_box a.header_profile_open_btn{
        padding: 5px 11px;
        font-size: 12px;
    }
    .viewed_sec .intersted_sec .intersted_box_img {
        width: 100px;
        height: auto;
    }
    .viewed_sec .intersted_box_details span {
        width: 100%;
    }
    .follow_btn a {
        padding: 3px 11px;
        font-size: 12px;
    }
    .intersted_box_img {
        width: 50px;
        height: 50px;
    }
    .suggest_abou_header_university_sec h5 {
        font-size: 14px;
    }
    .nav-tabs .nav-link {
        font-size: 13px;
    }
    article.profile_main_sec .viewed_sec h3.reg_title {
        font-size: 12px;
    }
    a.add_position_btn {
        padding: 8px 9px;
        font-size: 12px;
    }
    .all_suggestions span.suggestion_badge {
        font-size: 12px;
    }
    .login_form_box p {
        font-size: 25px;
    }
    form.needs-validation.login_form button.btn.btn-primary {
        font-size: 13px;
    }
    form.needs-validation.login_form a.register_btn {
        font-size: 13px;
    }
    .profile_box {
        width: 100px;
    }
    .close_btn {
        width: 15px;
        height: 15px;
        font-size: 9px;
        right: 8px;
        top: 8px;
    }
    .profileimg_box {
        width: 65px;
    }
    .all_network_profile_about_box h5 {
        font-size: 14px;
    }
    .all_network_profile_about_box p {
        font-size: 12px;
    }
    .conn_box span {
        font-size: 11px;
    }
    .all_network_profile_footer a {
        padding: 5px 10px;
        font-size: 12px;
    }
    .register_form_box h3 {
        font-size: 15px;
    }
    .register_form_box p {
        font-size: 13px;
    }
    form.needs-validation.register_form button.btn.btn-primary {
        font-size: 14px;
        padding: 9px 0;
    }
}

@media only screen and (max-width: 767px) {
    .postwall_slider .carousel-inner .carousel-item {
        padding: 0px 0px !important;
    }
    div#user_list ul.dektlist {
        display: none !important;
    }
    div#user_list ul.moblist {
        display: block;
    }
    /* .mobbackbtn {
        display: none;
    } */
    div.dektmsgsec {
        display: none !important;
    }

}

@media only screen and (min-width: 1366px) {
    div#user_list ul.dektlist {
        display: block;
    }
    div#user_list ul.moblist {
        display: none;
    }
    .mobbackbtn {
        display: none;
    }
    div.dektmsgsec {
        display: block;
    }
    div.mobmsgsec {
        display: none;
    }

}




.emojisec {
    margin-top: 5px;
}

/******** mobilesidbar **********/

    .mobilesidebar {
      position: fixed;
      top: 50px; /* Adjust the top position to match the height of your navbar */
      left: -300px;
      width: 300px;
      height: 100vh;
      background-color: #fff;
      transition: right 0.3s;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 7px;
      bottom: 0;
      padding: 15px;
      box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
      z-index: 1050;
    }

    .mobilesidebar.open {
      left: 0;
    }
    .mobile-fade-out{
            opacity: 1;
        pointer-events: none;
    }
    .main-content.mobile-fade-out {
    transition: all 1s ease-in-out;;
}
div#mobilenavsidebar {
    display: none;
}

.select2-container{
    width: 100% !important;
}
.select2-container span.select2-selection.select2-selection--single {
    height: 40px;
}

.select2-container span.select2-selection.select2-selection--single span.select2-selection__arrow {
    height: 100%;
}
.select2-container span.select2-selection.select2-selection--single span#select2-addskills-container {
    line-height: 38px;
}
.all_suggestions form {
    width: auto;
    display: inline-block;
}
a.editpic_link {
    position: absolute;
    bottom: 5px;
    right: 24px;
}
.editpic_sec span {
    padding: 4px 9px;
    background: #0073b1;
    border-radius: 50px;
}
.editpic_sec span i {
    color: #fff;
    font-size: 12px;
}
.profilepic {
    margin-bottom: 20px;
}
.profilepic .model_profile_pic_box {
    width: 25%;
    border-radius: 50%;
    position: relative;
}
.profilepic .model_profile_pic_box img {
    border-radius: 50%;
    object-fit: cover;
}
.profilepic .model_profile_coverc_box {
    border-radius: 10px;
    position: relative;
}
.profilepic .model_profile_coverc_box a.editpic_link {
    bottom: -8px;
    right: 7px;
}
.all_lists {
    margin-top: 30px;
}
.intitute_sec {
    margin-right: 10px;
}
.intitute_sec i {
    font-size: 63px;
    color: rgba(0, 0, 0, 0.6);
}
.compnay_page a {
    color: #212529 !important;
    text-decoration: underline !important;
}
.compnay_page a i {
    margin-left: 9px;
    font-size: 14px;
}
.select2-container span.select2-selection.select2-selection--single span#select2-addcompany-container {
    line-height: 38px;
}
.jobview_profile_img {
    width: 50%;
}
.job_icon a i {
    color: rgba(0, 0, 0, 0.6);
    font-size: 45px;
}
article.company_share_box div#share-box {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    margin-top: 1px;
    display: flex;
    flex-direction: column;
}
article.company_share_box div#share-box div#button-box {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
article.company_share_box div#share-box div#button-box button#btn-post {
    width: 100%;
    text-align: left;
    padding: 26px 17px;
}

article.company_share_box div#share-box div#button-box button {
    background: #fff;
    border: 0;
    color: #696c6f;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    padding: 26px 26.5px;
    cursor: pointer;
}
article.company_share_box div#share-box div#button-box .fas {
    font-size: 18px;
}
article.company_share_box div#share-box div#button-box button#btn-post span#btn-text {
    font-size: 16px;
    font-weight: bold;
    padding-left: 6px;
}
article.company_share_box div#link-box {
    padding: 13px 16px;
    background: #f3f6f8;
    font-size: 14px;
}
article.company_share_box div#link-box a {
    color: #0073b1 !important;
    font-weight: bold;
    padding-right: 1px;
}
.comp_cover_pic a.editpic_link {
    top: 10px;
    right: 7px;
}
.comp_cover_pic {
    position: relative;
}
.comp_logo_pic {
    width: 80px;
    border-radius: 50%;
    margin-top: -17px;
    position: relative;
    z-index: 2;
    margin-left: 10px;
    background: #fff;
    padding: 2px;
    border: 1px solid #fff;
}
.comp_logo_pic img {
    border-radius: 50%;
    object-fit: cover;
}
.comp_logo_pic a.editpic_link {
    right: -13px;
}
.comp_edit_sections h4 {
    padding: 0px 5px;
    font-size: 17px;
}
.comp_edit_sections span.selected_content {
    padding: 0px 5px;
    font-size: 13px;
    display: block;
    padding-bottom: 15px !important;
}
.edit_sections.viewed_sec a.view_ink {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.6);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    color: rgba(0,0,0,0.6) !important;
}
.edit_sections.viewed_sec ul {
    list-style: none;
    margin-top: 25px;
}
.edit_sections.viewed_sec ul li {
    margin-bottom: 10px;
}
.edit_sections.viewed_sec ul li a {
    padding: 5px 5px;
    color: rgba(0,0,0,0.6) !important;
    display: block;
    border-radius: 4px;
}
.edit_sections.viewed_sec ul li a:hover {
    background: #f2f2f2;
}

.edit_sections.comp_text .edit_sections_header {
    margin-bottom: 5px;
    display: block;
}
.edit_sections.comp_text h5 {
    font-size: 13px;
}
.all_network_profile_about_box h5 {
    font-size: 13px;
}
aside#left-aside div#profile-groups section ul li a {
    padding-left: 0px;
}
a.conn_btn {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    color: #0073b1 !important;
}
.conn_prof_img {
    border-radius: 50%;
    border: 1px solid #b3b3b3;
}
.conn_prof_img img {
    border-radius: 50%;
}
main.network_pg .customcontainer {
/*    grid-template-columns: 216px 1fr 106px;*/
}
main.network_pg div.customcontainer main#main-section {
    width: 100%;
}
.experience_content_img.job_icon {
    width: 60px !important;
}
a.count_btn:hover {
    text-decoration: underline !important;
}

a.count_btn {
    color: rgba(0,0,0,0.6) !important;
    font-size: 12px;
    margin-top: 12px !important;
    display: block;
}
.w-20{
    width: 20% !important;
}
ul.all_users {
    list-style: none;

}
ul.all_users li {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 5px;
    cursor: pointer;
    position: relative;
}
ul.all_users li .job_profile_box {
    border-radius: 50%;
    width: 50px;
}
ul.all_users li .job_profile_box img {
    border-radius: 50%;
}
ul.all_users li .job_profile_details h5 {
/*    color: rgba(0, 0, 0, 0.6);*/
    font-size: 13px !important;
}
.chat_users {
    max-height: 89vh;
    overflow-y: scroll;
    padding-right: 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 10px;
}
div#user_list {
    height: 100vh;
}



div#chat_area div#header .user_img_box {
    width: 50%;
    border-radius: 50%;
}
div#chat_area div#header .user_img_box img {
    border-radius: 50%;
}

div#chat_area div#header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    width: 100%;
    height: 12%;
    justify-content: start;
    border: 2px solid white;
    position: relative;
}
.custom_border {
    width: 97%;
    display: block;
    height: 1px;
    border-top: 1px solid rgba(0,0,0,.1);
    margin-bottom: 15px !important;
    margin-right: auto;
}
div#chat_area div#header .user_img_box {
    width: 11%;
    border-radius: 50%;
}
div#chat_area div#header .user_img_box img {
    border-radius: 50%;
}
div#chat_area div#header .user_detail_box h5 {
    font-size: 13px;
}
div#chat_area div#header .user_detail_box h5 span {
    color: rgba(0,0,0,.5);
}
div#chat_area div#header .user_detail_box p {
    color: rgba(0,0,0,.6);
    font-size: 12px;
}
div#chat_message_area ul.user_mssage_list {
    list-style: none;
}
div#chat_message_area ul.user_mssage_list li {
    margin: 15px 8px;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    padding: 0 5px;
    border-radius: 23px;
    background: #f2f2f2;
    position: relative;
}
span.del_msg {
    position: absolute;
    top: -3px;
    left: -6px;
    font-size: 10px;
    border-radius: 50%;
}
button.del_msg {
    position: absolute;
    top: -3px;
    left: -6px;
    font-size: 10px;
    border-radius: 50%;
}
li.leftmsg {
    border-top-left-radius: 3px !important;
}
li.rightmsg {
    border-top-right-radius: 3px !important;
}
div#chat_message_area ul.user_mssage_list li .user_msg_detail {
    display: flex;
    padding-bottom: 10px;
    align-items: start;
    gap: 10px;
}

div#chat_message_area ul.user_mssage_list li .user_msg_detail .job_profile_box {
    border-radius: 50%;
    width: 100%;
   margin-top: 10px
}
div#chat_message_area ul.user_mssage_list li .user_msg_detail .job_profile_box img {
    border-radius: 50%;
}
div#chat_message_area ul.user_mssage_list li .user_msg_detail .job_profile_details h5 {
    color: #000;
    font-size: 12px;
    margin-top: 10px;
}
li.rightmsg a.user_msg_sec .msg_details {
    text-align: end;
}
li.rightmsg a.user_msg_sec .msg_details .job_profile_details {
    width: 100%;
}
li.rightmsg a.user_msg_sec .msg_text {
/*    text-align: end;*/
    float: right;
}
li.rightmsg a.user_msg_sec .msg_text .msg_pic_sec {
    margin-left: auto;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/*.chat_scroll_sec {
  max-height: 68vh;
  overflow-y: scroll;  Use "scroll" instead of "auto" to always show the scrollbar 
}*/
div#messageBar div#text_box_message textarea#chatmsg {
    width: 100%;
    height: 70px;
    padding: 10px;
    border: 1px solid #b3b3b3;
    border-radius: 8px;
}
div#sendButtonContainer {
    margin-top: 15px;
    margin-bottom: 10px;
    padding-right: 10px;
}
div#sendButtonContainer button#send_message {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    background: #0073b1;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.empty_sec {
    height: 80px;
    width: 100%;
}
main#userchatscreen {
    position: fixed;
    width: 100%;
}
div#chat_message_area ul.user_mssage_list li .user_msg_detail a.user_msg_img {
    width: 10%;
}
a.user_msg_sec {
    width: 100%;
    padding-right: 10px;
}
.msg_text p {
    color: rgba(0,0,0,.6);
    width: 100%;
    display: block;
    margin-bottom: 0px;
}
.chat_scroll_sec {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
div#chat_message_area {
    height: 100%;
    width: 100%;
/*    overflow-y: scroll;*/
    overflow-y: auto;
    position: relative;
}
div#messageBar {
    width: 100%;
/*    display: flex;*/
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
div#text_box_message {
    width: 100%;
    padding-right: 15px;
    padding-left: 5px;
}
.user_msg_time {
    text-align: right;
    width: auto;
    padding-right: 10px;
}
.user_msg_time span {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
}
div#selectedImageContainer {
    width: 100%;
    padding-bottom: 10px;
    align-items: center;
    gap: 0;
    justify-content: space-between;
}
.msg_pic_sec {
/*    width: 115px;*/
}
.msg_pic_sec img.msg_pic {
    width: 100%;
    border: 1px solid #b3b3b3;
    border-radius: 10px;
/*    padding: 5px;*/
}
.download_img {
    position: absolute;
    background: rgba(57, 57, 57, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    inset: 0;
    border-radius: 10px;
}
.download_img a {
    color: #fff;
    font-size: 39px;
}
.download_img a:hover {
    color: rgba(0, 0, 0, 0.6);
}
img#selectedImage {
    width: 50px;
}
.msg_slect_img_del {
    padding-right: 10px;
}

div#userstatus {
    position: absolute;
    right: 15px;
}
span#scrollbottom {
    background: #0073b1;
    padding: 10px 15px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    width: auto;
}
.pro_view_btn a {
    border: 1px solid #0073b1;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 400;
    color: #0073b1 !important;
}
.steps_box {
    padding-top: 10px;
    border-top: 1px solid #b3b3b3;
}
.steps_box ul {
    list-style: decimal;
    padding-left: 15px;
}
.steps_box ul li {
    margin: 10px 0;
}
.steps_box ul li .step_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 25px;
}
.steps_box ul li .step_box span.step_box_detail {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 600;
    position: relative;
}
.steps_box ul li .step_box span.step_box_detail i.check {
    color: #0073b1;
}


.page_type_sec input[type="radio"] {
    display: none;
  }

  /* Custom radio box */
.page_type_sec .radio-box {
    display: block;
    width: 100px;
    height: 100px;
    border: 2px solid #ccc;
    border-radius: 10px;
    margin-right: 8px;
    cursor: pointer;
    text-align: center;
    padding: 35px 0;
}

  /* Checked state */
.page_type_sec input[type="radio"]:checked + .radio-box {
    border-color: #057642;
/*    background-color: #007bff;*/
    color: #057642;
  }
  
  /************** post model **************/
  
div#createpost .modal-content .modal-header a:hover {
    background: #f3f6f8;
}

div#createpost .modal-content .modal-header a {
    padding: 4px 8px;
    border-radius: 8px;
    width: auto;
}
div#createpost .modal-content .modal-header .post_profile_box {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 0px 0;
    width: 100%;
    /* justify-content: space-between; */
}
div#createpost .modal-content .modal-header .post_profile_box .post_profile_pic {
    border-radius: 50%;
    width: 11%;
}
div#createpost .modal-content .modal-header .post_profile_box .post_profile_pic img {
    border-radius: 50%;
}
div#createpost .modal-content .modal-header .post_profile_box .post_profile_detail {
    display: block;
    width: auto;
    text-align: left;
}
div#createpost .modal-content .modal-header .post_profile_box .post_profile_detail h5 {
    color: #000;
    text-align: left;
    font-size: 15px;
    margin-bottom: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
}
div#createpost .modal-content .modal-header .post_profile_box .post_profile_detail span {
    color: rgba(0,0,0,0.6);
    font-size: 12px;
}
div#createpost .modal-content .modal-header .post_profile_box .drop_btn {
    width: auto !important;
}
div#createpost .modal-content .modal-header .post_profile_box .drop_btn i {
    color: rgba(0,0,0,0.6);
    font-size: 12px;
}
div#createpost .modal-content .modal-header button.close {
    margin-left: 0px;
}
div#createpost .modal-content .modal-body .post_text_area textarea:focus-visible {
    outline: none;
}

div#createpost .modal-content .modal-body .post_text_area textarea {
    width: 100%;
    border: none;
    height: 180px;
}
div#createpost .modal-content .modal-body .post_text_options .emoji_box {
    text-align: left;
}
div#createpost .modal-content .modal-body .post_text_options .emoji_box a:hover {
    background: #f2f2f2;
}

div#createpost .modal-content .modal-body .post_text_options .emoji_box a {
    padding: 2px 6px;
    border-radius: 50%;
}
div#createpost .modal-content .modal-body .post_text_options .emoji_box a i {
    color: rgba(0,0,0,0.6);
    font-size: 19px;
}
div#createpost .modal-content .modal-body .post_text_options .post_text_other_options {
    display: block;
    align-items: center;
    gap: 0px;
    margin: 10px 0;
    text-align: left;
}
div#createpost .modal-content .modal-body .post_text_options .post_text_other_options span.post_text_other_option_box:first-child {
    margin-left: 0;
}
div#createpost .modal-content .modal-body .post_text_options .post_text_other_options span.post_text_other_option_box {
    margin: 0px 0px;
    text-align: center;
    position: relative;
    width: 50px;
    display: inline-block;
    padding-top: 46px;
}
div#createpost .modal-content .modal-body .post_text_options .post_text_other_options a {
    background: #f2f2f2;
    padding: 10px 12px;
    border-radius: 50%;
}
div#createpost .modal-content .modal-body .post_text_options .post_text_other_options span.post_text_other_option_box span.hovr_box {
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(0,0,0,0.6);
    display: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 2px 10px;
    font-weight: bold;
    width: 100%;
    font-size: 11px;
}
div#createpost .modal-content .modal-body .post_text_options .post_text_other_options a i {
    color: rgba(0,0,0,0.6);
    font-size: 20px;
}
div#createpost .modal-content .modal-footer a {
    padding: 2px 6px;
    border-radius: 50%;
}
div#createpost .modal-content .modal-footer a:hover {
    background: #f2f2f2;
}
div#createpost .modal-content .modal-footer a i {
    color: rgba(0,0,0,0.6);
}
div#createpostx .modal-content .modal-footer button.new_post_btn {
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    padding: 4px 15px;
    border-radius: 50px;
    color: rgba(0,0,0,0.6);
}

main#main-section div#share-box div#button-box button#postButton {
    background: #fff;
    border: 0;
    color: #696c6f;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 19.5px;
    cursor: pointer;
    border-radius: 50px;
}

main#main-section div#share-box div#button-box button.backbtn {
    background: #fff;
    color: #0073b1;
    border: 1px solid #0073b1;
    padding: 10px 19.5px;
    border-radius: 50px;
}

main#main-section div#share-box div#button-box button.donebtn {
    background: #0073b1;
    color: #fff;
    border: 1px solid #0073b1;
    padding: 10px 19.5px;
    border-radius: 50px;
}

/**************** article post ************/

div#articlepost .modal-content .modal-header a:hover {
    background: #f3f6f8;
}

div#articlepost .modal-content .modal-header a {
    padding: 4px 8px;
    border-radius: 8px;
    width: auto;
}
div#articlepost .modal-content .modal-header .post_profile_box {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 0px 0;
    width: 100%;
    /* justify-content: space-between; */
}
div#articlepost .modal-content .modal-header .post_profile_box .post_profile_pic {
    border-radius: 50%;
    width: 11%;
}
div#articlepost .modal-content .modal-header .post_profile_box .post_profile_pic img {
    border-radius: 50%;
}
div#articlepost .modal-content .modal-header .post_profile_box .post_profile_detail {
    display: block;
    width: auto;
    text-align: left;
}
div#articlepost .modal-content .modal-header .post_profile_box .post_profile_detail h5 {
    color: #000;
    text-align: left;
    font-size: 15px;
    margin-bottom: 0px;
}
div#articlepost .modal-content .modal-header .post_profile_box .post_profile_detail span {
    color: rgba(0,0,0,0.6);
    font-size: 12px;
}
div#articlepost .modal-content .modal-header .post_profile_box .drop_btn {
    width: auto !important;
}
div#articlepost .modal-content .modal-header .post_profile_box .drop_btn i {
    color: rgba(0,0,0,0.6);
    font-size: 12px;
}
div#articlepost .modal-content .modal-header button.close {
    margin-left: 0px;
}
div#articlepost .modal-content .modal-body .post_text_area textarea:focus-visible {
    outline: none;
}

div#articlepost .modal-content .modal-body .post_text_area textarea {
    width: 100%;
    border: none;
    height: 180px;
}
div#articlepost .modal-content .modal-body .post_text_options .emoji_box {
    text-align: left;
}
div#createpost .modal-content .modal-body .post_text_options .emoji_box a:hover {
    background: #f2f2f2;
}

div#articlepost .modal-content .modal-body .post_text_options .emoji_box a {
    padding: 2px 6px;
    border-radius: 50%;
}
div#articlepost .modal-content .modal-body .post_text_options .emoji_box a i {
    color: rgba(0,0,0,0.6);
    font-size: 19px;
}
div#articlepost .modal-content .modal-body .post_text_options .post_text_other_options {
    display: block;
    align-items: center;
    gap: 0px;
    margin: 10px 0;
    text-align: left;
}
div#articlepost .modal-content .modal-body .post_text_options .post_text_other_options span.post_text_other_option_box:first-child {
    margin-left: 0;
}
div#articlepost .modal-content .modal-body .post_text_options .post_text_other_options span.post_text_other_option_box {
    margin: 0px 0px;
    text-align: center;
    position: relative;
    width: 50px;
    display: inline-block;
    padding-top: 46px;
}
div#articlepost .modal-content .modal-body .post_text_options .post_text_other_options a {
    background: #f2f2f2;
    padding: 10px 12px;
    border-radius: 50%;
}
div#articlepost .modal-content .modal-body .post_text_options .post_text_other_options span.post_text_other_option_box span.hovr_box {
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(0,0,0,0.6);
    display: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 2px 10px;
    font-weight: bold;
    width: 100%;
    font-size: 11px;
}
div#articlepost .modal-content .modal-body .post_text_options .post_text_other_options a i {
    color: rgba(0,0,0,0.6);
    font-size: 20px;
}
div#articlepost .modal-content .modal-footer a {
    padding: 2px 6px;
    border-radius: 50%;
}
div#articlepost .modal-content .modal-footer a:hover {
    background: #f2f2f2;
}
div#articlepost .modal-content .modal-footer a i {
    color: rgba(0,0,0,0.6);
}
div#articlepost .modal-content .modal-footer button.new_post_btn {
    background: rgb(0, 132, 191);
    border: 1px solid #f2f2f2;
    padding: 4px 15px;
    border-radius: 50px;
    color: #fff;
}





/*******************************************/


#postpiccontent{
    display: none;
}
#postvidcontent{
    display: none;
}
.postimgpicker input#postpicinput {
    border-color: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
}
.postimgpicker input#postvidinput {
    border-color: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
}
div#selectedImageContainer img {
    width: 100%;
}
div.selected-image {
    width: 100%;
    /* margin: 0 auto; */
/*    display: inline-block;*/
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
}
div#selectedImageContainer img {
    width: 100%;
    border-radius: 10px;
    margin-right: 15px;
    margin-top: 10px;
    
}
.postimgpicker {
    margin-bottom: 15px;
}

#postTextArea{
    display: none
}
a.post_tags {
    color: #0073b1 !important;
    font-size: 10px;
    font-weight: bold;
    margin-right: 10px;
}
.postwall_slider .carousel-item {
    height: auto;
}
.postwall_slider .carousel-item img {
    height: 100%;
    object-fit: cover;
}
.postone_img {
/*    height: 230px;*/
/*    width: 50%;*/
    margin: 0 auto;
}
.postone_img img {
    height: 100%;
    border: none !important;
/*    object-fit: cover;*/
}
.comment_form {
    display: none;
}
div#postwall nav {
    display: none;
}
.comment_form button {
    background: #0073b1;
    color: #fff;
    border: 1px solid #0073b1;
    border-radius: 38px;
    margin-top: 10px;
    font-size: 12px;
}
.comment_form button:hover{
    color: #fff;
}
.comment_form ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
img.commentuserpic {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    margin-right: 5px;
}
.commentlikeicon {
    font-size: 8px;
    padding: 3px;
    margin-right: 3px;
    border-radius: 50%;
    color: #f3f6f8;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3), 1px -1px 0 rgba(0, 0, 0, 0.3), -1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.3);
    cursor: pointer;
/*    background: #0092e0;*/
    margin-left: 10px;
}
button.likecomment {
    background: transparent;
    border: none;
}
button.home_follow_btn span {
    font-size: 12px;
}
.follow_btn i {
    margin-right: 5px;
}
button.home_follow_btn i {
    margin-right: 3px;
}
.post_content p {
    font-size: 15px;
    color: #000;
}

article.profile_main_sec div#createpost button#postButton {
    background: #0084bf;
    border: 0;
    color: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 19.5px;
    cursor: pointer;
    border-radius: 50px;
}

article.profile_main_sec div#createpost button.backbtn {
    background: #fff;
    color: #0073b1;
    border: 1px solid #0073b1;
    padding: 10px 19.5px;
    border-radius: 50px;
}

article.profile_main_sec div#createpost button.donebtn {
    background: #0073b1;
    color: #fff;
    border: 1px solid #0073b1;
    padding: 10px 19.5px;
    border-radius: 50px;
}
button.post_more_btn {
    background: transparent;
    border: none;
}
.postpicupdatesec {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.postpicupdatebox {
    width: 30%;
    border-radius: 10px;
    margin-right: 15px;
    margin-top: 10px;
    position: relative;
}
.postpicupdatebox img {
    width: 100%;
    border-radius: 10px;
}
button.postpicdelbtn {
    background: #d11124;
    border: none;
    width: 20px;
    color: #fff;
    border-radius: 50%;
    height: 20px;
    font-size: 12px;
    position: absolute;
    right: 0;
    top: -6px;
}
.post_pic_container {
    position: relative;
    margin-right: 15px;
}
.post_pic_container button.close-button {
    background: #D11124 !important;
    border: none !important;
    width: 20px;
    color: #fff !important;
    border-radius: 50%;
    height: 20px;
    font-size: 12px;
    position: absolute;
    right: 0;
    top: -6px;
    padding: 1px !important;
	display: block !important;
}
button#updatepostButton {
    background: #0073b1;
    color: #fff;
    border: 1px solid #0073b1;
    padding: 10px 19.5px;
    border-radius: 50px;
}
.postfooter #postbackbtn{
    background: #fff !important;
    color: #0073b1 !important;
    border: 1px solid #0073b1 !important;
    padding: 10px 19.5px !important;
    border-radius: 50px !important;
}

.postfooter #companypostdonebtn{
    background: #0073b1 !important;
    color: #fff !important;
    border: 1px solid #0073b1 !important;
    padding: 10px 19.5px !important;
    border-radius: 50px !important;
}

.postfooter #companypostButton{
    background: #0073b1 !important;
    color: #fff !important;
    border: 1px solid #0073b1 !important;
    padding: 10px 19.5px !important;
    border-radius: 50px !important;
}
select#compid {
    width: auto;
}
.user_post_pic {
    border-radius: 50%;
}
.user_post_pic img {
    border-radius: 50%;
}
.badge-info{
    color: #fff !important;
}
.job_btn_box a i {
    color: #0073b1;
}
.sel_language_box p a {
    color: #0a66c2 !important;
}

#loadingIndicator.spinner {
    z-index: 19 !important;
    animation: loading-bar-spinner 800ms linear infinite;
    margin: 0 20px;
}

#loadingIndicator.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border:  solid 4px transparent;
    border-top-color:  #0073b1  !important;
    border-left-color: #0073b1  !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}
/**************************/

#picloadingIndicator.spinner {
    z-index: 19 !important;
    animation: loading-bar-spinner 800ms linear infinite;
    margin: 0 20px;
}

#picloadingIndicator.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border:  solid 4px transparent;
    border-top-color:  #0073b1  !important;
    border-left-color: #0073b1  !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}

/**************************/

#articelloadingIndicator.spinner {
    z-index: 19 !important;
    animation: loading-bar-spinner 800ms linear infinite;
    margin: 0 20px;
}

#articelloadingIndicator.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border:  solid 4px transparent;
    border-top-color:  #0073b1  !important;
    border-left-color: #0073b1  !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}

.footer_logo {
    width: 150px;
}
.foot_sec p {
    color: rgba(0,0,0,0.6) !important;
    font-size: 13px;
}
div#post-data a.postlink {
    color: rgba(0, 0, 0, 0.8) !important;
}
a.postlink div#post-data {
    color: rgba(0, 0, 0, 0.8) !important;
}
.searchimgboc {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.searchimgboc img {
    border-radius: 50%;
}
.searchtitle {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.8);
}
.searchtext {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
}
.searchsec {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
#the-count {
  float: right;
  padding: 0.1rem 0 0 0;
  font-size: 0.875rem;
}
#postpic-the-count {
  float: right;
  padding: 0.1rem 0 0 0;
  font-size: 0.875rem;
}
#company-the-count {
  float: right;
  padding: 0.1rem 0 0 0;
  font-size: 0.875rem;
}
#companypic-the-count {
  float: right;
  padding: 0.1rem 0 0 0;
  font-size: 0.875rem;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important;
}

.post_text_area {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
div#previewContainer {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
div#previewContainer h2 {
    font-size: 16px;
    margin-bottom: 10px;
}
div#previewContainer p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

div#previewContainer img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
a.posturl {
    color: #0073b1 !important;
    text-decoration: underline !important;
}
a.posturl p {
    color: #0073b1 !important;
}

#companypicloadingIndicator.spinner {
    z-index: 19 !important;
    animation: loading-bar-spinner 800ms linear infinite;
    margin: 0 20px;
}

#companypicloadingIndicator.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border:  solid 4px transparent;
    border-top-color:  #0073b1  !important;
    border-left-color: #0073b1  !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}

#companyloadingIndicator.spinner {
    z-index: 19 !important;
    animation: loading-bar-spinner 800ms linear infinite;
    margin: 0 20px;
}

#companyloadingIndicator.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border:  solid 4px transparent;
    border-top-color:  #0073b1  !important;
    border-left-color: #0073b1  !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}


#spinnerload.spinner {
    z-index: 19 !important;
    animation: loading-bar-spinner 800ms linear infinite;
/*    margin: 0 20px;*/
    width: 40px;
    margin: 0 auto;
}

#spinnerload.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border:  solid 4px transparent;
    border-top-color:  #0073b1  !important;
    border-left-color: #0073b1  !important;
    border-radius: 50%;
}

#chatloading.spinner {
    z-index: 19 !important;
    animation: loading-bar-spinner 800ms linear infinite;
/*    margin: 0 20px;*/
    width: 40px;
    margin: 0 auto;
}

#chatloading.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border:  solid 4px transparent;
    border-top-color:  #0073b1  !important;
    border-left-color: #0073b1  !important;
    border-radius: 50%;
}
div#chatloading {
    position: absolute;
    top: 44%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}

select#reachtype {
    width: auto;
}
select#articlereachtype {
    width: auto;
}
.post_text_area .note-editable.card-block {
    min-height: 250px;
}
.post_text_area .note-editor.note-airframe .note-editing-area .note-editable, .note-editor.note-frame .note-editing-area .note-editable {
  word-wrap: break-word !important;
  overflow: auto !important;
  padding: 10px 0px 21px 28px !important;
}
div#selectedVideoContainer {
    position: relative;
}
div#selectedVideoContainer button.close-button {
    position: absolute;
    border-right: 0 !important;
    padding-top: 0px !important;
}
.post_video_container video {
    border-radius: 10px;
}

#vidloadingIndicator.spinner {
    z-index: 19 !important;
    animation: loading-bar-spinner 800ms linear infinite;
    margin: 0 20px;
}

#vidloadingIndicator.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border:  solid 4px transparent;
    border-top-color:  #0073b1  !important;
    border-left-color: #0073b1  !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}

.emoji_box {
    margin-top: 8px;
}
.emoji_box span.emoji {
    margin: 0 5px;
    cursor: pointer;
}

.emoji_box span.picemoji {
    margin: 0 5px;
    cursor: pointer;
}
.note-btn-group.btn-group.note-table {
    display: none !important;
}
li.select2-results__option.select2-results__message {
    display: none;
}

.emojisec span.cmtemoji {
    margin: 0 5px;
    cursor: pointer;
}

.tox-promotion .tox-promotion-link{
	display:none !important;	
}
.tox-statusbar{
	display:none !important;	
}
h3.job_title {
    padding: 8px 14px 0px;
    color: #0073b1;
    font-size: 15px;
}
a.job_link {
    padding: 8px 14px 0px;
}
.custom-control-input:checked~.custom-control-label::before {
    border-color: #17a2b8 !important;
    background-color: #17a2b8 !important;
}
.mobile_message .chat_users hr {
    margin: 5px 0;
}
.mobmsgsec div#chat_area div#header {
    padding: 2px !important;
    margin-bottom: 0px;
    height: auto;
}
div#chat_message_area ul.user_mssage_list li .msg_text {
    white-space: pre-wrap; /* This allows text to wrap */
    word-wrap: break-word; /* This allows long words to break and wrap */
}
li.rightmsg .msg_text {
    text-align: right;
    padding: 0px 10px;
    padding-right: 55px;
    padding-bottom: 6px;
}
li.leftmsg .msg_text {
    padding: 0px 10px;
    padding-left: 55px;
    padding-bottom: 6px;
}
.msg_pic_sec{
/*    padding: 0px 10px;*/
    position: relative;
}
.mobmsgsec div#messageBar {
    padding-bottom: 75px !important;
    padding-top: 5px !important;
}
.mobmsgsec div#messageBar div#sendButtonContainer {
    margin-top: 0px;
    margin-bottom: 20px;
}
@media screen and (min-width:1200px){
    .container {
        max-width: 1360px !important;
    }
}

.profilepic .model_profile_coverc_box img {
    width: 100%;
}
.urldetails h4 {
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    padding: 10px 10px;
    margin-bottom: 0px;
}
p.urltext {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
}
div#post-data h1, h2, h3, h4, h5{
    font-size: 18px;
    padding: 10px;
}
div#post-data p{
    font-size: 15px;
    padding: 10px;
}
/*div#post-data {
    padding: 10px;
}*/
fieldset.fieldsetcustomclass {
    display: block;
    margin-inline-start: 2px;
    margin-inline-end: 2px;
    padding-block-start: 0.35em;
    padding-inline-start: 0.75em;
    padding-inline-end: 0.75em;
    padding-block-end: 0.625em;
    min-inline-size: min-content;
    border-width: 1px;
    border-style: groove;
    border-color: #cfcfcf;
    border-image: initial;
    margin: 15px 15px;
}
fieldset.fieldsetcustomclass legend {
    width: inherit;
    padding: 0 10px;
    border-bottom: none;
}
fieldset.fieldsetcustomclass legend {
    display: block;
    padding-inline-start: 2px;
    padding-inline-end: 2px;
    border-width: initial;
    border-style: none;
    border-color: #cfcfcf;
    border-image: initial;
    font-size: 14px;
    font-weight: bold;
}
.repostheadusersec {
    display: flex;
    align-items: center;
    margin: 0 5px;
}
span.repostuserpic {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
span.repostuserpic img {
    border-radius: 50%;
}
.repostheadusersec span.repostusername {
    color: #000;
    font-size: 15px;
}
p.repost_text {
    padding: 0px 15px;
    margin-top: 20px;
}
a.repostlink {
    color: #212529;
}
.company_header_sec .cover_box img {
    border-radius: 10px;
}
.comp_header_detail_sec {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.comp_header_detail_sec .profile_detail_section h3 {
    padding: 0px;
}
.comp_user_detail {
    display: flex;
    align-items: center;
    justify-content: start;
}
.comp_user_detail span.profile_location {
    margin-right: 20px;
}
.comp_sec_links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.comp_notify {
    position: relative;
    top: unset;
    right: unset;
}
ul.com_info {
    list-style: none;
    padding: 10px;
}
ul.com_info li {
    margin: 10px 0;
    color: rgba(0, 0, 0, 0.6);
}
.comp_tab_sec ul#pills-tab li.nav-item .nav-link.active {
    background: transparent;
    color: #0073b1;
    border-bottom: 3px solid #0073b1;
    border-radius: 1px;
}
.comp_tab_sec ul#pills-tab li.nav-item .nav-link {
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
}
select#piccompid {
    width: auto;
}
.comp_post_pic_box {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 10px;
}
.comp_cover_pic img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.explorenetwork {
  position: absolute;
  top: 44%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.explorenetwork .explore_btn {
  background: white;
  border: 1px solid #0a66c2;
  color: #0a66c2 !important;
  padding: 5px 20px;
  border-radius: 20px;
}
.related_job_details {
    width: 100%;
}
.related_job_details h3 {
    padding-left: 0px;
    padding-bottom: 2px;
    padding-top: 0px;
}
.postwall_slider button {
    background: #0073b1;
    top: 50%;
    bottom: unset;
    width: 30px;
    height: 30px;
    border-radius: 50px;
}

.postwall_slider button.carousel-control-prev {
    left: 13px;
}

.postwall_slider button.carousel-control-next {
    right: 13px;
}
span.carousel-control-prev-icon {
    width: 10px;
    height: 10px;
}
span.carousel-control-next-icon{
    width: 10px;
    height: 10px;
}
.postwall_slider .carousel-inner .carousel-item img {
    border-bottom: none !important;
    border-top: none !important;
}
/*.postwall_slider .carousel-inner .carousel-item {
    padding: 0px 190px;
}*/

/*****************************/
@media screen and (min-width: 768px) and (max-width: 1360px) {
    span.header_drop_content h4 {
        margin-bottom: 0px;
        padding-left: 0px;
        padding-top: 0px;
        padding-bottom: 1px;
    }
    header#main-header > div nav ul li div a {
        line-height: 1;
    }
    span.header_drop_profile_details h4 {
        margin-bottom: 0px;
    }
    span.view_btn {
        margin-top: 0px;
    }
}


.projectsClass {
    visibility: hidden !important;
    display: none !important;
    max-height: 0 !important;
}

/*.projectsClass li{
    display: none
}*/

.projects {
    visibility: visible;
    margin-left: 0px;
    max-height: 120px;
    transition: all 0.3s ease-in-out;
}
/*.projects li{
   display: block
}*/
/*
#menu > .toggleTitle {
        padding: 1em 0;
        line-height: 1.5;
        border: 0;
        color: white;
}*/

span.header_drop_content h4 {
    padding-left: 0px;
}

.projects li {
  padding-left: 15px;
}
.projects li:hover {
  background: #f2f2f2;
}
a.checkfollowers {
    color: rgba(0,0,0,0.6) !important;
}
.user_online_status span.online_status_text {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
}
.user_online_status {
    position: absolute;
    bottom: 6px;
    left: 36px;
}
.msg_slect_img_sec {
    width: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
}
input#searchchat:focus {
    border-color: #495057;
    box-shadow: none;
}
.explorenetwork .explore_btn i {
    margin-right: 10px;
}
span.countnotify {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #cb112d;
    border-radius: 50%;
    text-align: center;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3px;
    right: 19px;
    font-weight: bold;
}
span#show-hide-toggle {
    background: transparent;
    border: none;
}
span#show-hide-toggle2{
    background: transparent;
    border: none;
}
.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}
.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
    color: #a94442;
}

.jobview_sec {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0;
    margin: 100px 0;
}

.job_box {
    overflow-x: hidden;
    position: relative;
    overflow-y: scroll;
    max-height: 100vh;
    padding-bottom: 40px;
}

.job_details_inner_section {
    padding: 0px 20px;
    overflow-x: hidden;
    position: relative;
    overflow-y: scroll;
    max-height: 80vh;
    padding-bottom: 40px;
}
form.seachjob_form button {
    border: 1px solid #0073b1;
    color: #0073b1 !important;
    border-radius: 10px;
}
form.seachjob_form input:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}
form.seachjob_form input {
    color: #212529;
}

div#selectedFileContainer {
    width: 100%;
    padding-bottom: 10px;
    align-items: center;
    gap: 0;
    justify-content: space-between;
}

span#selectedFile {
    border: 1px solid #0073b1;
    padding: 5px 16px;
    border-radius: 50px;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    color: #0073b1 !important;
}
span.file_msg {
    padding: 1px 8px;
    color: #0073b1 !important;
    border: 1px solid #0073b1;
    display: inline-block;
    border-radius: 50px;
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}
span.file_msg i {
    margin-left: 10px;
}
.likeduserslist ul {
    list-style: none;
}
.likeduserslist ul li {
    margin: 10px 0;
    border-radius: 10px;
}
.likeduserslist ul li .likedused {
    display: flex;
    align-items: center;
    gap: 10px;
}
.likeduserslist ul li .likedused .likeduserpic {
    width: 40px;
    border-radius: 50%;
}
.likeduserslist ul li .likedused .likeduserpic img {
    border-radius: 50%;
}
.likeduserslist ul li .likesuserdetail h4 {
    font-size: 15px;
    color: #212529;
}
.likeduserslist ul li a {
    padding: 10px 10px;
    display: block;
}
.likeduserslist ul li a:hover {
    background: #f2f2f2;
}
li.no_likes {
    padding: 10px;
    color: red;
}
.like_count {
    color: #212529;
}
.profile_detail_section h3 {
    padding-left: 0px;
    padding-bottom: 0pc;
}
a.jobbusinesspage {
    border: 1px solid #0073b1;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: 400;
    color: #0073b1 !important;
}


.job_box::-webkit-scrollbar {
    width: 5px;
}

.job_box::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid darkgrey;
    border-radius: 5px;
}
.job_box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-clip: content-box;
}
 


.job_details_inner_section::-webkit-scrollbar {
    width: 5px;
}

.job_details_inner_section::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid darkgrey;
    border-radius: 5px;
}
.job_details_inner_section::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}


.chat_users::-webkit-scrollbar {
    width: 5px;
}

.chat_users::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid darkgrey;
    border-radius: 5px;
}
.chat_users::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}



div#chat_message_area::-webkit-scrollbar {
    width: 5px;
}

div#chat_message_area::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid darkgrey;
    border-radius: 5px;
}
div#chat_message_area::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
div#post-author {
    margin-bottom: 20px;
}
.postsearch {
    width: auto !important;
    border-color: rgba(0, 0, 0, 0.75) !important;
    border-radius: 4px !important;
    border-width: 1px !important;
    border-style: solid !important;
    color: #0073b1 !important;
}
.postsearch:focus {
    box-shadow: none !important;
}
.postsearchbox {
    margin-right: 10px;
    position: relative;
}
.postsearchbox button {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    padding: 0 5px;
    background: #0073b1 !important;
    color: #fff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin: 0px !important;
}
.postsearchbox button span.searchaction {
    color: #fff !important;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 4px;
}
form.hastagsearchform {
    width: 210px;
}
/*span.searchaction {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5px;
    cursor: pointer;
    border-left: 1px solid rgba(0, 0, 0, 0.75);
    background: #0073b1;
    color: #fff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}*/

.post_profile_detail h5 {
    padding-left: 0px;
    padding-bottom: 0px;
}
div.wall_post_content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 20;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.home_right_bar {
	height: 766px !important;
    border-bottom: 0px !important;
}