/* Global */
* {
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box;
}
a {
    cursor: pointer;
}
body {
    margin: 0;
    overflow-y: scroll;
}
flex {
    display: flex;
}
grid {
    display: grid;
}
.mirror {
    transform: rotate(180deg);
}
wrapper {
    display: flex;
    flex-direction: column;
}
.one_line_clip, .post_title, .post_head span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.grid_column_2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid_column_6 {
    grid-template-columns: repeat(6, 1fr);
}
.grid_column_7 {
    grid-template-columns: repeat(7, 1fr);
}
.border_1px {
    border: 1px solid;
}
.border_2px {
    border: 2px solid;
}
.border_radius_none {
    border-radius: none!important;
}
.dynamic_height {
    overflow-y: auto;
}
.dynamic_height::-webkit-scrollbar {
    width: 0;
}
.dynamic_height::-webkit-scrollbar-thumb  {
    background: #ddd;
}
.archive_sidebar {
    overflow-y: hidden;
    border-right: 6px solid #fff;
}
.details_wrapper {
    position: relative;
    justify-content: end;
}
.campaigns [tab_id="details"] .list, .campaigns [tab_id="gigs"] .list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.campaigns [tab_id="details"] .item , .campaigns [tab_id="gigs"] .item {
    padding: 10px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.campaigns [tab_id="details"] .item:hover, .campaigns [tab_id="gigs"] .item:hover {
    border: 1px solid #ccc;
    background: #eeeeee44;
    border-radius: 10px;
}
.campaigns [tab_id="details"] h3, .campaigns [tab_id="gigs"] h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0;                        
}                    
.campaigns [tab_id="details"] span, .campaigns [tab_id="gigs"] span {
    font-size: 13px;
    line-height: 18px;
}
.campaigns [tab_id="details"] .details_list_wrapper {
    /*position: absolute;*/
    /*left: 0;*/
    /*z-index: 4;*/
    background: #fff;
    /*align-self: stretch;*/
    padding: 10px;
    /*transition: ease 400ms;*/
    /*transition-delay: 100ms;*/
    height: 100%;
}
.campaigns [tab_id="details"] .details_list_wrapper.strink {
    max-width: 252px;
    transition: ease 400ms;
    transition-delay: 100ms;                        
}
.campaigns [tab_id="details"] .campaign_details_map_wrapper {
    /*flex: 0 0 700px;*/
    /*max-width: 700px;*/
    flex: 1;
    background: #fff;
    padding: 10px;
}
.campaigns.collapsed [tab_id="details"] .campaign_details_map_wrapper {
    flex: 0 0 840px;
    max-width: 840px;
}
.campaign_details_map_wrapper, .campaign_details_map_wrapper #campaign_map {
    transition: ease 400ms;
    transition-delay: 100ms;
    /*z-index: 0;*/
}
.rating {
    fill: #ffb200
}
.one_line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gig_progress_wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.gig_progress_wrapper grid {
    grid-template-columns: repeat(auto-fit, minmax(135px,1fr)); 
    gap: 5px;
}
.gig_progress_wrapper p {
    margin: 0 0;
    font-size: 10.5px;
    line-height: 15px;
    order: 2;
}
.gig_progress {
    border: 1px solid #ccc;
    border-radius: 10px;
    /*background: #f5f8fa;*/
    padding: 16px;
}
.gig_details {
    gap: 25px; 
    padding: 0 0 20px;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}
.gig_details .map_basic_details {
    display: flex;
    gap: 15px;
    flex-direction: column;
    flex: 1;
}
.gig_details #map {
    flex: 1;
    border-radius: 15px;
    margin-bottom: 0!important;
    max-height: 257px;
}
.gig_terms p {
    margin: 0;
}
.gig_terms h3 {
    margin: 13px 0;
}
.gig_terms ol {
    padding: 0 32px!important;
}
.gig_terms li {
    line-height: 28px;
}
.gig_progress_wrapper .analytics div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 1px solid #c4c4c4;
    border-radius: 10px;
    /*background: #f5f8fa;*/
    font-size: 30px;
    line-height: 26px;
    gap: 5px;
    justify-content: center;
}
.analytics .span_large {
    grid-column: span 2; /* Span 2 columns */
    grid-row: span 2; /* Span 2 rows */
    font-size: 40px!important;
    line-height: 40px!important;
}
progress {
  /* General progress bar styles */
  width: 100%;
  height: 15px;
  border: none;
  background: #e0e0e0; /* Background color of the progress bar */
  border-radius: 0; /* Optional rounded corners */
  overflow: hidden;
}

/* For WebKit browsers (Chrome, Safari) */
progress::-webkit-progress-bar {
  background: #e0e0e0; /* Background of the entire progress bar */
}

