.navbar-default.sidebar::-webkit-scrollbar {
    width: 2px;
    border-radius: 10px;
}

/* Track */
.navbar-default.sidebar::-webkit-scrollbar-track {
    background: #2f323e;
}

/* Handle */
.navbar-default.sidebar::-webkit-scrollbar-thumb {
    background: #6a747f;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loader {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.loader_inner {
    border: 5px solid #ccc;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.9s linear infinite;
}

.btn.info_button {
    background-color: #5bc0de;
    color: #2f323e;
    font-size: 11px;
    border: 0;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.5s;
    -webkit-box-shadow: 2px 10px 5px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 2px 10px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 1px 1px 10px 0px rgb(0 0 0 / 20%);
}

.btn.info_button:hover {
    background-color: #49a1bb;
    color: #2f323e;
}

.btn.primary_button {
    background-color: #f7f700;
    color: #2f323e;
    font-size: 11px;
    border: 0;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.5s;
    -webkit-box-shadow: 2px 10px 5px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 2px 10px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 1px 1px 10px 0px rgb(0 0 0 / 20%);
}

.btn.primary_button:hover {
    /* background-color: #21d813; */
    opacity: 1;
    color: #2f323e;
}

.nav.customtab li a {
    border: 0;
    font-size: 13px;
}

.nav.customtab li a:hover {
    background-color: transparent;
}

.nav.customtab li a:after {
    content: "";
    /* width: 100%; */
    width: 0;
    height: 1px;
    background-color: #41b3f9;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.2s linear;
}

.nav.customtab li a:hover:after {
    width: 100%;
}

.nav.customtab li.active a,
.nav.customtab li.active a:hover,
.nav.customtab li.active a:focus {
    border: 0;
    margin-bottom: 0;
}

.nav.customtab li.active a:after,
.nav.customtab li.active a:hover:after,
.nav.customtab li.active a:focus:after {
    width: 100%;
}

.nav.customtab>li {
    margin-bottom: 0;
}

#side-menu>li>a {
    transition: all 0.3s;
}

#side-menu>li>a:hover,
#side-menu>li>a:focus {
    color: #fff;
}

#side-menu>li.active>a {
    color: #fff;
    background: rgba(0, 0, 0, 0.07);
}

.bg-title {
    /* background: #000000 !important; */
    color: #fff !important;
    border-bottom: 1px solid rgba(120, 130, 140, 0.13) !important;
    margin-top: 0 !important;
}

.white-box {
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

.bg-title h4 {
    margin-top: 10px !important;
}

.label {
    font-weight: normal !important;
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}



.custom_chat main {
    height: auto !important;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    max-width: 600px;
    margin: auto;
    display: block !important;
}

.custom_chat header {
    height: auto !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    background-color: #ffffff;
    padding: 20px 30px !important;
}
.custom_chat_header_title{
    display: flex !important;
    align-items: center;
}
.custom_chat_header_title img{margin-right: 10px;}

.custom_chat header h3,
.custom_chat header b {
    color: #000000 !important;
}

.custom_chat .chat-box>ul {
    width: 100% !important;
}

.custom_chat .chat-box>ul li .message {
    padding: 5px 15px !important;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: normal !important;
    border-radius: 6px !important;
}

.custom_chat footer {
    height: auto !important;
    padding: 0 !important;
}

.custom_chat .custom_chat_footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid #97999f;
}

.custom_chat .custom_chat_footer textarea {
    width: 100%;
    max-width: calc(100% - 85px);
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    background-color: transparent !important;
    color: #000;
    height: auto !important;
    line-height: 15px;
    box-shadow: none !important;
}

.custom_chat .custom_chat_footer textarea::-webkit-input-placeholder {
    /* Edge */
    color: #000;
}

.custom_chat .custom_chat_footer textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
}

.custom_chat .custom_chat_footer textarea::placeholder {
    color: #000;
}

.custom_chat .custom_chat_footer .primary_button {
    width: 100%;
    max-width: 60px;
    border-radius: 0;
    /* background-color: transparent; */
    padding: 10px;
    box-shadow: none;
    /* padding: 0; */

    /* border-left: 1px solid #97999f; */
}

.gig-detail {

    width: 100%;
    max-width: 1500px;
    margin: auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    padding: 0px;

}

