* {
    margin: 0;
    padding: 0;
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #f0f2f5;
    color: #5f5f5f;

}

a {
    text-decoration: none;
    color: #5f5f5f;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 6px 6%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border: 0px solid red;
}


li.hashy {
    background-image: url("../images/hashtag.png");
    background-repeat:no-repeat;
    background-size:18px;
    padding-left:30px;
    list-style:none;
    line-height:21px;
}


.logo img {
    /*width: 30px;*/
    margin-right: 15px;
    display: block;
}

.navbar-center ul li {
    display: inline-block;
    list-style: none;
}

.navbar-center ul li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 5px 8px;
    padding-right: 5px;
    position: relative;
}

.navbar-center ul li a img {
    width: 30px;
}

.navbar-center ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #045be6;
    position: absolute;
    bottom: -10px;
    transition: width 0.3s;

}

.navbar-center ul li a:hover::after,
.navbar-center ul li a.active-link::after {
    width: 100%;
}

.nav-profile-img {
    width: 40px;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    position: relative;
}

.online {
    position: relative;
}

.online::after {
    content: '';
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    border-radius: 50%;
    right: 0;
    top: 0;
    background: #41db51;
    position: absolute;
}

.search-box {
    background: #f0f2f5;
    width: 250px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.search-box img {
    width: 14px;
}

.search-box input {
    width: 100%;
    background: transparent;
    padding: 8px;
    outline: none;
    border: none;

}


/*   */

.container {
    display: flex;
    padding: 20px 6%;
    flex-wrap: wrap;
    justify-content: space-between;
}


/* Left side Bar*/
.left-sidebar {
    flex-basis: 25%;
    align-self: flex-start;
    position: sticky;
    top: 73px;

}

.sidebar-profile-box {
    background: #fff;

}

.sidebar-profile-info {
    padding: 0 25px;

}

.sidebar-profile-info img {
    width: 90px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    margin-top: -45px;

}

.sidebar-profile-info h1 {
    font-size: 20px;
    font-weight: 600;
    color: #222;

}

.sidebar-profile-info h3 {
    font-size: 14px;
    font-weight: 500;
    color: #777;

}

.sidebar-profile-info ul {
    list-style: none;
    margin: 20px 0;
}

.sidebar-profile-info ul li {
    width: 100%;
    margin: 5px 0;
    font-size: 13px;
}

.sidebar-profile-info ul li span {
    float: right;
    color: #045be6;


}

.sidebar-profile-link {
    display: flex;
    align-items: center;
    border-top: 1px solid #ccc;

}

.sidebar-profile-link a {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    font-size: 13px;
    border-left: 1px solid #ccc;

}

.sidebar-profile-link a:first-child {
    border-left: 0;

}

.sidebar-profile-link a img {
    width: 20px;
    margin-right: 10px;


}

.sidebar-activity {
    background: #fff;
    padding: 5px 25px;
    margin: 12px 0;

}

.sidebar-activity h3 {
    color: #777;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0 10px;

}

.sidebar-activity a {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    margin: 3px 0;

}

.sidebar-activity a img {
    width: 20px;
    margin-right: 10px;
}

.discover-more-link {
    border-top: 1px solid #ccc;
    text-align: center;
    margin-top: 20px;
    margin-left: -25px;
    margin-right: -25px;

}

.discover-more-link a {
    color: #045be6;
    display: inline-block;
    margin: 10px 0;


}

/*Right Sidebar */


.right-sidebar {
    flex-basis: 25%;
    align-self: flex-start;
    position: sticky;
    top: 73px;
}

.sidebar-news {
    background: #fff;
    padding: 10px 25px;

}

.info-icon {
    width: 15px;
    float: right;
    margin-top: 15px;
}

.sidebar-news h3 {
    font-size: 18 px;
    font-weight: 600;
    color: #333;
    margin: 10px 0 30px;

}

.sidebar-news a {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: -5px;

}

.sidebar-news span {
    font-size: 12px;

}


.sidebar-news .read-more-link {
    color: #045be6;
    font-weight: 500;
    margin: 20px 0 10px;

}

.sidebar-ad {
    background: #ffff;
    padding: 15px 25px;
    text-align: center;
    margin: 12px 0;
    font-size: 12px;
}

.sidebar-ad img {
    width: 60px;
    border-radius: 50%;
    margin: 4px;


}

.sidebar-ad small {
    float: right;
    font-weight: 500;
}

.sidebar-ad p {
    margin-top: 30px;
    margin-bottom: 10px;

}

.sidebar-ad b {
    display: block;
    font-weight: 500;
    margin-top: 10px;
}

.ad-link {
    display: inline-block;
    border: 1px solid #045be6;
    border-radius: 30px;
    padding: 5px 15px;
    color: #045be6;
    font-weight: 500;
    margin: 20px auto 10px;

}


.sidebar-useful-links {
    padding: 15px 25px;
    text-align: center;


}

.sidebar-useful-links a {
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
}

.copyright-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 10px;
    font-weight: 500;

}

