@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600;700&display=swap");

 :root {
        --color-dark-blue: #0d253f;
        --default-color-blue: #758397;
        --theme-color-golden: #918151;
        --theme-color-golden-rgb: 145, 129, 81 ;
        --theme-shadow-color: 136,136,136 ;   
        --color-white: #ffffff;
        --color-border: #ddd;
        --color-bg-even-tr: #f4f4f494;
        --border-theme-width: 1px;
        --border-theme-style: solid;
        --body-font-size: 16px;
        --danger-color: #dc3545;
        --theme-light-gray: lightgray;
        --heading-font-family: "Raleway", sans-serif;
        --body-font-family:  "Roboto", sans-serif !important;
        --table-td-color: #262424;
        }
        
        .btn__theme {
            background: var(--theme-color-golden);
            padding: 6px 8px;
            color: var(--color-white) !important;
            display: inline-block;
            transition: all 0.3s;
            border-radius: 2px;
            box-shadow: 0px 0px 0px 0px var(--theme-light-gray) !important;
            cursor: pointer;
        }
        .btn__theme:hover {
            box-shadow: 2px 2px 5px 2px var(--theme-light-gray)  !important;
        }
        .btn__common{
             box-shadow: 0px 0px 0px 0px var(--theme-light-gray) !important;
            transition: all 0.3s;
        }
        .btn__common:hover{
              box-shadow: 2px 2px 5px 2px var(--theme-light-gray)  !important;
        }
        a.btn__theme, a.btn__danger {
            text-decoration: none;
        }
        .btn__danger {
            background: var(--danger-color);
            color: var(--color-white) !important;
            padding: 6px 8px;
            display: inline-block;
            transition: all 0.3s;
            border-radius: 2px;
            box-shadow: 0px 0px 0px 0px var(--theme-light-gray)  !important;
            cursor: pointer;
        }
        .btn__danger:hover {
            box-shadow: 2px 2px 5px 2px var(--theme-light-gray)  !important;
        }
        .font-size-body{
            font-size: var(--body-font-size);
        }
        .font-family-heading {
            font-family: var(--heading-font-family);
        }
        .fw-800{
            font-weight: 800;
        }
        .golden__theme__color {
            color: var(--theme-color-golden);
            fill: var(--theme-color-golden);
        }

* {
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}

table td {
    vertical-align: middle;
}

.main-wrapper {
    display: flex;
}

.main-wrapper aside {
    width: 250px;
    min-height: 100vh;
    overflow: auto;
    transition: all 0.3s;
}

.main-wrapper .inner-body {
    width: calc(100vw - 250px);
    transition: all 0.3s;
}

.main-wrapper.collapse-wrapper aside {
    width: 0;
}

.main-wrapper.collapse-wrapper .inner-body {
    width: 100vw;
}

.top-bar {
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid hsl(0deg, 0%, 86%);
}

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

.top-bar .avatar-icon {
    border-radius: 100px;
}

.top-bar .avatar-icon img {
    width: 25px;
}

.top-bar .user-name {
    font-size: 12px;
    margin-left: 5px;
}

span.dropdown-toggle {
    display: inline-flex;
    align-items: center;
}