.gig-detail>.row {
    display: flex;
    flex-wrap: wrap;
}

.gig-detail-left {
    padding: 25px 40px !important;
}

.mdi {
    font-size: 16px !important;
    font-style: normal !important;
}

.custom_chat_outer {
    display: flex;
    justify-content: center;
}

.custom_chat_outer .custom_chat {
    width: calc(100% - 260px);
}

.container_custom {
    width: 100%;
    max-width: 1170px;
    padding: 0 15px;
    margin: auto;
    display: block;
}

.company_detail {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    margin-bottom: 50px;
}

.company_detail_banner {
    position: relative;
}

.company_detail_banner>img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.company_detail_banner:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.company_detail_banner a {
    position: absolute;
    width: 110px;
    left: 35px;
    bottom: -55px;
    background-color: #fff;
    z-index: 1;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

.company_detail_banner a img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    object-position: center;
}

.company_detail_inner {
    padding: 60px 35px;
    font-size: 14px;
}

.company_detail_title h1 {
    font-size: 35px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.company_detail_title p {
    font-size: 14px;
    margin: 0 0 5px;
    line-height: 25px;
}

.company_detail_overview {
    border-top: 1px solid #ccc;
    margin-top: 20px;
}

.company_detail_box>.row,
.company_subs_detail_box>.row {
    display: flex;
    flex-wrap: wrap;
}

.company_detail_box>.row>div,
.company_subs_detail_box>.row>div {
    margin-bottom: 25px;
}

.company_detail_box_inner,
.company_subs_detail_box_inner {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    /* text-align: center; */
    display: grid;
    flex-wrap: wrap;
    font-size: 14px;
    flex-direction: column;
    line-height: 25px;
    font-weight: 400;
    height: 100%;
}

.company_detail_box_inner h5,
.company_subs_detail_box h5 {
    font-size: 18px;
    padding: 10px;
    margin: 0;
    text-align: center;
    width: 100%;
    color: #fff;
    background-color: rgb(0, 0, 0);
}

.company_detail_box_inner>div {
    padding: 15px;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* text-align: center; */
}

.company_detail_box_inner>div i {
    color: #21f710;
    font-size: 20px !important;
}

.button_group .btn {
    margin-right: 15px;
    margin-top: 15px;
}

.btn.btn-outline {
    padding: 9px 15px;
}

.company_detail_overview table td {
    border: 1px solid #999;
    padding: 10px;
}

.company_detail_overview table td h5 {
    margin: 0;
}

.company_detail_overview table td p {
    margin: 10px 0 0 0;
}

.company_gigs_details {
    width: calc(100% + 35px);
    background-color: #999;
    padding: 25px;
}

.company_gigs_details_inner {
    box-shadow: 0 0 2px 0 rgb(0 0 0 / 50%);
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: 15px;
}

.company_gigs_details_inner>div {
    font-size: 50px;
    font-weight: 700;
}

.company_subs_detail_box_content {
    padding: 20px;
}

.company_subs_detail_box_content h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.company_subs_detail_box_content span {
    display: block;
    line-height: normal;
    margin-bottom: 5px;
}

.company_subs_detail_box_content table td {
    padding: 10px;
    border: 1px solid #999;
}

.company_detail_box_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.employee_profile_outer {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.employee_profile_outer>.row {
    display: flex;
}

.employee_profile_outer>.row>div {
    margin-bottom: 25px;
}

.employee_profile_box {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background-color: #fff;
}

.employee_gig_detail {
    margin-bottom: 25px;
}

.employee_profile_detail {
    padding: 0 25px 25px;
    height: 100%;
}

.employee_profile_detail img {
    width: 100%;
    height: 250px;
    object-position: center;
    object-fit: contain;
}

.employee_profile_detail>div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 10px 0;
}

.employee_profile_detail h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.employee_profile_detail>div ul {
    padding: 0;
    margin: 0;
}

.employee_profile_detail>div ul li {
    display: block;
    margin: 0 0 2px 0;
    color: #999;
}

.employee_profile_detail>ul li {
    display: flex;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
}

.employee_profile_detail>ul li:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.employee_profile_detail>ul {
    padding: 0;
    margin: 25px 0 0 0;
}

.employee_gig_detail h3,
.employee_other_detail h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding: 15px 25px;
    border-bottom: 1px solid #ccc;
}