.copyright-msg img {
    width: 18px;
    margin-right: 4px;

}

/*Main Content*/

.main-content {
    flex-basis: 47%;
}

.create-post {
    background: #fff;

}

.create-post-input {
    padding: 20px 25px 10px;
    display: flex;
    align-items: flex-start;
}

.create-post-input img {
    width: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.create-post-input textarea {
    width: 100%;
    border: 0;
    outline: 0;
    resize: none;
    background: transparent;
    margin-top: 8px;
}

::placeholder {
    font-weight: 500;

}

.create-post-links {
    display: flex;
    align-items: flex-start;
}

.create-post-links li {
    list-style: none;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    flex-basis: 25%;
    height: 40px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;


}

.create-post-links li img {
    width: 15px;
    margin-right: 5px;

}

.create-post-links li:last-child {
    background: #045be6;
    color: #fff;
    border-top: 0;
    border-right: 0;


}

.sort-by {
    display: flex;
    align-items: center;
    margin: 10px 0;

}

.sort-by hr {
    flex: 1;
    border: 0;
    height: 1px;
    background: #ccc;
}

.sort-by p {
    font-size: 13px;
    padding-left: 5px;

}

.sort-by p span {
    font-weight: 600;
    cursor: pointer;
}

.sort-by p span img {
    width: 12px;
    margin-left: 3px;

}

.post {
    background: #fff;
    padding: 20px 25px 5px;
    margin: 5px 0 15px;
}

.post-author {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;

}

.post-author img {
    width: 35px;
    border-radius: 100px;
    margin-top: 5px;
    margin-right: 5px;
}

.post-author h1 {
    font-size: 18px;
    font-weight: 600;
    color: #333;

}

.post-author small {
    display: block;
    margin-bottom: -2px;
}

.post p {
    font-size: 14px;
    margin-bottom: 15px;
}

.post-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
}

.post-stats div {
    display: flex;
    align-items: center;

}

.post-stats img {
    width: 15px;
    margin-right: -5px;
}

.liked-users {
    margin-left: 10px;
}

.post-activity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
}

.post-activity div {
    display: flex;
    align-items: center;

}

.post-activity-user-icon {
    width: 22px;
    border-radius: 50%;
}

.post-activity-arrow-icon {
    width: 12px;
    margin-left: 5px;
}

.post-activity-link img {
    width: 18px;
    margin-right: 8px;


}


.profile-menu-wrap {
    position: absolute;
    top: 100%;
    right: 5%;
    width: 320px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;


}

.profile-menu-wrap.open-menu {
    max-height: 400px;
}

.profile-menu {
    background: #222;
    color: #fff;
    padding: 20px;
    margin: 10px;


}

.user-info {
    display: flex;
    align-items: center;

}