.page-heading {
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.primary-button {
    background: hsl(231deg, 56%, 90%);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 2px 2px 3px 1px rgba(211, 211, 211, 0.456);
}

.ul-tabs {
    border-bottom: 1px solid hsl(0deg, 0%, 96%);
    padding-bottom: 5px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: transparent;
    border-bottom: 3px solid hsl(231deg, 56%, 30%);
    border-radius: 0;
    color: hsl(231deg, 56%, 30%);
}

.nav-link {
    padding: 5px 0px;
    margin: 0 10px;
    font-size: 14px;
    color: hsl(0deg, 0%, 66%);
}

.count-span {
    height: 20px;
    width: 20px;
    background: hsl(0deg, 0%, 86%);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
}

.collapse-icon {
    cursor: pointer;
}

.right-function-icons {
    list-style-type: none;
    text-align: right;
}

.right-function-icons li {
    display: inline-block;
    margin-left: auto;
    position: relative;
}

.right-function-icons .inner-a {
    color: hsl(0deg, 0%, 40%);
    background-color: transparent;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
}

.right-function-icons .inner-a:hover {
    background-color: hsl(0deg, 0%, 86%);
}

.active-search input {
    border: none;
    border: 1px solid hsl(0deg, 0%, 76%);
    border-radius: 4px;
    padding: 0px 5px;
    padding-left: 33px;
    max-width: 160px;
    display: none;
}

.active-search.active svg {
    position: absolute;
    left: 30px;
    top: 7px;
}

.active-search.active span {
    display: none !important;
}

.active-search.active input {
    display: inline-block;
}

.active-search.active [type=search] {
    outline-offset: 0px;
    -webkit-appearance: textfield;
    outline-color: hsl(231deg, 56%, 30%);
}

.custom-modal-div {
    position: absolute;
    background: hsl(0deg, 0%, 96%);
    z-index: 99;
    top: 25px;
    width: 250px;
    right: 0;
    border-radius: 6px;
    padding: 20px;
    border: 1px solid hsl(0deg, 0%, 86%);
    display: none;
}

.custom-modal-li.show .custom-modal-div {
    display: block;
}

.min-400 {
    min-width: 500px;
}

.button-add-sort {
    background-color: hsl(231deg, 56%, 90%);
    border: 1px solid transparent;
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.3s;
}

.button-add-sort:hover {
    border-color: hsl(231deg, 56%, 30%);
    background-color: hsl(0deg, 0%, 100%);
    color: hsl(231deg, 56%, 30%);
}

.reset-all {
    background-color: hsl(0deg, 0%, 100%);
    color: hsl(0deg, 0%, 40%);
    border: 1px solid hsl(0deg, 0%, 86%);
    transition: all 0.3s;
    border-radius: 4px;
    padding: 5px 12px;
    margin: 0 10px;
}

.reset-all:hover {
    background-color: hsl(0deg, 0%, 76%);
    color: hsl(0deg, 0%, 40%);
}

.submit-apply {
    color: hsl(0deg, 0%, 40%);
    border: 1px solid hsl(0deg, 0%, 76%);
    transition: all 0.3s;
    border-radius: 4px;
    padding: 5px 12px;
}

.customize-table {
    max-width: 100%;
    overflow-y: initial;
    overflow-x: auto;
    height: calc(100vh - 260px) !important;
}

.customize-table div {
    overflow: auto;
    width: 100%;
    height: 200px;
}

.customize-table td,
.customize-table th {
    border-bottom: 1px solid hsl(0deg, 0%, 56%);
    font-weight: 500;
}

.customize-table th span {
    color: hsl(278.49deg 100% 10.39%) !important;
}

.customize-table th {
    white-space: nowrap;
    font-size: 14px;
    text-transform: uppercase;
    color: hsl(0deg, 0%, 66%);
    width: auto;
}

.customize-table th span {
    white-space: nowrap;
    display: inline-block;
    position: relative;
    z-index: -1;
}

.customize-table td {
    font-size: 14px;
    font-weight: 300;
    padding: 6px 10px;
    color: hsl(0deg, 0%, 56%);
    border-color: hsl(0deg, 0%, 96%);
}

.customize-table table {
    width: 100%;
}

.customize-table td:first-child,
.customize-table th:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    padding: 6px 10px;
    background-color: hsl(0deg, 0%, 100%);
    border-right: 1px solid hsl(0deg, 0%, 86%);
}

.customize-table td:last-child,
.customize-table th:last-child {
    position: sticky;
    right: 0;
    z-index: 1;
    background-color: hsl(0deg, 0%, 100%);
    border-left: 1px solid hsl(0deg, 0%, 86%);
}

.customize-table thead tr th {
    position: sticky;
    top: 0;
    padding: 6px 10px;
    border-bottom: 1px solid hsl(0deg, 0%, 96%);
    background: white;
}

.customize-table th:first-child,
.customize-table th:last-child {
    z-index: 2;
    background-color: hsl(0deg, 0%, 100%);
}

input[type=checkbox] {
    position: relative;
    top: -3px;
    margin-right: 10px;
}


/* width */

::-webkit-scrollbar {
    height: 5px;
}


/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px hsl(0deg, 0%, 86%);
    border-radius: 10px;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: hsl(0deg, 0%, 76%);
    border-radius: 10px;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: hsl(0deg, 0%, 66%);
}

.menu-three-dots {
    background: none;
    border: none;
    padding: 0 10px;
}

.inner-card-div {
    background-color: hsl(0deg, 0%, 100%);
    border: 1px solid hsl(0deg, 0%, 86%);
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s;
}

.inner-card-div .thead-div {
    font-size: 13px;
    font-weight: 400;
    color: hsl(0deg, 0%, 40%);
}

.inner-card-div .progress-default {
    height: 7px;
    margin: 10px 0;
    cursor: pointer;
}

.inner-card-div:hover {
    cursor: pointer;
    background-color: hsl(0deg, 0%, 96%);
}

.inner-card-div .dropdown-menu {
    font-size: 14px;
    font-weight: 300;
    color: hsl(0deg, 0%, 56%);
}

.span-text {
    position: relative;
    margin-left: 5px;
}

.fa-clock-hover i {
    position: relative;
    top: 6px;
}

.bg-span {
    background-color: hsl(0deg, 0%, 86%);
    color: hsl(0deg, 0%, 40%);
    font-weight: 300;
    display: inherit;
    width: 20px;
    margin-left: 50px;
    border-radius: 4px;
}

.avatar-text {
    background-color: hsl(231deg, 56%, 70%);
    color: hsl(0deg, 0%, 100%);
    font-weight: 400;
    border-radius: 4px;
    padding: 4px;
    margin-right: 5px;
}