progress::-webkit-progress-value {
  background: linear-gradient(to right, #ffc000, #ff9c00); /* Progress indicator color */
}

/* For Firefox */
progress::-moz-progress-bar {
  background: linear-gradient(to right, #ffc000, #ff9c00); /* Progress indicator color */
}
.user_rating_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #bbb;
    background: #f0f1f3;
    padding: 18px;
    gap: 7px;
    align-self: start;
}
.rating_summary {
    display: flex;
    gap: 5px;
    align-items: center;
}
.user_rating_card .rating_num {
    font-size: 36px;
    font-weight: 700;
}
.loaded .archive_sidebar {
    overflow-y: auto;
    border-right: 1px solid #ddd;
}
.loaded .archive_sidebar::-webkit-scrollbar {
    width: 5px;
}
.loaded .archive_sidebar::-webkit-scrollbar-thumb  {
    background: #ddd;
}
:focus-within {
    outline: none;
    /*border: none;*/
}
.flex {
    display: flex;
}
.align_items_center {
    align-items: center;
}
.justify_content_space_between {
    justify-content: space-between;
}
.justify_content_center {
    justify-content: center;
}
.user_select_none {
    user-select: none;
}
.capitalize {
    text-transform: capitalize;
}
.uppercase {
    text-transform: uppercase;
}
option {
    background: #fff;
}
.gap_5 {
    gap: 5px;
}
.gap_15 {
    gap: 15px;
}
.gap_25 {
    gap: 25px;
}
.gap_30 {
    gap: 30px;
}
.width_fit_content {
    width: fit-content;
}
.cursor_pointer {
    cursor: pointer;
}
.color_white {
    color: #fff;
}
.flex_1 {
    flex: 1;
}
.filter_invert {
    filter: invert(1);
}
#active-filter-list {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    width: 100%;
    overflow-y: hidden;
    margin: 10px 0 0;
    scrollbar-width: thin
}
.remove_all_active_filters, .active_filter {
    background: #fff;
    border: 1px solid #ccc;
    line-height: 1.6;
    padding: 2px 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 500px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 500;
    flex: 0 0 max-content;
}
.remove_btn {
    height: 13px;
    display: flex;
    width: 13px;
    align-items: center;
    gap: 0;
    justify-content: center;
    background: #ffffff;
    border-radius: 500px;
    transition: ease-in-out 200ms;
    cursor: pointer;
}
.remove_btn:hover {
    background: #ddd;
}
.object_fit_contain {
    object-fit: contain;
}
.show_popup {
    display: block !important;
    z-index: 50000000 !important;
}
.back_btn img {
    width: 25px;
    height: 25px;
    rotate: 90deg; 
}
close {
    display: flex;
    padding: 15px;
    border-radius: 500px;
    width: fit-content;
    position: absolute;
    right: 7px;
    top: 7px;
    cursor: pointer;
}
close img {
    filter: invert(1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13px;
    height: 13px;
    object-fit: contain;
}
.user_profile_img {
    border-radius: 500px;
    object-fit: cover;
    object-position: center;
}
.task_counter, .rating_counter {
    display: block; 
    font-weight: 600; 
    margin-bottom: 20px;
}
.user_task_item .profile_pic, .user_payment_item .profile_pic {
    width: 25px!important;
    height: 25px!important;
    flex: 0 0 25px!important;
}
.profile_pic {
    border-radius: 500px;
    object-fit: cover;
}
main_nav_sidebar .profile_pic {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    /*width: auto;*/
    /*height: 10px;*/
    /*flex: 0 0 25px;*/
    /*max-height: 21px;*/
    /*aspect-ratio: 1 / 1;*/
}
.sml {
    font-size: 13px;
    line-height: 13px;
}
.explainer, .explainer span, .explainer a {
    font-size: 12px;
    line-height: 22px;
}
.task_type {
    align-self: center;
}
.user_task_item, .user_payment_item  {
    justify-content: space-between;
}
.user_task_item .selector-wrapper, .user_payment_item .selector-wrapper {
    align-self: end;
}
.user_task_item .item_details_info {
    flex: 0 0 100%!important; 
    flex-direction: column; 
    margin: 5px 0;
}
.task_list_wrapper, .payment_list_wrapper {
    gap: 30px;
}
.user_profile_img.sml {
    flex: 0 0 30px!important;
    width: 30px!important;
    height: 30px!important;
}
#backButton svg {
    width: 18px;
    height: 18px;
}
#backButton .user_profile_img {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
}
#backButton .post_title {
    font-weight: 600;
    font-size: 13px;
}
#backButton .description {
    font-size: 11px;
}
#backButton .details {
    flex-direction: column;
}
#backButton span {
    line-height: 16px;
}
#backbutton {
    align-items: center ;
    gap: 10px;
    cursor: pointer;
    border-radius: 500px;
    width: fit-content;
    padding: 4px 15px 4px 10px; 
    transition: ease 200ms;
}
#backbutton:hover {
    background : #eee;
}
.main_sidebar item h3, .profile_img_menu h3  {
    font-size: 19px;
    font-weight: 700;
    flex: 1;
}
.main_sidebar .sidebar_item_title {
    justify-content: space-between;
    align-items: start;
    gap: 10px;
    padding: 15px;
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #ddd;
}
.icon_wrap {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item_info .trash {
    width: 17px;
    height: 17px;
}
.add_lead {
    align-items: center;
    display: flex;
}
/* Maps */
.main_sidebar #map, .main_sidebar #this-map {
    max-height: 180px;
    display: none;
}
#map{
    min-height: 230px;
}
#campaign_map { 
    height: 250px; 
    width: 100%;
    border-radius: 15px;
}
.leaflet-popup-content {
    margin: 0 0!important;
    font-size: 12px;
    line-height: 15px;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    color: #000!important;
    box-shadow: 0 0 10px #00000033!important;
}
.leaflet-popup-content-wrapper {
    border-radius: 5px!important;
    padding: 5px 12px!important;
    text-align: center!important;
}
.leaflet-container a.leaflet-popup-close-button {
    display: none!important;
}
.leaflet-popup {
    bottom: 0!important;
}
.leaflet-touch .leaflet-control-attribution, .leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
    display: none!important;
}
.leaflet-popup-tip-container {
    width: 21px!important;
    height: 12px!important;
    position: absolute;
    left: 50%;
    margin-left: 0!important;
    transform: translateX(-50%)!important;
    z-index: 1;
    margin-top: -1px!important;
}
.sidebar_details_info{
    width: 100%;
    /*margin-bottom: 20px;*/
}
.sidebar_item_details{
    border-bottom: 0px !important;
}
/*Map Styles*/
#map {
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 220px;
    width: 100%;
}
#this-map {
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 220px;
    width: 100%;
}
.gig_date_details a {
    color: #000;
    text-decoration: none;
}
#sms_form textarea {
    padding: 0px;
}
ol {
    padding-left: 18px;
}
.details_highlights {
    flex-wrap: wrap;
    gap: 5px;
}
.details_highlights span {
    display: flex;
    align-items: center;
    flex: 0 0 max-content;
    padding: 3px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
[tab_id="notes"] .sidebar_item_title {
    padding: 15px 10px;
    justify-content: space-between;
    position: fixed;
    width: 983px;
    margin-left: -20px;
    background: #fff;
    z-index: 100;
    margin-top: -21px;
    border-bottom: 1px solid #ccc;
}
main_nav_sidebar .role_switcher{
    position: fixed;
    border: none;
    bottom: 80px;
    left: 10px;
    box-shadow: 0 0 20px #00000022;
    min-width: 178px;
}

.role_switcher{
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 150px;
    padding: 0;
    font-size: 15px;
}
.role_switcher > select {    
    padding: 2px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border:none!important;
}
.sidebar_tabs_wrapper {
    display: flex;
    gap: 0;
    padding: 0px;
    border-bottom: 1px solid #ddd;
    margin: 0 -15px 0;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 10;
}
.sidebar_tab {
    height: 54px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ddd;
    cursor: pointer;
}
.sidebar_tab_content .add_task_form  .form_top_section {
    flex-direction: column;
    gap: 0;
}
.task_comment {
    background: #eee;
    border-radius: 7px;
    padding: 5px 10px;
    word-wrap: break-word;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 7px;
}
.sidebar_tab_content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 0;
    width: 0;
}
.sidebar_tab_content.active {
    height: auto;
    opacity: 1;
    visibility: visible!important;
    z-index: 1;
    position: relative;
    width: 100%;
    order: -1;
}
.sidebar_tabs {
    padding-top: 54px;
    gap: 20px;
    flex-direction: column;
    height: 100%;
    /*overflow: hidden;*/
}
.sidebar_tab:hover:not(.sidebar_tab.active) {
    background: #eeeeee55;
}
.sidebar_tab.active {
    background: #eee;
}
.sidebar_collapsed .main_sidebar {
    flex: 0 0 55px;
}
.sidebar_collapsed .sidebar_tabs_wrapper {
    flex-direction: column;
}
.sidebar_collapsed .sidebar_tabs_wrapper .sidebar_tab:first-child {
    border-bottom: 1px solid #ddd;
}
.sidebar_collapsed .sidebar_tab_content {
    display: none;
}
edit {
    border-radius: 500px;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    width: fit-content;
    position: absolute;
    right: 0px;
    bottom: 0px;
}
edit img {
    display: flex;
    filter: invert(1);
    width: 13px;
    height: 13px;
    object-fit: contain;
    padding: 2px;
}