.user-info img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-info h3 {
    font-weight: 500;
    margin-bottom: 0 px;
}

.user-info a {
    color: #c9dbf8;
    font-size: 13px;
}

.profile-menu hr {
    border: 0;
    height: 1px;
    width: 100%;
    background: #fff;
    margin: 15px 0 10px;

}

.profile-menu-link {
    display: flex;
    align-items: center;
    color: #fff;
    margin: 12px 0;
    font-size: 14px;

}

.profile-menu-link p {
    width: 100%;
}

.profile-menu-link img {
    width: 35px;
    border-radius: 50%;
    margin-right: 15px;
}

.profile-menu-link span {
    font-size: 10px;
}

#showMoreLink {
    display: none;
}

/* MEDIA QUERIES */
@media only screen and (max-width:600px) {
    .search-box {
        background: transparent;
        width: auto;
        padding: 0;
    }

    .search-box input {
        width: 0;
        padding: 0;
    }

    .navbar-center ul li a span {
        display: none;
    }

    .navbar-center ul li a {
        padding-right: 0;
        margin: 5px;
    }

    .nav-profile-img {
        width: 30px;
    }

    .container {
        padding: 15px 3%;
    }

    .left-sidebar,
    .right-sidebar {
        flex-basis: 100%;
        position: relative;
        top: unset;
    }

    .main-content {
        flex-basis: 100%;
    }

    .post-stats div {
        margin: 2px 0;
    }

    .post-activity-link span {
        display: none;

    }

    .post-activity-link img {
        margin-right: 0;

    }

    #showMoreLink {
        display: block;
        width: fit-content;
        margin: 10px auto;
        font-size: 14px;
        cursor: pointer;
    }

    .sidebar-activity {
        display: none;
    }

    .sidebar-activity.open-activity {
        display: block;
    }



}


/*Company Wise form css start*/

.containery {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    margin-top: 0;
}

.form-groupy {
    margin-bottom: 15px;
}

label {
    /* display: block; */
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="radio"] {
    margin-right: 5px;
}

textarea, input[type="text"],
select {
    width: 100% !important;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 5px 0;
}