.table-row .customize-div {
    display: none;
}

.table-row.card-row .customize-div {
    display: block;
}

.table-row.card-row .customize-table {
    display: none;
}

.h-10px {
    height: 7px !important;
    overflow: hidden !important;
    cursor: pointer;
}

.h-10 {
    height: 10px !important;
    overflow: hidden !important;
}

.tag-span {
    position: inherit;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 3px 1px rgba(211, 211, 211, 0.456);
}

.created-tag {
    background-color: hsl(0deg, 0%, 96%);
}

.completed-tag {
    background-color: hsl(231deg, 56%, 80%);
    color: hsl(0deg, 0%, 100%);
}

.overflow-unset {
    overflow: unset !important;
}

.z-index-9 {
    z-index: 9 !important;
}

.z-index-9:has(.dropdown-menu.show) {
    z-index: 10 !important;
}

.cursor-pointer {
    cursor: pointer;
}

.td-span-language {
    cursor: pointer;
}

.drag:first-child,
.drag:last-child {
    cursor: not-allowed;
    opacity: 0.5;
}

.sort-button .btn-secondary {
    padding: 3px 10px;
    font-size: 14px;
}

.sort-button .btn-secondary .select-property {
    display: none;
}

.sort-button .btn-secondary.show {
    background-color: hsl(231deg, 56%, 60%);
}

.sort-button .btn-secondary.show .select-property {
    display: inline-block;
}

.sort-button .btn-secondary.show .select {
    display: none;
}

.sort-button .dropdown-menu li {
    display: block !important;
    font-size: 14px;
    font-weight: 300;
    margin: 5px 0;
    padding: 0 10px;
    border-radius: 4px;
}

.sort-button .dropdown-menu li a {
    padding: 5px 15px;
}

.tag {
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    background-color: hsl(231deg, 56%, 90%);
    border-radius: 2px;
    cursor: pointer;
}

.custom-btn-accept {
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    background-color: hsl(231deg, 56%, 90%);
    border-radius: 2px;
    cursor: pointer;
    background-color: hsl(134deg, 26%, 80%);
    display: inline-block;
}

.custom-btn-reject {
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    background-color: hsl(231deg, 56%, 90%);
    border-radius: 2px;
    cursor: pointer;
    background-color: hsl(0deg, 51%, 80%);
    display: inline-block;
}

.custom-btn-cancel {
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    background-color: hsl(231deg, 56%, 90%);
    border-radius: 2px;
    cursor: pointer;
    background-color: hsl(0deg, 51%, 60%);
    display: inline-block;
    color: hsl(0deg, 0%, 100%);
}

.custom-btn-revised {
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    background-color: hsl(231deg, 56%, 90%);
    border-radius: 2px;
    cursor: pointer;
    background-color: hsl(134deg, 26%, 70%);
    display: inline-block;
    color: hsl(0deg, 0%, 100%);
}

aside {
    background-color: hsl(0deg, 0%, 97%);
}

aside .top-aside {
    height: 60px;
    border-bottom: 1px solid hsl(0deg, 0%, 86%);
    display: flex;
    align-items: center;
    justify-content: center;
}

aside .top-aside img {
    max-height: 40px;
}

aside .ul-links {
    margin-top: 40px;
}

aside .ul-links ul {
    margin-top: 40px;
    list-style-type: none;
}

aside .ul-links ul li {
    padding: 5px 15px;
}

aside .ul-links ul li.active {
    background-color: hsl(278.49deg 100% 10.39%) !important;
    color: hsl(0deg, 0%, 100%);
}