.alt_cta[disabled], button[disabled], .cta[disabled] {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}
.delete_btn {   
    background: #ff0000bd !important;
    border-color: #ff0000bd !important;
}
nav ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 20px;
    justify-content: space-between;
    border-bottom: 1px solid #aaa;
    max-width: 700px;
}
nav ul li {
    padding: 10px;
}
nav ul li.active {
    border-bottom: 4px solid #000;
}
/* Header */
/* .logo { */
    /*animation: 6s bounce 1s infinite alternate;*/
/* } */
.main_logo {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}
@media (min-width: 768px) {
    .hide_desktop {
        display: none !important;
    }
}
@keyframes bounce {
    0% {
        transform: translatey(0px);
    }
    25% {
        transform: translatey(5px);
    }    
    50% {
        transform: translatey(0px);
    }
    75% {
        transform: translatey(5px);
    }    
    100% {
        transform: translatey(0px);
    }
}
topheader h1 {
    margin:  0 0 0 0;
}
topheader {
    position: sticky;
    top: 0;
}
topheader .hcta {
    display: flex;
    background: #ffffff;
    color: #000;
    padding: 10px 13px;
    font-size: 17px;
    border-radius: 12px;
    font-weight: 600;
    align-self: stretch;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.head_flex {
    padding: 5px 15px 5px 15px;
}
.header_right {
    display: flex;
    flex: 1;
    justify-content: space-between;
}
.headersearch {
    display: flex;
}
.headersearch form {
    display: flex;
    border-radius: 12px;
    font-size: 16px;
    flex: 1;
    margin-bottom: 0;
    max-width: 600px;
    background: #ffffff36;
}
.headersearch form [type=submit] {
    border: none;
    background: transparent;
    padding: 13px 15px;
    border-radius: 0 8px 8px 0;
    width: fit-content;
}
.headersearch form input {
    border: none;
    font-size: 15px;
    background: transparent;
    padding: 13px 15px 13px 0px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.my_account_btn_header.dp_active img {
    transform: rotate(180deg);
} 
.headersearch form:focus-within{
    background: #fff;    
}
.headersearch form:focus-within input {
    color: #000;
}
.headersearch form:focus-within input::placeholder {
    color: #777;
}
.headersearch form:focus-within [type=submit] img {
    filter: invert(0);
}
.headersearch .has_value input {
    color: #ffffffe3;
}
.headersearch form input::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #777;
}
.header_logo_section {
    align-items: center;
    justify-content: center;
}

/* Main_nav_sidebar */
main_nav_sidebar .tooltip {
    display: none!important;
    left: 54px!important;
}
.collapsed main_nav_sidebar .tooltip {
    display: block!important;
}
.tooltip {
    background: #000000cc!important;
}
.tooltip-right:before {
border-color:transparent #000000cc transparent transparent!important; 
}
.tooltip-left:before {
border-color:transparent transparent transparent #000000cc!important;
}
container {
    padding: 35px 40px;
    display: block;
}
h2 {
    font-weight: 700;
    font-size: 28px;
}
sitewrap {
    flex: 1;
}
page_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 20px 0;
}
main {
    display: block;
}
main_container {
    display: block;
}
main::-webkit-scrollbar {
    background: #fff;
    width: 10px;
}
main::-webkit-scrollbar-thumb {
    background: #999;
    border-top: 60px solid transparent;
}
main::-webkit-scrollbar-track {
    border-top: 60px solid transparent;
}

/* Stretch Section CSS */
.main_notes_wrapper {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.main_notes_wrapper .section {
    display: flex;
    justify-content: start;
    align-items: start;
    user-select: none;
    color: #999;
    min-height: 100%;
}

[data-section="top"] {
    background: #fff;
    overflow: hidden;
    position: relative;
}

[data-section="bottom"] {
    background: #fff;
    overflow: hidden;
    position: relative;
}

[data-divider] {
    height: 13px;
    background: linear-gradient(to right, #fff, #dfdfdf, #fff);
    cursor: row-resize;
    position: relative;
}
[data-divider]:after {
    content: '';
    display: flex;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    width: 151px;
    height: 13px;
    align-items: center;
    justify-content: center;
    background: #2c4efd;
    border-radius: 500px;
    margin-top: -3px;
    transition: ease 300ms;
}
[data-divider]:after {
    content: '';
    display: flex;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    width: 151px;
    height: 12px;
    align-items: center;
    justify-content: center;
    background: #2c4efd;
    border-radius: 500px;
    margin-top: 0px;
    transition: ease 300ms;
}
[data-divider]:before {
    content: '';
    display: flex;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    width: 90px;
    height: 2px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 500px;
    margin-top: 5px;
    z-index: 1;
}
/**/
/*Form Styles*/
.ccform .cta {
    border: none;
    padding: 16px 32px;
    margin-top: 30px;
}
.ccform label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
form flex {
    gap: 15px;
}
form flex div {
    flex: 1;
    margin: 10px 0;
}
.search_form {
    border: 1px solid #ddd;
    border-radius: 7px;
    justify-content: space-between;
}
.search_form input {
    border: none;
}
.search_form button {
    background: transparent;
    border: none;
    padding: 10px 25px;
}
#gig_popup {
    z-index: 5000000000000000000000;
}
/*End of Form Styles*/

/*Filter Bar Styles*/
.filter_bar {
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
}
.clear-filters {
    position: absolute!important;
    z-index: 1;
    margin-left: -15px;
    background: #eee;
    border-radius: 500px;
    padding: 4px!important;
    height: 13px;
    width: 13px;
    display: flex; 
    align-items: center;
    justify-content: center;
}
filters {
    display: flex;
    gap: 15px;
    font-size: 15px;
    text-decoration: none;
    text-transform: capitalize;
    align-items: center;
    position: relative;
}
.filter_bar a {
    color: #2271b1;
    text-decoration: none;
    padding: 5px 13px;
    border-radius: 8px;
}
.filter_bar a.active {
    color: #000;
    box-shadow: 0 0 0 1px #000;
    background: #fff;
    font-weight: 700;
}
/*End of Filter Bar Styles*/

/*.filter_invert {*/
/*    filter: invert(1);*/
/*}*/
select:focus-visible {
    outline: none !important;
    /*border: none!important;*/
}
.user_row section {
    gap: 5px!important;
}
#signups .user_row > section:nth-last-child(-n+6) {
    border-bottom: none!important;
}
update-notice {
    display: none;
    background: #0ecd98;
    border-radius: 10px;
    color: #fff;
    position: fixed;
    bottom: 15px;
    left: 15px;
    padding: 5px 25px;
    font-weight: 700;
    z-index: 1000000000;
}