.employee_gig_detail>div,
.employee_other_detail>div {
    padding: 25px;
}

.employee_other_detail h5 {
    margin: 0 0;
}

.employee_other_detail_item,
.employee_gig_detail_item {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.employee_other_detail_btn {
    padding: 0px 10px;
    border-radius: 8px;
    font-size: 12px;
    color: #ffffff;
    background: rgba(150, 83, 222, 1);
    /* background: -moz-linear-gradient(left, rgba(238,121,100,1) 0%, rgba(150,83,222,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(238,121,100,1)), color-stop(100%, rgba(150,83,222,1)));
    background: -webkit-linear-gradient(left, rgba(238,121,100,1) 0%, rgba(150,83,222,1) 100%);
    background: -o-linear-gradient(left, rgba(238,121,100,1) 0%, rgba(150,83,222,1) 100%);
    background: -ms-linear-gradient(left, rgba(238,121,100,1) 0%, rgba(150,83,222,1) 100%);
    background: linear-gradient(to right, rgba(238,121,100,1) 0%, rgba(150,83,222,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee7964', endColorstr='#9653de', GradientType=1 ); */
}

/* .employee_other_detail_inner .employee_other_detail_item:nth-child(even) .employee_other_detail_btn {
    background: rgba(238,121,100,1);
background: -moz-linear-gradient(left, rgba(238,121,100,1) 0%, rgba(150,83,222,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(238,121,100,1)), color-stop(100%, rgba(150,83,222,1)));
background: -webkit-linear-gradient(left, rgba(238,121,100,1) 0%, rgba(150,83,222,1) 100%);
background: -o-linear-gradient(left, rgba(238,121,100,1) 0%, rgba(150,83,222,1) 100%);
background: -ms-linear-gradient(left, rgba(238,121,100,1) 0%, rgba(150,83,222,1) 100%);
background: linear-gradient(to right, rgba(238,121,100,1) 0%, rgba(150,83,222,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee7964', endColorstr='#9653de', GradientType=1 );
} */

/* .employee_other_detail_inner .employee_other_detail_item:nth-child(odd) .employee_other_detail_btn {
    background: rgba(150,83,222,1);
    background: -moz-linear-gradient(left, rgba(150,83,222,1) 0%, rgba(238,121,100,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(150,83,222,1)), color-stop(100%, rgba(238,121,100,1)));
    background: -webkit-linear-gradient(left, rgba(150,83,222,1) 0%, rgba(238,121,100,1) 100%);
    background: -o-linear-gradient(left, rgba(150,83,222,1) 0%, rgba(238,121,100,1) 100%);
    background: -ms-linear-gradient(left, rgba(150,83,222,1) 0%, rgba(238,121,100,1) 100%);
    background: linear-gradient(to right, rgba(150,83,222,1) 0%, rgba(238,121,100,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9653de', endColorstr='#ee7964', GradientType=1 );
} */
.file_btn_grp {
    display: flex;
    align-items: center;
}

.file_btn_grp>a {
    display: flex;
    align-items: center;
}

.file_btn_grp svg {
    width: 30px;
    fill: #fff;
}

.join_premium_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.5);
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join_premium_modal_inner {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    padding: 30px;
    position: relative;
    font-weight: normal;
    text-align: center;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);

}

.join_premium_modal_inner a {
    width: 20px;
    display: flex;
    position: absolute;
    right: 10px;
    top: 10px;
}
.join_premium_modal_inner a svg {
    fill: #21f710;
}


.join_premium_modal_inner h3 {
    font-size: 25px;
    font-weight: 600;
    margin: 12px 0;
}

.join_premium_modal_inner img {
    width: 100%;
}

@media screen and (max-width:767px) {

    .company_detail_box>.row>div,
    .company_subs_detail_box>.row>div {
        width: 100%;
    }
}

/* box-shadow: 0px 0px 15px 1px #888888; */
/* 
.radius{
    border-radius: 10px;
    box-shadow:0 0 10px rgb(0 0 0 / 20%)
} */

.title{
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.thBack{
    background-color: #ff4545;
}