aside .ul-links ul a {
    display: inline-block;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

aside .ul-links ul a span.icon {
    display: inline-block;
    width: 20px;
}

aside .ul-links ul a:hover {
    color: inherit;
    opacity: 0.8;
}


/* added by zulkifal */

.custom-btn-accept {
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    background-color: hsl(231deg, 56%, 90%);
    border-radius: 2px;
    cursor: pointer;
    background-color: hsl(134deg, 26%, 80%);
    display: inline-block;
}

.custom-btn-reject {
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    background-color: hsl(231deg, 56%, 90%);
    border-radius: 2px;
    cursor: pointer;
    background-color: hsl(0deg, 51%, 80%);
    display: inline-block;
}

.custom-btn-cancel {
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    background-color: hsl(231deg, 56%, 90%);
    border-radius: 2px;
    cursor: pointer;
    background-color: hsl(0deg, 51%, 60%);
    display: inline-block;
    color: hsl(0deg, 0%, 100%);
}

.custom-btn-revised {
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 300;
    background-color: hsl(231deg, 56%, 90%);
    border-radius: 2px;
    cursor: pointer;
    background-color: hsl(134deg, 26%, 70%);
    display: inline-block;
    color: hsl(0deg, 0%, 100%);
}

.append-row {
    font-size: 14px;
    margin-top: 20px;
}

.toggle-up-down{
    margin-left: 5px;
}
.mystyle .toggle-up-down{
    transform: rotate(180deg);
}

.sortable th span {
    white-space: nowrap;
    display: inline-block;
    position: relative;
    z-index: -1;
}
.profile-div .dropdown::after{
    display: none;
}

.white-space-nowrap{
    white-space: nowrap;
}
.max-width-80{
    width: 95px !important;
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: rgb(250 250 250);
    color: var(--bs-table-striped-color);
}
.td-span-customer{
    width: 100%;
    max-width: 105px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inherit;
    white-space: nowrap;
}
.td-span-creatation{
    width: 100%;
    min-width: 160px;
}
.min-width-140{
    width: 140px;
}
.min-1200-150{
    width: 150px !important;
}
.min-1200-160{
    width: 160px !important;
}
.min-width-120{
    width: 120px !important;
}
@media only screen and (max-width: 1200px) { 
/*
    table th, table td{
        width: 100px !important;
    }
*/
}

@media only screen and (min-width: 1000px) { 
     .max-width-80{
        width: 80px !important;
    }
    .max-width-100{
        width: 100px !important;
    }
    .max-width-120{
        width: 120px !important;
    }
    .max-width-140{
        width: 140px !important;
    }
}

/**/
.nav-bottom-border-hover ul li a:hover{
    text-decoration: none !important;
    border-bottom: none !important;
    margin-bottom: 0 !important; 
}
.profile-picture ul.dropdown-menu {
    width: 200px;
}
.profile-picture ul.dropdown-menu li{
    display: block;
    width: 100%;
}
.first-word-span{
    background-color: lightgray;
    height: 35px;
    width: 35px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-top: -7px;
}

.profile-picture .dropdown-toggle::after{
    margin-left: 0 !important;
}

/* filter div  */
#filter-div-box{
    position: absolute;
    width: 300px;
    right: 0;
    background: #eeeeee;
    z-index: 99;
    border-radius: 4px;
    padding: 10px 20px;
    top: 20px;
    max-height: 500px;
    overflow: auto;
    opacity: 0;
    transition: all 0.3s;
    display: none;
    z-index: 9999;
    border: 1px solid lightgray; 
}

#filter-div-box.show-filter{
    display: block;
    opacity: 1;
}
.btn__close{
    cursor: pointer;
}
.search-icon-group{
    display: flex;
    align-items: center;
}
.inner-filter-div-box .custom-form-control{
    background: none;
    border: none;
    border-bottom: 1px solid darkgray;
    border-radius: 0;
}
.inner-filter-div-box .custom-form-control:focus{
    box-shadow: none;
}

.select2.select2-container{
    width: 100% !important;
    text-align: left;
} 
.select2-dropdown.select2-dropdown--below{
    position: relative;
    z-index: 9999;
}
.inner-filter-div-box .select2-container--default .select2-selection--multiple{
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid darkgray !important;
    border-radius: 0;
    line-height: 16px;
    height: 16px;
    padding: 0;
}
.inner-filter-div-box label{
    margin-bottom: 0;
}
.inner-filter-div-box .select2-container .select2-selection--multiple{
    min-height: 28px !important;
}
.select2-selection::after{
    /* content: '⌄' !important; */
    /*    content: '▼';*/
    position: absolute;
    right: 0;
    opacity: 0.6;
}
.action-form-btn button{
    width: 29px;
}

.special-icon svg {
    font-size: 24px;
}

.circle-icon{
    height: 50px;
    width: 50px;
    background: #220035;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    box-shadow: 1px 1px 2px 2px lightgray;
}
.circle-span-2{
    height: 70px;
    width: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 2px 2px lightgray;
    border: 1px solid #220035;
    border-radius: 100px;
}

.circle-span-2 svg{
    font-size: 30px;
    color: #220035;
}
.font-weight-300{
    font-weight: 300;
}
.good-company-span svg{
    font-size: 70px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s;
}
.good-company-span{
    display: inherit;
    padding: 5px;
}
.good-company-span svg:hover{
    opacity: 0.8;
}
.no-indent-ul li a{
    font-weight: 300;
    opacity: 0.5;
    text-decoration: none;
    transition: all 0.3s;
}
.no-indent-ul li a:hover{
    color: inherit;
    opacity: 0.9
}

.custom-page-container p{
    text-indent: 0 !important; 
}
.custom-page-container table{
    width: 100% !important;
}
.custom-page-container ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.custom-page-container td{
    padding: 0.08in;
}

/**/

.custom-page-container td p{
    margin-bottom: 0 !important;
}

.custom-page-container tr:first-child td{
    background: #e7e6e6;
    font-weight: bold;
}

#my-table{
    width: 100%;
}

.profile-div{
    display: flex;
    align-items: center;
}