/*Select Styles*/
.status_select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    width: fit-content;
    /*padding: 10px 14px;*/
    text-align: start;
    min-width: 185px;
    text-transform: capitalize;
    cursor: pointer;
}
.status_select selectwrap {
    position: relative;
    display: flex;        
    align-items: center;
}
.input_wrap p {
    margin-bottom: 0;
}
selectwrap {
    position: relative;
    display: flex;        
    align-items: center;
}
selectwrap.active:after {
    content: '';
    background: url(https://transcrillo.com/chevron-down.svg);
    background-size: contain;
    width: 15px;
    height: 15px;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    transition: ease 300ms;
    transform-origin: center center;
    position: absolute;
    right: 20px;
    transform: scaley(-1);
    pointer-events: none;
}
selectwrap::after {
    content: '';
    background: url(https://transcrillo.com/chevron-down.svg);
    background-size: contain;
    width: 15px;
    height: 15px;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    transition: ease 300ms;
    transform-origin: center center;
    position: absolute;
    right: 20px;
    pointer-events: none;
}
.status_select option {
    background-color: #fff;
    color: #000;
    /*text-align: left;*/
}
.item_status {
    padding: 5px 9px;
    border-radius: 5px;
    line-height: 10.5px;
    font-size: 10.5px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-weight: 500;
    width: max-content;
    flex: 0 0 max-content;
    gap: 6px;
}
.task_list {
    flex-direction: row;
    margin: 0 0;
    gap: 5px;
}
.task_list .task {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    line-height: 11px;
    background: #eee;
    padding: 5px 8px;
    border-radius: 5px;
}
.task_list .task span {
    font-size: 11px;
    line-height: 11px;
    text-transform: capitalize;
    font-weight: 700;
}
.pay_amount {
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 11px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-weight: 700;
    width: max-content;
    flex: 0 0 max-content;
    gap: 6px;
    background: #bcffd6;
}
.selector-wrapper {
    position: relative;
}
.selector-wrapper:after {
    content: '';
    background: url(https://cdn-icons-png.flaticon.com/128/9126/9126125.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: right center;
    display: flex;
    position: absolute;
    z-index: 26;
    width: 12px;
    height: 12px;
    right: 9px;
    transform: translatey(-50%);
    top: 50%;
    pointer-events: none;
}
.users .post_head .selector-wrapper:after {
    right: 0;
}
[tab_id="users"] .selector-wrapper:after, .tab_content .selector-wrapper:after {
    width: 10px;
    height: 10px;
    right: 5px;
    pointer-events: none;
}
.selector-wrapper.active:after {
    content: '';
    transform: translatey(-50%) rotate(-180deg);
}
[tab_id="users"] .selector-wrapper.active:after {
    width: 10px;
    height: 10px;
    right: 5px;
    pointer-events: none;
}
select.item_status {
    padding: 4px 30px 4px 9px;
    line-height: 13px;
    border: none!important;
}
.users .post_head select.item_status {
    font-size: 13px;
    line-height: 17px;
    padding: 0 0 0 7px;
    border-radius: 9px;
    font-weight: 600;
}
.item_status {
    background: #eee;
}
.users .post_head .item_status {
    border-radius: 10px;
}
.in-progress,[status="in progress"] {
    background: #ccffde;
}
.item_status.complete, .completed,[status="completed"],[status="complete"] {
    background: #80e085;
}
.item_status.cancelled,[status="cancelled"] {
    background: #ffa4a4;
}
.admin,[status="admin"] {
    background: #008aff40;
}
.distributor,[status="distributor"] {
    background: #0100ff2b;
}
.needs-approval, [status="needs approval"] {
    background: #ffcf95;
}
.needs-attention, [status="needs attention"] {
    background: #ffb28b;
}
.checked-in,[status="checked-in"] {
    background: #f3ffa3;
}
.confirmations, [status="confirmations"] {
    background: #ffd967;
}
.confirmed, [status="confirmed"] {
    /*background: #bcfff5;*/
    background: #ebff8b;
}
.customer,[status="customer"] {
    background: #00ff884a;
}
.needs-signups, [status="needs signups"] {
    background: #ffcb9e;
}
.starting-soon, [status="starting soon"] {
    background: #fff5ac;
}
.requested,[status="requested"] {
    background: #ffe092;
}
.paid,[status="paid"] {
    background: #00ff338a;
}
.pending,[status="pending"] {
    background: #ffa50066;
}
.draft,[status="draft"] {
    background: #c9c6d4;
}
.declined,[status="declined"] {
    background: #ff460080;
}
.confirmed,[status="confirmed"] {
    background: #c6ecff;
}
.recruiting, [status="recruiting"] {
    background: #ffd4a0;
}
.no-show,[status="no-show"] {
    background: #ff4d4d;
}
.applied,[status="applied"] {
    background: #ebd9ff;
}
.waiting,[status="waiting"] {
    background: #ffcb82;
}
.on-hold,[status='on hold'] {
    background: #ffa997;
}
.declined,[status='declined'] {
    background: #eba3a3;
}
.created,[status='created'] {
    background: #eee;
}
.sent,[status='sent'] {
    background: #f1f0e8;
}
.approved,[status='approved'] {
    background: #d8ff98;
}
.header_grid_wrap {
    width: 100%;
    position: sticky!important;
    top: 0;
}
.user_row {
    padding-top: 0!important;
}

/******************************************************************************/
/*Tab Styles*/
tabs {
    display: flex;
    cursor: pointer;
    margin: 15px 0;
    gap: 10px;
}
tabs a {
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    border: 1px solid #000;
    font-weight: 600;
    text-decoration: none;
}
/*End of Tab Styles*/

/******************************************************************************/
/*GALLERY MODAL JS STYLES*/
#image-container, #another-image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.thumbnail {
    width: 100px;
    height: 100px;
    cursor: pointer;
    object-fit: cover;
}
#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    backdrop-filter: blur(25px);
    z-index: 10000000;
}
#popup.hidden {
    display: none;
}
#popup img {
    /*max-width: 80%;*/
    /*max-height: 80%;*/
    max-height: 600px;
}
/*#download_btn {*/
/*    background: #fff;*/
/*    padding: 5px;*/
/*}*/
#navigation {
    display: flex;
    gap: 10px;
}
#navigation #download_btn {
    position: fixed;
    bottom: 15px;
    right: 25px;
}
#navigation #prev {
    position: fixed;
    top: 50%;
    left: 25px;
    transform: translate(0, -50%);
}
#navigation #next {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translate(0, -50%);
}
#close {
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.chev-nav-btn {
    background: transparent;
    border: none;
    padding: 10px;
}
.chev-nav-btn:hover,  #close:hover {
    background: #fbfbfb3d;
}
.chev-nav-btn img {
    filter: invert(1);
}
#prev.chev-nav-btn img {
    rotate: 90deg;
}
#next.chev-nav-btn img {
    rotate: -90deg;
}