button {
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

/* button added by mohan */

.button {
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.button:hover {
    background-color: #0056b3;
}
/*end button */

.buty {
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

    .buty:hover {
        background-color: blue;
        color:#fff;
    }
/*end button */

/*Responsive adjustments*/
@media (max-width: 600px) {
    .containery {
        padding: 10px;
    }

    buttony {
        width: 100%;
    }
}

/*Company wise css end here*/


/*Pagination start*/

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #007BFF;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: #007BFF;
    color: white;
}

@media (max-width: 600px) {
    .pagination {
        flex-wrap: wrap;
    }

    .pagination li {
        margin: 5px 0;
    }

    .pagination a {
        padding: 10px 10px;
    }
}

@media (max-width: 400px) {
    .pagination a {
        padding: 8px 8px;
        font-size: 14px;
    }
}

/*Pagination end*/




/*Pagination2 start*/

.pagination2 {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .pagination2 li {
        margin: 0 5px;
    }

    .pagination2 a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #007BFF;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

        .pagination2 a:hover {
            background-color: #007BFF;
            color: white;
        }

@media (max-width: 600px) {
    .pagination2 {
        flex-wrap: wrap;
    }

        .pagination2 li {
            margin: 5px 0;
        }

        .pagination2 a {
            padding: 10px 10px;
        }
}

@media (max-width: 400px) {
    .pagination2 a {
        padding: 8px 8px;
        font-size: 14px;
    }
}

/*Pagination2 end*/




/*class of start*/


.labely {
    display: block;
    background-color: #f9f9f9;
    padding: 5px;
}


/*class of end*/



/* select2 start */

.select2-container {
    /*min-width: 400px;*/ /*commented on 11nov24 */
    min-width: 100%;      /*added on 13nov24 */
}

.select2-results__option {
    padding-right: 20px;
    vertical-align: middle;
}

    .select2-results__option:before {
        content: "";
        display: inline-block;
        position: relative;
        height: 20px;
        width: 20px;
        border: 2px solid #e9e9e9;
        border-radius: 4px;
        background-color: #fff;
        margin-right: 20px;
        vertical-align: middle;
    }

    .select2-results__option[aria-selected=true]:before {
        font-family: fontAwesome;
        content: "\f00c";
        color: #fff;
        background-color: #f77750;
        border: 0;
        display: inline-block;
        padding-left: 3px;
    }

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eaeaeb;
    color: #272727;
}

.select2-container--default .select2-selection--multiple {
    margin-bottom: 10px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 4px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #f77750;
    border-width: 2px;
}

.select2-container--default .select2-selection--multiple {
    border-width: 2px;
}

.select2-container--open .select2-dropdown--below {
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.select2-selection .select2-selection--multiple:after {
    content: 'hhghgh';
}
/* select with icons badges single*/
.select-icon .select2-selection__placeholder .badge {
    display: none;
}

.select-icon .placeholder {
    /* 	display: none; */
}

.select-icon .select2-results__option:before,
.select-icon .select2-results__option[aria-selected=true]:before {
    display: none !important;
    /* content: "" !important; */
}

.select-icon .select2-search--dropdown {
    display: none;
}
/* select2 end */


/*.labelz {
    margin-bottom: 5px;
    font-weight: bold;
}*/


/*Tab style start*/

.createpanel ul.tabStyles {
    margin: 0px;
    padding: 0px;
    font-size: 11px;
}

.tabStyles {
    margin-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    text-align: left;
    font-weight: bold;
    width: 100%;
   
}

.createpanel ul.tabStyles li {
    padding: 0px;
    margin: 0px;
}


.tabStyles li {
    float: left;
}

    .tabStyles li a {
        /*  border-radius: 5px 5px 0 0;
        padding: 3px;
        background-color: #ccc;
        margin: 3px;
        font-size: 11px;
        height: 55px;
        line-height: 22px;
        text-align: center;
      
        position: relative;
        z-index: 1;*/
        text-decoration: none;
        position: relative;
        z-index: 1;
        padding: 13px 7px;
        color:#fff;
        background-color: #4362a9;
        outline: none;
        border: 1px solid #ffffff;
        font-size: 11px;
        border-radius:10px 10px 0 0;
    }

@media only screen and (min-width:200px) and (max-width:1047px) {

    .tabStyles li a.selected { 
       
        border-radius:0px !important;
    }
    .tabStyles li a.none { 

        border-radius:0px !important;
    }

    .tabStyles li a {
        /*  border-radius: 5px 5px 0 0;
        padding: 3px;
        background-color: #ccc;
        margin: 3px;
        font-size: 11px;
        height: 55px;
        line-height: 22px;
        text-align: center;
      
        position: relative;
        z-index: 1;*/
        text-decoration: none;
        position: relative;
        z-index: 1;
        padding: 13px 7px;
        color: #fff;
        background-color: #4362a9;
        outline: none;
        border: 1px solid #ffffff;
        font-size: 11px;
        display: block !important;
       border-radius:0px !important;
        width:100% !important;
    }


}

@media only screen and (max-width:900px) {

    .tabStyles li {
        width: 100%;
        display: block;
    }

        .tabStyles li a {
            width: 100%;
            display: block;
           
        }

           
}

@media only screen and (max-width:380px) {

    .tabStyles li a{
        width: 100%;
        display: block;
       
    }
}

    .tabStyles li.downlaodIcon a, .tabStyles li a.excel_icon {
        padding: 0px;
    }

    .tabStyles li a:visited {
        color: #fff;
    }

    .tabStyles li a:hover {
        text-decoration: none;
        outline: none;
    }

.tabStyles li a.selected { /*selected main tab style */
    position: relative;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: #5CA0D9 #5CA0D9 #F0F8FF #5CA0D9;
    background-color: #F0F8FF;
    top: 1px;
    color: #4362a9;
    outline: none;
    border-radius:10px 10px 0 0;
}

.tabStyles li a.none { /*selected main tab style */
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 13px 7px;
    color: #fff;
    background-color: #4362a9;
    outline: none;
    border: 1px solid #ffffff;
    font-size: 11px;
    border-radius: 10px 10px 0 0;
}



    .tabStyles li a.selected:hover { /*selected main tab style */
        text-decoration: none;
    }


.tabcontentstyle {
    border: 1px solid #5CA0D9;
    margin-bottom: 1em;
    background-color: #F0F8FF;
    position: relative;
    top: 2px;
    padding: 10px;
}

    .tabcontentstylecompanyProfile {
        border: 0px solid #5CA0D9;
        margin-bottom: 1em;
        padding: 0;
        position: relative;
        top: 2px;
    }

ul.InBorder {
    border: 1px solid #5CA0D9;
    padding: 10px 0 10px 0;
    background-color: #F0F8FF;
}


.req {
    font-size: 10px;
    font-weight: normal;
    padding-left: 130px;
}

    .reqNote {
        font-size: 10px;
        color: #9E1333;
    }

    .tabcontent li {
        padding-top: 5px;
    }

    .tabcontentstylecompanyProfile .tabcontent li label {
        width: 250px;
    }

    .tabcontent li label {
        width: 160px;
        text-align: right;
        float: left;
        padding: 2px 0 0 0;
        margin-right: 5px;
        font-size: 11px;
    }

    .min {
        font-size: 11px;
    }

    .max {
        font-size: 11px;
        padding-left: 10px;
    }

    .tabcontent ul.LeftUl, .tabcontent ul.RightUl {
        float: left;
        width: 50%
    }

    .tabcontent ul.studentProfileLeftUl {
        float: left;
        width: 60%
    }

        #id4.tabcontent li label, .tabcontent ul.studentProfileLeftUl li label {
            width: 100px;
        }

    .tabcontent ul.studentProfileRightUl {
        float: left;
        width: 40%
    }


    /*tab style end*/


    @media only screen and (min-width:601px) and (max-width:905px) {

        .container {
            /* padding: 15px 0% !important;*/

            justify-content: center;
        }

        .post, .sidebar-news, .sidebar-ad {
            margin-left: 5px;
        }
    }


/*start Grid report*/

.top-sticky {
    position: sticky;
    top: 70px;
    z-index: 300;
}

.fixedHeaderGrid td, .fixedHeaderGrid th {
    border: 1px solid #777;
    padding: 5px;
    font-size: 11px;
   
}

.fixedHeaderGrid {
    font-family: Arial;
   
}



    .fixedHeaderGrid thead tr th,
    .fixedHeaderGrid tfoot tr td {
        /* appearance */
        background-color: #4362a9;
        border-bottom: 2px solid #A8A8A8;
        color: #fff;
        font-weight: bold;
        vertical-align: middle;
    }
/*end Grid report*/

/*add image to button */
.btnImg {
    background-image: url(../Admin/images/search.png) !important;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-size: 30px;
    border: 0px solid red;
    background-color: none;
    border-radius: 30%;
    cursor: pointer;
}
/*add image to button */


/* start Modal background (hidden by default) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Modal box content */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    text-align: left;
}

/* end of Modal background (hidden by default) */


.bg-up-button {
    background-image: url("../Admin/images/up_40.png") !important;
    width: 40px;
    height: 40px;
    border-width:0px;
   border-radius:50%;
   cursor:pointer;
}
.bg-down-button {
    background-image: url("../Admin/images/down_40.png") !important;
    width: 40px;
    height: 40px;
    border-width: 0px;
    border-radius: 50%;
    cursor: pointer;
}