.credit-balance{
    padding-right: 45px;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    
}
.credit-balance span{
    position: relative;
}
.credit-balance span .bi{
    position: relative;
    top: 3px;
    color: #4b2f5a !important;
}

 .toggle-up-down {
    display: none !important;
}
.show--toggle .toggle-up-down{
    display: inline-block!important;
}
.nav-pills .nav-link{
    cursor: pointer;
}

.btn-add{
    background: #0d253f;
    color: #fff;
    padding: 6px 15px;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 2px 2px 3px 1px lightgray;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.btn-add:hover{
    color: #fff;
    text-decoration: none;
    background: #091727;
}

.td-max-width-250 tbody td{
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.topbar{
    background: white;
    position: absolute;
    z-index: 1;
    width: 100%;
    border-bottom: 1px solid #efefef;
    left: 0;
    padding: 10px 20px;
    box-shadow: 1px 5px 6px 1px #efefef;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
main.float-right{
    margin-top: 60px;
}

/**/


 .custom-dropdown {
    position: relative;
    display: inline-block;
    background: #eaeeee;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    right: 20px;
     cursor: pointer;
     border: 1px solid #918151;
}

.circle-span img{
    max-width: 100%;
    border-radius: 100px;
}
    .custom-dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
        padding: 10px 0;
    }


    .custom-dropdown-content.show {
      display: block;
      animation: fadeIn 0.3s ease-in-out;
    }


    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }

#myDropdown{
    background: #eaeeee;
    right: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    top: 40px;
    min-width: 290px;
}

.color-theme{
    color: #0d253f;
}
#myDropdown > a{
    display: block;
/*    border-bottom: 1px dashed lightgray;*/
    font-size: 16px;
    letter-spacing: 0.4px;
    opacity: 0.7;
    transition: all 0.3s;
    background: transparent;
    transition: all 0.3s;
    padding: 7px 15px;
/*    margin: 5px 0;*/
}
#myDropdown > a:hover{
    opacity: 0.9;
    text-decoration: none;
    color: #000;
    background: lightgray;
}
.header-card{
    height: auto;
    min-height: 100px;
    background: #918151;
    margin-top: -10px;
    display: flex;
    align-items: center;
/*    justify-content: center;*/
    color: white;
    font-size: 14px;
}

.img-div-card img{
    max-width: 55px;
    border-radius: 100px;
    overflow: hidden;
    border: 2px solid #ffffff63;
}
.info-card {
    max-width: 180px;
}
.bg-theme{
    background: #0d253f;
}
.btn-rounded-pill{
    background: #2c639d;
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.custom-dropdown-content::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -2px;
    transform: translateX(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #918151 transparent;
    }

.badge{
    color: #758397 !important;
}

.btn-rounded-pill-badge{
 color: #758397 !important;
    background: #eaf4f7;
    padding: 1px 6px;
    margin: 2px 0;
    display: inherit;
    border-radius: 5px;
    font-weight: 700;
    font-size: 11px;    
    display: inline-block;
    
}

#statustSection, #translators, #detailstSection, #sourceDocumentsSection, #translatedDocsSection, #managerSection, #referenceDocumentsSection, #workflowsSection, #jobsSection{
    padding-top: 40px;
    padding-bottom: 40px;
}

#customerSection{
    padding-top: 75px !important;
}

#quotesSection{
    padding-top: 70px !important;
}
#orderSection{
    padding-top: 70px !important;
}
#invoicesSection{
    padding-top: 70px !important;
}
#translationsSection{
    padding-top: 70px !important;
}
#settingsSection{
    padding-top: 70px !important;
}
.django-form label{
    font-weight: 400;
    text-transform: uppercase;
    color: var(--db-color-1);
    font-size: 14px;
    text-transform: capitalize;
    margin-right: 5px;
  }
  .django-form input, .django-form select {
      padding: 0.375rem 0.75rem;
      margin-right: 16px;
      font-size: .8rem;
      line-height: 1;
      color: #495057;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid #ced4da;
      border-radius: 0.25rem;
      transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
      width: 140px;
  }

    textarea {
      resize: vertical !important;
    }

.pm-django-form > form input, .pm-django-form > form select, .pm-django-form > form label{
    width: 45%;
    margin-top: 10px;
}
.pm-django-form > form input{
/*    margin-right: 20px;*/
}


.django-form button[type=submit] {
    display: block;
    margin: auto;
    margin-top: 10px;
}
.topbar{
    z-index: 9 !important;
}

/*django form*/
   .django-form:not(#update_template) {
    position: absolute;
    z-index: 9999;
    width: 500px;
    border: 1px solid #918151 !important;
    border-top-color: transparent;
    padding: 20px;
    top: 40px;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(16px);
    border: 1px solid rgb(120 120 120 / 79%);
    display: none;
    border-radius: 4px;
       right: 0;
}

.django-form:not(#update_template)::after {
    /* Your existing styles here */
    content: "";
    position: absolute;
    top: -10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #918151;
    transform: rotate(180deg);
    
}

.django-form.show-filter:not(#update_template) {
    /* Your existing styles here */
    display: block;
}