/******************************************************************************/
/*SMS Styles*/

/******************************************************************************/
/*Notes Styles*/
.notes-down-button {
    position: sticky;
    bottom: 100px;
    margin: auto;
    background-color: #ffffff6e;
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 10px #00000033;
    display: none;
    transition: 300ms ease;
    animation: pop_down_btn 1s forwards;
}
.notes-down-button-wrapper {
    position: fixed;
    bottom: 100px;
    margin-left: -20px;
    z-index: 1;
}
.sidebar_notes .notes-down-button-wrapper {
    position: static;
}
.main_sidebar .notes-down-button {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    animation: none;
}
@keyframes pop_down_btn {
    from {
        transform: translatey(-20px);
    }
    50% {
        transform: translatey(10px);
    }
    from {
        transform: translatey(0);
    }    
}
.notes-down-button:hover {
    background-color: #ffffff;
    opacity: 1;
}
.notes_toggle_wrapper {
    position: sticky;
    display: flex;
    justify-content: end;
    top: 0;
    z-index: 1;
}
.notes_toggle {
    box-shadow: 0 0 10px #00000022;
    background: #fff;
    border-radius: 500px;
    display: flex;
    width: max-content;
    gap: 0;
    align-items: center;
    padding: 5px;
    z-index: 1;
    animation: pop_down_btn 1s forwards;
}
.notes_toggle .notes_toggle_btn {
    width: max-content;
    flex: 0 0 max-content;
    padding: 3px 10px;
    display: flex;
    border-radius: 500px;
    background: #fff;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
}
.notes_toggle .notes_toggle_btn.active {
    background: #eee;
    color: #000;
}
notes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
note {
    color: #000;
    padding: 0;
    font-size: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    position: relative;
    z-index: 0;
}
note .note_head {
    display: block;
    width: 100%;
}
note a {
    color: blue;
}
note author, note author div:first-child {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
note author {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 3px;
    position: relative;
}
.note_actions {
    display: none;
    height: 50%;
    width: fit-content;
    bottom: 0;
    padding: 3px;
    left: 0;
    z-index: 1;
    align-items: end;
}
.note_actions flex {
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00000022;
    gap: 2px;
    top: 25px;
    left: 10px;
    height: fit-content;
}
.note_actions span {
    font-size: 11px;
    line-height: 11px;
    border-radius: 6px;
    transition: ease 200ms;
    padding: 5px 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    cursor: pointer;
    text-transform: capitalize;
}
.note_actions span:hover {
    background: #eee;
}
.note_actions.show_popup {
    display: flex!important;
}
.note_actions_toggle {
    display: flex;
    cursor: pointer;
}
.notes-search-input-wrapper {
    display: none;
}
body.notes .sidebar_notes {
    display: none;
}
/*#page-notes-sidebar {*/
/*    width: 300px;*/
/*    float: left;*/
/*    padding: 10px;*/
/*    background: #f9f9f9;*/
/*    border-right: 1px solid #ddd;*/
/*    margin-right: 10px;*/
/*}*/
#search-connections {
    font-size: 1em;
    margin-bottom: 15px;
}
[tab_id="chats"] .list_wrapper {
	position: fixed;
	background: #fff;
	margin-bottom: 25px;
	z-index: 1;
	margin-top: -5px;
	border-radius: 0;
	margin-left: 0px;
	border-left: none;
	border-top: none;
	border-right: none;
	box-shadow: 0 0 15px #00000011;
	clip-path: inset(-1px 0 -50px 0);
	margin-left:-20px;
	margin-top: -27px;
	padding-top: 7px;
}
[tab_id="chats"] .list_wrapper .list {
    margin: 5px;
}
[tab_id="preview"] .list_wrapper .list {
    max-height: 100%;
}
.user_tab_content .list {
    max-height: auto;
    overflow-y: inherit;
}
.user_tab_content msgbox {
    padding-bottom: 50px;
}
.list_wrapper .list {
    max-height: 600px;
    overflow-y: auto;
}
.list_wrapper .list::-webkit-scrollbar {
    width: 5px;
}
.list_wrapper .list::-webkit-scrollbar-thumb {
    background: #ddd;
}
[tab_id="chats"] .list_wrapper .list_title {
    justify-content: space-between;
    padding: 0 15px 0 0;
}
[tab_id="chats"] .list_wrapper .list_title .icon_wrap.toggle {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    opacity: 0;
}
[tab_id="chats"] #selected_item {
   width: 100%; 
}
[tab_id="chats"] .list_title .contact_item {
    position: relative;
    padding: 10px 0 10px 20px;
}
[tab_id="chats"] .list_title .contact_item:hover {
    background: none;
}
.images_grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
    gap: 10px;
}
.images_grid img {
    width: 120px;
    height: 120px;
}
.add_gig_user_imgs {
    border: 2px dashed #ccc;
    padding: 20px;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 25px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    position: relative;
}
.add_gig_user_imgs .icon_wrapper, .add_payment_form .icon_wrapper, .rating_form .icon_wrapper, .add_task_form .icon_wrapper {
    position: absolute;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 7px;
    top: 7px;
    border-radius: 500px;
    transition: ease 200ms;
    opacity: .7;
}
.add_gig_user_imgs .icon_wrapper:hover, .add_payment_form .icon_wrapper:hover, .rating_form .icon_wrapper:hover,.add_task_form .icon_wrapper:hover {
    background: #eee;   
    opacity: 1;
}
.add_gig_user_imgs.show_popup {
    display: flex!important;
}
.agui_title {
    font-size: 19px;
    font-weight: 600px;
}
.selectize-input {
    box-shadow: none!important;
    -webkit-box-shadow: none!important;
    display: flex!important;
    flex-wrap: wrap;
    border-radius: 7px!important;
    gap: 5px;
}
.selectize-control.multi .selectize-input.has-items  {
    padding: 10px !important;
}
.selectize-control.single .selectize-input {
    padding: 4px 8px !important;  /* Adjust vertical and horizontal padding */
    min-height: auto !important;  /* Optional: remove default min-height */
    font-size: 14px;              /* Optional: smaller font */
}

.selectize-dropdown .option {
    padding: 4px 8px !important;  /* Dropdown option padding */
    font-size: 14px;
}

/* Fade-in animation */
@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.user_payment_item {
    opacity: 0;
    animation: fadein 1s ease-out forwards;
}