.theme-btn{
    color: #918151;
    padding: 5px 10px;
    border-radius: 6px;
    background: white;
    border: 1px solid #918151;
    display: none;
}

.div-wrapper-form{
    display: inline-block;
    position: relative;
}

.active-filter .badge {
display: inline-block;
    background-color: #0d6efd;
    padding: 7px 8px;
    margin-right: 8px;
    border-radius: 4px;
    color: #ffffff !important;
}

.cross-icon {
  margin-left: 4px;
  cursor: pointer;
}

.active-filter .cross-icon{
    padding: 2px;
    background: #00000057;
    border-radius: 5px;
    width: 16px;
    display: inherit;
    margin-left: 5px;
}


/* Pagination */
#records_per_page{
    display: inline-block;
}
#records_per_page select{
    width: auto !important;
    border: none;
    color: #0d253f;
}
#records_per_page select:focus-visible{
    outline: none;
}
.per_page_showing{
    margin-top: 10px;
    font-weight: 300;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}
.ht_theme_pagination{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

span.page-link select {
    color: black;
    border: none;
    width: 15px;
    z-index: 1;
    position: relative;
    background: transparent;
}
span.page-link select:focus-visible{
    outline: none;
}

.page-item .page-link{
    border: none;
    
}

.select-icon-caret{
    position: absolute;
    right: 10px;
}

.cst-pagination li{
    display: none;
}
li.current-page {
    color: blue !important; 
    display: inline-block;
    font-size: 12px;        
}
.cst-pagination{
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    top: 3px;
    cursor: pointer;
    background: #d5d6d6;
    width: 100px;
    text-align: center;
}
.cst-pagination li a{
    text-decoration: none;
    font-size: 12px;
}

.showPageToggleSpan{
    position: absolute;
    bottom: 39px;
    right: 24px;
}


.showPageToggleul {
    background: #eaeeee;
    z-index: 99999;
    width: 100px;
/*    padding: 10px;*/
/*    border-radius: 4px;*/
    right: 16px;
    position: relative;
    max-height: 300px;
    overflow: auto;
    font-size: 12px;
}
.showPageToggleul::-webkit-scrollbar {
    width: 5px;
    background:lightgray;
}

.showPageToggleul::-webkit-scrollbar-track {
   -webkit-box-shadow: inset 0 0 6px rgb(184 184 184); 
    border-radius: 2px;
}

.showPageToggleul::-webkit-scrollbar-thumb {
    border-radius: 2px;
    
    -webkit-box-shadow: inset 0 0 6px rgb(94 94 94); 
    background: #dcdcdc;
} 
.showPageToggleul li {
    background: transparent;
    transition: all 0.3s;
    padding: 5px 10px;
    cursor: pointer;
}
.showPageToggleul li:hover{
    background: lightgray;
    
}
.showPageToggleul a{
    text-decoration: none;
    color: #242424;
    font-size: 11px;
    font-weight: 400;
}

/*
    Criteria Form setting
*/

.criteria-form{
    background: #e0dede7d;
    z-index: 99;
    padding: 10px;
}

.inner-box--criteria{
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 2px 2px 7px 0px lightgray;
    margin-bottom: 10px;
}

.add-criteria-button{
    color: #6a6a6a;
    background: #e7e7e7;
    padding: 5px;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    border-radius: 4px;
    box-shadow: 1px 1px 4px 0px lightgray;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.add-criteria-button:hover{
    box-shadow: 1px 2px 5px 0px lightgray;
}

 /* Disabled button styles */
    button:disabled {
      background-color: #cccccc;
      color: #666666;
      cursor: not-allowed;
    }
button:disabled:hover{
    box-shadow: none;
}

#uploadForm{
    display: inline-block;
    position: absolute;
    top: 50%;
    background: #0d253f;
    color: #fff;
    padding: 2px 7px;
    border-radius: 5px;
    right: -10px;
    cursor: pointer;
}



/* Styling for the custom modal */
.custom-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.custom-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.pills-selection{
    position: relative; 
}
.pills-selection select{
    border: none;
    z-index: 0;
    position: relative;
    background: #918151;
    border-radius: 100px;
    text-align: center;
    color: white;
    padding-right: 15px;
    padding: 3px;
    font-size: 14px;
    margin: 5px 0;
    box-shadow: 1px 2px 5px lightgray;
    letter-spacing: 0.5px;
}

span.cover-select{
    background: #ff000000;
    display: inline-block;
    z-index: 2;
    width: 100px;
    width: 100%;
    position: absolute;
    height: 41px;
    bottom: 0;
}

.pills-selection .styled-checkbox{
    position: absolute;
    right: 0;
    top: 35px;
    z-index: 9;
}
.form-select:disabled {
    background-color: #dbdbdb;
}

.tag_services_span{
    display: inherit;
    width: 80%;
    background: #918151;
    margin: auto;
    border-radius: 100px;
    padding: 3px;
    text-align: center;
    color: #fff;
    font-weight: 400;
 
}
.remove-tag-button{
    position: absolute;
    right: 15px;
    bottom: 1px;
    z-index: 999;
    color: white;
    transition: all 0.3s;
    opacity: 0.7;
    cursor: pointer
}
.remove-tag-button:hover{
    opacity: 1
}
.parent-tag{
    background: #918151;
    border-radius: 100px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 3px;
    color: #fff;
    display: block;
}

.showPageToggleul {
    list-style-type: none;
}
.search-input .glass{
    z-index: 9;
    cursor: pointer;
}
.row-collapse span{
    display: none;
}
tr.show .row-collapse span{
    display: inline-block;
}
.text-max-120{
    display: inherit; 
    max-width: 120px;  
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}


.tooltip{
   font-size: 12px;
    border-bottom: 0 !important;
}

.bga-info svg{
    transform: rotate(0);
    transition: all 0.3s;
    position: relative;
    top: 0px;
    left: 5px;
    height: 12px;
}
.show .bga-info svg{
    transform: rotate(180deg);
}

.navigator{
    position: relative;
    top: 10px;
}
.bg-white.shadow-3.p2.m-v-1 .m0.p0.black.bold.text-uppercase{
    font-size: 12px !important;
    line-height: 12px !important;
    white-space: nowrap;
}
.bg-white.shadow-3.p2.m-v-1 a{
    font-size: 12px !important;
}

.bg-white.shadow-3.p2.m-v-1 .m0.font-weight-400.small-font{
    font-size: 10px !important;
}

.bg-white.shadow-3.p2.m-v-1{
     padding: 5px 15px !important;
    margin: 6px !important
}


/*
---------------
*/

.col-12 .table  tr:nth-child(even) {
    background-color: #f2f2f2;
}

.sticky-thead thead {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 8 !important;
}

iframe * {
    user-select: none
}
#fileIframe body {
    background-color: red;
    user-select: none !important;
}

.jobDetailBtn{
     padding: 2px 5px !important;
 }

/**/

 .table_workflow_quality_level_sub_services {
        margin: 13.5px 0 !important;
    }
    .span-ql-info {
        font-weight: 600 !important;
    }
.table_workflow_quality_level_sub_services_style{
    margin: 10px; 
    padding: 8px 5px; 
    white-space: nowrap;
    position: relative;
    top: -5px;
    font-weight: 400 !important;
    border-radius: 2px;
}
.table_workflow_quality_level_sub_services td{
    background: #ffffff;
}
.table_workflow_ending_sub_services td, .table_workflow_starting_sub_services td{
    background: #ffffff;
}
.w24-h24{
    width: 24px;
    height: 24px;
}
 .workflow-pills{
        margin: 10px;
        padding: 8px;
        position: relative;
        top: 2px;
        border-radius: 4px;
        font-weight: 400 !important;
    } 
body {
    overflow-x: hidden;
    max-width: 100%;
}
.single_project_sections .container{
    margin-left: auto;
    margin-right: auto;
}



 .small-red {
        font-weight: bolder;
        /* color: rgba(255, 64, 0, 0.8); */
        color: #220035;
        font-size: 10px;
        background: #0d2540;
        border-radius: 100px;
        color: white;
        width: 21px;
        margin-left: 4px;
        padding: 1px;
    }

    .tr-tab-menu button.tab-button {
        display: flex;
        align-items: center;
        justify-content: end;
        padding: 0;
        background: none;
        border: none;
        color: var(--color-darker-blue); 
        margin: 0px 5px;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0%;
    }
    .small-gray {
        font-weight: bolder;
        color: #220035;
        font-size: 12px;
        margin-top: 5px;
        margin-left: 8px;
    }
    

    /* Style for the tabs menu buttons */
    .tabs-menu {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .tab-button {
        padding: 10px 20px;
        background-color: #f2f2f2;
        border: 1px solid #ccc;
        cursor: pointer;
        color: #758397
    }

     .tab-button.active {
        background-color: #918151;
        color: #fff;
    } 

    /* Style for the tabs content */
    .tabs-content .tab-item {
        display: none;
    }

    .tabs-content .tab-item.active {
        display: block;
    }

     /* loader CSS */
     .fullscreen-loader {
        position: fixed; 
        top: 50%;
        left: 50%; 
        transform: translate(-50%, -50%); 
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        /* Ensure it's on top */
    }

    .fullscreen-loader > .text-golden {
        color: var(--color-1);
    }
    button:hover{
        box-shadow: unset;
    }
    .section2_tabs-menu{
        flex-wrap: wrap; 
        display: flex;
        gap: 4px; 
        justify-content: start; 
        z-index: 9999; 
        position: relative; 
        width: 100%;
    } 
    

.tr-user-top{
    padding-top: 5px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}
    /* Translator Portal */
    @media screen and (max-width: 1120px) {
        .tr-tab-menu button.tab-button{
            font-size: 15px;
            font-weight: 500;
            margin 0 5px;
        }
    }

    @media screen and (max-width: 900px) {
        .tr-tab-menu button.tab-button {
            font-size: 13px;
            font-weight: 400;
            margin 0 0px;
        }
        .custom-dropdown {
            width: auto !important;
        }
        .topbar {
            padding: 10px 10px;
        }
        .topbar.noprint{
            padding-left: 0 !important;
        }
        .topbar.noprint .custom-dropdown {
            width: auto !important;
        }
    }
.bg-danger, .bg-danger-hover:hover {
    background-color: var(--danger, red) !important;
}

.bidjob_accept_bid{
    /* background-color: #1191b8 !important;  */
    float:right
} 
.bidjob_reject_bid{
    background-color: #cc3a3a !important; 
    float:right;
    margin-right: 13px;
}




.atag_style {
    color: #1356f0 !important;
}
.section2_tabs-menu button a:hover{
    color: #918151 !important
}

.overflow-x-clip{
    overflow-x: clip;
}

.template-checkbox input[type=checkbox]{
    position: relative;
    top: 4px;
    margin-right: 0;
    height: 24px;
    width: 24px;
}
.template-checkbox input[type=checkbox]{
    appearance: none;
    background-color: lightgray;
    cursor: pointer;
}
.template-checkbox input[type=checkbox]:checked{
  background-color: var(--theme-color-golden);
}

.link-row [title]{
    display: none;
}  .collapse-aside .link-row[title] {
    display: block;
}a.dropdown-tag{
    pointer-events: none;
} 
.accordion.menu{
    width: auto !important;
}

.sales-report-section-wrapper{
    display: flex;
    align-items: stretch;
    justify-content: center;
    /* column-gap: 10px; */
}
.report-heading{
   text-align: center;
    margin-bottom: 0;
}
.bell-icon-wrapper{
    
}
@media only screen and (max-width: 680px) {
    .bell-icon-wrapper{
        
    }
    .sales-report-section-wrapper{
        display: block;
    }
    .sales-report-section{
        width: 100%;
    }
    #sales-report-section table {
        margin-top: 0 !important;
    }
}