.add_payment_form,.add_task_form {
    display: none;
    position: relative;
}
.add_payment_form.show_popup, .add_task_form.show_popup {
    display: flex!important;
    flex-direction: column;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 15px 15px;
}
.add_payment_form .item_status,.add_task_form .item_status {
    align-self: center;
}
[utabc="pay"] .add_payment.dp_active,[utabc="tasks"] .add_task.dp_active {
    display: none;
}
.add_payment_form [contenteditable="true"], .add_payment_form input, .add_payment_form [type=date], .add_payment_form [type=time], .add_payment_form select,.add_task_form [contenteditable="true"], .add_task_form input, .add_task_form [type=date], .add_task_form [type=time], .add_task_form select {
    border: 1px solid #aaa!important;
    border-radius: 8px!important;
    padding: 10px;
    font-size: 13px;
    display: flex;
    gap: 5px;
    align-items: center;
}
#pay_amount {
    font-size: 15px;
}
.add_payment_form #pay_amount:before {
    content: '$';
    font-weight: 500;
    font-size: 16px;
}
.task_div {
    display: flex;
    justify-content: space-between;
    /*opacity: .6;*/
    border: 1px solid #eee;
    padding: 7px 10px;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    transition: ease 100ms;
}
.task_div:hover {
    background: #edf3f644;
}
.task_div.selected {
    opacity: 1;
    border: 1px solid #ccc;
    background: #edf3f68c;
}
/* .no_results_wrap {
} */
.user_tab_content .add_content_btn.dp_active {
    display: none;
}
.list_wrapper.active .icon_wrap.toggle svg, .list_wrapper.toggle.active .icon {
    transform: rotate(-180deg)!important;
}
.user_flex {
    gap: 20px;
}
.user_list_flex {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: column;
    flex: 1;
}
.list_wrapper .list_title h3 {
    flex: 1;
    cursor: pointer;
    padding: 15px;
}
.list_wrapper .list_title {
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.list_wrapper.active .list_title {
    border-bottom: 1px solid #ddd;
}
.list_wrapper .list_title .icon_wrap {
    padding: 20px 10px;
}
[tab_id="users"] .list_wrapper .list_title .icon_wrap:last-child {
    padding: 20px 20px 20px 10px;
}
.list_wrapper .list_title .icon_wrap:last-child {
    padding: 6px;
}
.list_wrapper .list {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px 5px;
}
[tab_id="chat"] .list_wrapper .list{
    padding: 0 5px;
}
[tab_id="users"] .list_wrapper .list {
    padding: 0 0;
    max-height: 100%!important;
    gap: 0;
}
[tab_id="users"] .list_wrapper .list .item_info {
    margin-right: 8px;
}
[tab_id="users"] .list_wrapper .list .contact_item.active {
    background: #f5f5f5;
}
[tab_id="users"] .list_wrapper .list .contact_item {
    border-radius: 0;
}
[tab_id="users"] .list_wrapper .list .contact_item:not(:last-child) {
    border-bottom: 1px solid #e9e9e9;
}
[tab_id="users"] .list_wrapper .list .contact_item:last-child {
    border-radius: 0 0 10px 10px;
}
[tab_id="users"] .list_wrapper .list .contact_item .update_status {
    max-height: 190px;
    overflow-y: auto;
    overflow-x: hidden;
}
[tab_id="users"] .list_wrapper .list .contact_item .update_status::-webkit-scrollbar {
    width: 5px;
}
[tab_id="users"] .list_wrapper .list .contact_item .update_status::-webkit-scrollbar-thumb {
    background: #ddd;
}
.list .contact_item .icon_wrap {
    padding: 10px;
}
.list .contact_item .status_update_wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 5px;
}
.custom_scroll::-webkit-scrollbar {
    width: 5px;
}
.custom_scroll::-webkit-scrollbar-thumb {
    background: #ddd;
}
.list_wrapper.active .list {
    display: flex;
}
.user_tab_content {
    display: none;
    flex-direction: column;
    padding: 15px 10px;
    max-height: 500px;
    overflow-y: scroll;
}
.user_tab_content::-webkit-scrollbar {
    width: 5px;
}
.user_tab_content::-webkit-scrollbar-thumb {
    background: #ddd;
}
.user_tab_content h3 {
    font-size: 15px!important;
    margin-bottom: 0;
}
.user_highlights {
    margin: 15px 0 0 0;
    /*padding: 0 0 0 18px;*/
}
/*.user_stat_wrap */
/*.user_tab_content[utabc="notes"],.user_tab_content[utabc="chats"] {*/
/*    padding: 15px 0 0 0;*/
/*}*/
.user_tab_content[utabc="notes"] .nothing-yet,.user_tab_content[utabc="chats"] .nothing-yet {
    padding: 20px 15px;
}
.user_tab_content[utabc="notes"] note {
    padding: 0 15px;
}
.user_tab_content.active {
    display: flex;
}
[tab_id="users"] h3 {
    font-size: 17px;
}
.list_wrapper {
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
}
.list_wrapper .icon_wrap {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}
.select_user_wrap {
    width: 100%;
    flex: 1;
}
.select_user_wrap .contact_item:hover {
    background: transparent;
}
.selected_gig_user {
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.user_tabs_wrapper {
    display: none;
}
.contact_item.active .user_tabs_wrapper {
    display: flex;
    background: #fff;
    border-radius: 5px;
    flex-direction: column;
    cursor: default;
}
.user_tabs {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 100%;
    border-bottom: 1px solid #ccc;
}
.user_tabs_scroll_wrap {
    width: 100%;
    overflow-x: scroll;
}
.user_tabs_scroll_wrap::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.user_tabs [user_tab] {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 18px;
    font-weight: 500;
    font-size: 13px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: ease 200ms;
}
.user_tabs [user_tab]:hover {
    border-bottom: 2px solid #ddd;
}
.user_tabs [user_tab].active {
    border-bottom: 2px solid #191e31;
}
.icon_wrapper, .filters a {
    padding: 5px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.chat_type_wrapper {
    align-items: center;
    flex: 1;
    justify-content: end;
    align-self: stretch;
}
.post_head .chat_type_wrapper {
    gap: 5px;
    padding: 0 10px;
}
.post_head .chat_type {
    padding: 0 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 500px;
    transition: ease 200ms;
}
.post_head .chat_type:hover {
    background: #eee;
}
.chat_type {
    padding: 10px 16px;
    cursor: pointer;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chat_type.active {
    background: #eee;
}
.messages .post_head.mini {
    padding: 0 0 0 17px;
}
[tab_id="chats"] msgbox {
    padding-top: 60px;
}
/*.note_actions_toggle:hover {*/
/*    visibility: visible;*/
/*}*/
note author span {
    font-size: 13px;
}
note flex {
    justify-content: start;
    gap: 10px;
}
note flex img {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    object-fit: cover;
}
.module-div > .form_input_msg_wrapper, .user_tab_content .form_input_msg_wrapper {
    position: sticky !important;
    bottom: -15px;
    margin-left: 0px !important;
    width: 100%!important;
    margin-bottom: -19px;
}
.module-div > .scroll_bottom{
    padding-bottom: 50px;
}
.nothing-yet {
    padding: 20px 0;
}
.note_content {
    border-radius: 7px;
    padding: 4px 10px;
    font-size: 13px;
    color: #000;
    line-height: 23px;
    background: #eee;
    width: fit-content;
    max-width: 92%;
    word-wrap: break-word;
    border: 1px solid #eee;
    transition: ease 200ms;
    position: relative;
}
.note_content span {
    font-size: 13px;
}
.own_note .note_content:hover,.own_note .note_content.dp_active  {
    background: #533afd11!important;
    border: 1px solid #533afd11;
}
.hidden {
    display: none;
}
/* Basic Dropdown Styling */
.notes_dropdown_menu, .ft_dropdown_menu {
    display: none;
    position: absolute;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0px 0 10px #00000022;
    margin-top: 5px;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    min-width: 100%;
    top: 44px;
    right: 0;
}
.notes_dropdown_menu ul, .ft_dropdown_menu ul {
 margin: 0;
 padding: 0;
 list-style: none;
}
.notes_dropdown_menu li, .ft_dropdown_menu li {
 padding: 5px 12px;
 font-size: 14px;
 font-weight: 500;
 cursor: pointer;
 transition: ease 200ms
}
.notes_dropdown_menu li:hover,  .ft_dropdown_menu li:hover {
 background-color: #eee;
}
.notes_dropdown_trigger {
 cursor: pointer;
 position: relative;
}
.notes_dropdown_menu.show {
 display: block; /* Show dropdown when active */
}
.read_more,.read_less {
 color: #533afd;
 border: none;
 font-size: 12px;
 cursor: pointer;
 border-radius: 10px;
 margin-top: 5px;
 padding: 5px 10px;
 /*padding: 0;*/
 /*background: #fff;*/
}
.write_message .write_message {
    border: 1px solid #533afd59;
    font-size: 13px;
    padding: 3px 9px;
    border-radius: 5px;
}
.write_message .write_message:focus-within {
    box-shadow: 0 0 0 1px #533afd59;
}
.write_message .write_message [contenteditable] {
    font-size: 13px;
}
.textarea[contenteditable] {
    height: 300px;
}
.profile_img_post {
    object-fit: cover;
    border-radius: 500px;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
}
.read_more_btn {
    display: none;
    border: none;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    background: transparent;
    padding: 10px 0 0 0;
}
.note_content.expanded {
    line-clamp: unset;
    -webkit-line-clamp: unset;
}
.p_shorten_3 {
    display: -webkit-box;        
    -webkit-box-orient: vertical;
    overflow: hidden;            
    text-overflow: ellipsis;     
    line-clamp: 3;               
    -webkit-line-clamp: 3;
}
.own_note .note_content {
    background: #e7e7e7!important;
    color: #000;
}
.own_note {
    margin-left: auto;
}
note time {
    font-size: 11px;
    flex: 0 0 fit-content;
    display: flex;
    justify-content: start;
}
.note_details {
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 5px;
}
.note-connections {
    display: flex;
    gap: 5px;
    width: 100%;
    overflow-x: auto;
}
.note-connections::-webkit-scrollbar {
    height: 3px;
}
.note-connections::-webkit-scrollbar-thumb {
    background: #ddd;
}
.note-connections a {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 3px;
    opacity: .6;
    color: #000!important;
    transition: ease 200ms;
    width: max-content;
    flex: 0 0 max-content;
}
.note-connections a:hover {
    opacity: 1;
    text-decoration: underline;
}
.note-connections a svg {
    width: 10px;
    height: 10px;
}
.sidebar_notes,[sidebar_tab_content="tasks"],[sidebar_tab_content="connections"] {
    display: flex;
    flex-direction: column;
    align-items: start;
    border: 1px solid #ccc;
    border-radius: 16px;
    transition: top 200ms ease;
    position: sticky;
}
[sidebar_tab_content="tasks"] .user_task_item {
    padding: 15px;
}
[sidebar_tab_content="tasks"] .add_task {
    position: absolute;
    right: 15px;
    top: 15px;
}
[sidebar_tab_content="tasks"] .add_task_form {
    margin: 15px auto;
    max-width: 94%;
}
.sidebar_notes notes {
    padding: 20px 15px;
    max-height: 400px;
}
.sidebar_notes notes::-webkit-scrollbar {
    width: 5px;
}
.sidebar_notes notes::-webkit-scrollbar-thumb {
    background: #ddd;
}
.sidebar_notes .form_input_msg_wrapper {
    background: transparent;
    padding: 15px 20px;
    position: relative; 
    border-top: 1px solid #ccc;
    width: 100%;
    margin-bottom: 0;
    box-shadow: 0 -12px 0 #fff;
}
.sidebar_title_flex {
    align-items: center;
    gap: 5px;
}
.sidebar_title_flex .note_conn {
    padding: 6px 6px;
    border-radius: 5px;
    transition: ease 200ms;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 9px;
    align-self: center;
    cursor: pointer;
    margin-bottom: -2px;
}
.sidebar_title_flex .note_conn:hover {
    background: #eee;
}
.main_sidebar .stats_wrap {
    flex: 0 0 100%;
}
.stats {
    /*margin-bottom: 40px;*/
    flex-wrap: wrap;
    gap: 20px;
}
.stats .sml_title {
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sml_title span {
    font-size: 13px;
    line-height: 14px;
    display: flex;
    gap: 7px;
    align-items: center;
}
.stats_wrap {
    flex: 0 0 400px;
}
.stats_wrap a {
    font-size: 14px;
    display: flex;
    width: 100%;
    justify-content: end;
    padding: 0 15px;
}
.stats_item {
    border-radius: 15px;
    border: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
}
.lrg_span {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    gap: 5px;
    line-height: 20px;
}
.add_stat {
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
}
.positive {
    color: green;
}
.negative {
    color: red;
}
.stats_item flex {
    padding: 25px;
    border-right: 1px solid #ddd;
}
.stats_item flex:nth-child(2) {
    flex: 1 1 auto;
    border-right: 0;
}
.stats_item flex:last-child,.stats_item flex:nth-child(4) {
    border-right: none;
}
.stats_item flex:nth-child(3),.stats_item flex:nth-child(4),.stats_item flex:nth-child(5) {
    border-top: 1px solid #ddd;
    flex: 1 1 auto;
}
/******************************************************************************/
.user-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    gap: 15px;
    position: relative;
}
.user-box a {
    color: #000;
    text-decoration: none;
}
.remove {
    position: absolute;
    top: 10px;
    right: 10px;
}
.head_flex .logo {
    display: none;
}
.collapse {
    opacity: .7;
    cursor: pointer;
}
.collapse:hover {
    opacity: 1;
}
/**/
.tab_content .license {
    max-height: 350px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 20px;
    max-width: 100%;
}
.tab_content .filters {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 12px;
    background: #eee;
    border-radius: 8px;
    width: 120px;
}
.tab_content .filter_options div{
    display: none;
}
.tab_content .filter_options div.active {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
}
.feed item a {
    color: blue;
    font-weight: 600;
    font-size: 14px;
}
.item_actions {
    gap: 20px;
    align-items: center;
    justify-content: start;
    padding: 20px 0;
}
.item_actions svg, .item_actions span {
    cursor: pointer;
}
.feed {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.feed item {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #ddd;
}
.feed item .date {
    font-size: 12px;
}
.feed item .details {
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}
.feed item p {
    margin: 0 0 7px;
}
.feed item .type {
    font-size: 11px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 6px;
    border-radius: 5px;
    background: #eee;
    line-height: 9px;
    width: max-content;
    flex: 0 0 max-content;
}
.feed item .profile_pic {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    object-fit: cover;
    border-radius: 500px;
}
.feed item h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 0;
}
.feed item item {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    width: 100%;
}
.feed item item .item_link {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.feed item span {
    line-height: 20px;
}
.post_head_title {
    flex: 1;
}
.post_actions {
    flex: 0 0 max-content;
    gap: 0!important;
}
.task_value_wrapper {
    gap: 0
}
.task_value_wrapper span {
    border-left: 1px solid #aaa; 
    border-bottom: 1px solid #aaa; 
    border-top: 1px solid #aaa; 
    border-radius: 8px 0 0 8px;
    padding: 10px;
    line-height: 13px;
}
.task_value_wrapper #task_value {
    border-radius: 0 8px 8px 0!important;
}
textarea {
    border: 1px solid #aaa!important;
}


.user-status-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000000;
}

.user-status-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.user-status-modal-dropdown {
    margin: 10px 0;
    padding: 5px;
    width: 100%;
}

.user-status-button-container {
    margin-top: 15px;
    display: flex;
    justify-content: end;
}

.user-status-confirm-button {
    margin-right: 10px;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.user-status-cancel-button {
    padding: 5px 10px;
    background-color: #f44336;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/******************************************************************************/
@media (max-width: 1583px) {
    /* .user_payment_item { */
        /*flex-direction: column;*/
    /* } */
    .user_payment_item .item_info {
        flex: 0 0 max-content;
    }
    .user_payment_item .details {
        flex: 1;
        overflow: hidden;
        
    }
    .item_details_info {
        margin: 5px 0;
    }
    .task_list {
        flex-wrap: wrap;
    }
    .task_list .task {
        flex: 0 0 max-content;
    }
    
}
@media (max-width: 1240px) {
    .gig_progress_wrapper {
        width: 100%;
        flex: 0 0 100%;
    }
    .post_actions .item_status {
        font-size: 10.5px!important;
        padding: 5px 19px 5px 7px!important;
        line-height: 15px!important;
        flex: 0 0 max-content;
    }
    .selector-wrapper:after,.selector-wrapper.active:after {
        right: 5px;
        width: 10px;
        height: 10px;
    }
}
@media (max-width: 900px) {
    main_nav_sidebar .profile_pic {
        /*width: 25px;*/
        /*height: 25px;*/
        /*flex: 0 0 25px;*/
        width: auto;
        height: 10px;
        flex: 0 0 25px;
        max-height: 21px;
        aspect-ratio: 1 / 1;
    }
    .role_switcher{
        width: 100px;
        bottom: 65px;
    }
    .head_flex > .distributor_right_menu {        
        /*width: 25%;*/
        justify-content: end;
    }
    .archive_sidebar {        
        height: 740px;
        transition: height 0.5s;
        overflow-y: auto;
        padding-bottom: 75px !important;
    }
    label {
        font-size: 11px !important;
    }
    label > span {
        font-size: 11px !important;
    }
    .head_flex > .right_menu {        
        /*width: 40%;*/
        justify-content: end;
        gap: 15px !important
    }
    .right_menu > .btn{
        /*font-size: 10px;*/
        padding: 5px 15px;
    }
    .flex_50_mobile {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .flex_100_mobile {
        flex-direction: column;
    }
    .user_rating_card {
        width: 100%;
    }
    .analytics .span_large {
        grid-column: span 1; /* Span 2 columns */
        grid-row: span 1; /* Span 2 rows */
        font-size: 30px!important;
        line-height: 26px!important;
    }
    [open_popup="post_actions"] {
        width: 30px;
    }
    .main-content {
        flex-direction: column;
    }
    .form_input_msg_wrapper {
        bottom: 120px;
    }    
    .add_payment_form .flex:first-child {
        flex-wrap: wrap;
    }
    .add_payment_form .flex:first-child .flex_1 {
        flex: 0 0 100%;
    }      
    /* Header Mobile Style */
    main {
        margin-left: 0;
    }
    [tab_id="users"], [tab_id="preview"] {
        padding: 0!important;
    }
    .user_list_flex {
        gap: 0;
    }
    .list_wrapper {
        border: none;
        border-bottom: 1px solid #ccc;
        border-radius: 0;
    }
    .list_wrapper.active {
        /*order: -1;*/
        z-index:1;
    }
    .contact_item.active {
        box-shadow: none;
    }
    page_header {
        border-radius: 0 0 0 0;
        margin-left: 0;
        padding: 15px;
    }
    .date_header {
        display: none;
    }
    .tab-buttons {
        gap: 0;
        justify-content: space-between;
    }
    .head_flex {
        padding: 10px 10px 10px 10px;
    }
    .my_account_btn_header {
        width: 35px;
        height: 35px;
    }
    #backButton svg {
        width: 17px;
        height: 17px;
    }
    .stack_flex_mobile .flex_1 {
        flex: 0 0 100%;
    }
    .messages #backButton {
        display: none;
    }
    .messages.view #backButton, .messages.add #backButton {
        display: flex;
    }
    .form_input_msg_wrapper {
        bottom: 120px;
    }    
    .head_flex .logo {
        display: block;
    }    
    topheader .create_btn {
        display: none;
    }
    .head_flex {
        justify-content: space-between;
    }
    .hide_mobile {
        display: none !important;
    }
    .hide_desktop {
        display: block !important;
    }
    .header_logo_section {
        display: none;
    }
    .header_logo_section .collapse {
        display: none;
    }
    .stats_wrap {
        flex: 0 0 100%;
    }
    .user_stat_wrap flex {
        flex: 0 0 100%!important;
    }
}