.price-top-navigator {
    display: flex; 
    gap: 1%; 
    margin-top: 30px !important; 
    margin-bottom: 30px;
}
/* Responsive Admin Panel For Mobile Start */

@media only screen and (max-width: 992px) {
    .tabs-menu.projects-tab-menu.d-flex.justify-content-between{
        display: block !important;
    }
    .price-top-navigator {
        display: inline-block;
    }
    .price-top-navigator > form{
        display: inline-block;
        margin: 5px;
    }
    .navigator-table{
        table-layout: fixed;
    }
    .navigator-table tr td{
        width: 33%; 
        display: inline-block;
        padding: 4px;
    }
    .tabs-menu.tr-tab-menu.header-tab-menu.cu-invoice-tabs{
        display: none !important;
    }
    .close-side-bar-icon2{
        display: none;
    }
    .circle-span img{
        max-width: 40px;
    }
    #top-navbar-inner-section{
        position: relative;
    }
    .row #aside-sidebar{
        margin-top: 0 !important;
        background-color: transparent !important;
        z-index: 0 !important;
    }
    .mbl-menu-icon{
        right: auto;
        left: -20px;
    }
    #top-logo{
        display: none !important;
        margin-left: 70px !important;
        margin-top: -100px;
        position: relative;
        top: -70px;
    }
    #top-navbar-header{
        z-index: 99;
    }
    #main-container-column{
        margin-top: -20px !important;
        /* margin-top: 75px; */
    }
 
    #top-navbar-header{
        position: sticky !important;
        top: 0;
    }
    .sticky-thead thead{
        top: 100px !important;
    }
  }
.show-small-screen{
    display: none;
}
  @media only screen and (max-width: 510px) {
  
    .hide-small-screen{
        display: none;;
    }
    .show-small-screen{
        display: block;
        padding-left: 20px;
    }
    #filter-div{
        position: relative !important;
    }
    #customized-filter-div button{
        margin-top: 0 !important;
    }
    .search-section #search-div{
        position: relative !important;
        top: 0 !important;
    }
    #search-div #search-input{
       width: 18rem !important;
    }
    #search-div-jobs #search-input{
        height: 30px;
        font-size: 12px;
        top: 0;
        transform: none;
        left: 0 !important;
    }
    div.plus_dropdown{
        margin-right: 10px !important;
    }
  }
#notifications-count{
    pointer-events: none;
}
/* Responsive Admin Panel For Mobile End */


/**/
/*
#statustSection
#translators
#detailstSection
#sourceDocumentsSection
#translatedDocsSection
#managerSection


*/

/*
#word-count-analysis{
display: none }

#word-count-analysis.show{
    display: inline-block;
}
*/
/*# sourceMappingURL=style.css.map */
