/*CSS FOR AI*/
:root {
  --text-color-ai: #edf3ff;
  --subheading-ai-color-ai: #97a7ca;
  --placeholder-color-ai: #c3cdde;
  --primary-color-ai: #101623;
  --secondary-color-ai: #283045;
  --secondary-hover-color-ai: #333e58;
  --scrollbar-color-ai: #626a7f;
}
body.light-theme {
  --text-color-ai: #090c13;
  --subheading-ai-color-ai: #7b8cae;
  --placeholder-color-ai: #606982;
  --primary-color-ai: #f3f7ff;
  --secondary-color-ai: #dce6f9;
  --secondary-hover-color-ai: #d2ddf2;
  --scrollbar-color-ai: #a2aac2;
}

.atag_roles_show{
    max-height: 400px;
    overflow-y: auto;
}
.atag_roles_show a{
    width: 100% !important;
    margin: 0px !important;
    background: transparent !important;
    border-radius: 0px !important;
    padding: 5px 15px !important;
    border: none !important;
    transition: 0.2s;
}
.atag_roles_show a:hover{
    background: #E9F3FF !important;
}
.atag_roles_show a span{
    display: block !important;
}

.dash_items {
  overflow: auto; 
  padding-top: 4px;
  display: flex;
  align-items: center;
}

.dash_items::-webkit-scrollbar {
  height: 3px !important; 
} 

.dash_items::-webkit-scrollbar-track {
  background: transparent;
}

.dash_items::-webkit-scrollbar-thumb {
  background-color: #888; 
  border-radius: 100px;
}

.dash_items::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.dash_items::-webkit-scrollbar-button {
  display: none; 
}
.paginate_setscroll nav{
    overflow: auto;
}


.container-ai {
  overflow-y: auto;
  padding: 32px 0 60px;
  height: calc(100vh - 127px);
  scrollbar-color: var(--scrollbar-color-ai) transparent;
}
.container-ai :where(.app-header, .suggestions, .message, .prompt-wrapper) {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  max-width: 990px;
}
.container-ai .app-header {
  margin-top: 3vh;
}
.app-header .heading-ai {
  width: fit-content;
  font-size: 3rem;
  background: linear-gradient(to right, #1d7efd, #8f6fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.app-header .sub-heading-ai {
  font-size: 2.6rem;
  margin-top: -5px;
  color: var(--subheading-ai-color-ai);
}
.container-ai .suggestions {
  width: 100%;
  list-style: none;
  display: flex;
  gap: 15px;
  margin-top: 9.5vh;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.chats-active{
  color: var(--text-color-ai);
  background: var(--primary-color-ai);
}
.chats-active .container-ai :where(.app-header, .suggestions) {
  display: none;
}
.suggestions .suggestions-item {
  cursor: pointer;
  padding: 18px;
  width: 228px;
  flex-shrink: 0;
  display: flex;
  scroll-snap-align: center;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 12px;
  justify-content: space-between;
  background: var(--secondary-color-ai);
  transition: 0.3s ease;
}
.suggestions .suggestions-item:hover {
  background: var(--secondary-hover-color-ai);
}
.suggestions .suggestions-item .text {
  font-size: 1.1rem;
}
.suggestions .suggestions-item .icon {
  width: 45px;
  height: 45px;
  display: flex;
  font-size: 1.4rem;
  margin-top: 35px;
  align-self: flex-end;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  color: #1d7efd;
  background: var(--primary-color-ai);
}
.suggestions .suggestions-item:nth-child(2) .icon {
  color: #28a745;
}
.suggestions .suggestions-item:nth-child(3) .icon {
  color: #ffc107;
}
.suggestions .suggestions-item:nth-child(4) .icon {
  color: #6f42c1;
}
.container-ai .chats-container-ai {
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding-bottom: 100px;
}
@media (max-width: 575.98px) {
.container-ai .chats-container-ai {
    padding-bottom: 55px;
}
}
.chats-container-ai .message {
  display: flex;
  gap: 11px;
  align-items: center;

}
.chats-container-ai .message .avatar {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  align-self: flex-start;
  border-radius: 50%;
  padding: 6px;
  margin-right: -7px;
  background: var(--secondary-color-ai);
  border: 1px solid var(--secondary-hover-color-ai);
}
.chats-container-ai .message.loading .avatar {
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.chats-container-ai .message .message-text {
  padding: 3px 16px;
  word-wrap: break-word;
  white-space: pre-line;
}
.chats-container-ai .bot-message {
  margin: 9px auto;
}
.chats-container-ai .user-message {
  flex-direction: column;
  align-items: flex-end;
}
.chats-container-ai .user-message .message-text {
  padding: 12px 16px;
  max-width: 75%;
  background: var(--secondary-color-ai);
  border-radius: 13px 13px 3px 13px;
}
.chats-container-ai .user-message .img-attachment {
  margin-top: -7px;
  width: 50%;
  border-radius: 13px 3px 13px 13px;
}
.chats-container-ai .user-message .file-attachment {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 10px;
  margin-top: -7px;
  border-radius: 13px 3px 13px 13px;
  background: var(--secondary-color-ai);
}
.chats-container-ai .user-message .file-attachment span {
  color: #1d7efd;
}
.container-ai .prompt-container-ai {
    position: fixed;
    width: calc(100% - 140px);
    left: 110px;
    bottom: 0;
    padding: 16px 0;
    background: var(--primary-color-ai);
}
@media (max-width: 1026px) {
.container-ai .prompt-container-ai {
 width: calc(100% - 60px);
    left: 30px;
}
}
@media (max-width: 575.98px) {
.container-ai .prompt-container-ai {
 width: calc(100% - 40px);
    left: 20px;
}

@media (max-width: 425px) {
    .dash_items {
        overflow: hidden !important;
    }
}

}
.prompt-container-ai :where(.prompt-wrapper, .prompt-form, .prompt-actions) {
  display: flex;
  gap: 12px;
  height: 56px;
  align-items: center;
}
.prompt-container-ai .prompt-form {
  height: 100%;
  width: 100%;
  border-radius: 130px;
  background: var(--secondary-color-ai);
}
.prompt-form .prompt-input {
  width: 100%;
  height: 100%;
  background: none;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--text-color-ai);
  padding-left: 24px;
}
.prompt-form .prompt-input::placeholder {
  color: var(--placeholder-color-ai);
}
.prompt-wrapper button {
  width: 56px;
  height: 100%;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.4rem;
  border: none;
  color: var(--text-color-ai);
  background: var(--secondary-color-ai);
  transition: 0.3s ease;
}
.prompt-wrapper :is(button:hover, #cancel-file-btn, .file-icon) {
  background: var(--secondary-hover-color-ai);
}
.prompt-form .prompt-actions {
  gap: 5px;
  margin-right: 7px;
}
.prompt-wrapper .prompt-form :where(.file-upload-wrapper, button, img) {
  position: relative;
  height: 45px;
  width: 45px;
}
.prompt-form .prompt-actions #send-prompt-btn {
  color: #fff;
  display: none;
  background: #1d7efd;
}
.prompt-form .prompt-input:valid~.prompt-actions #send-prompt-btn {
  display: block;
}
.prompt-form #send-prompt-btn:hover {
  background: #0264e3;
}
.prompt-form .file-upload-wrapper :where(button, img) {
  display: none;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
}
.prompt-form .file-upload-wrapper.active #add-file-btn {
  display: none;
}
.prompt-form .file-upload-wrapper #add-file-btn,
.prompt-form .file-upload-wrapper.active.img-attached img,
.prompt-form .file-upload-wrapper.active.file-attached .file-icon,
.prompt-form .file-upload-wrapper.active:hover #cancel-file-btn {
  display: block;
}
.prompt-form :is(#stop-response-btn:hover, #cancel-file-btn) {
  color: #d62939;
}
.prompt-wrapper .prompt-form .file-icon {
  color: #1d7efd;
}
.prompt-form #stop-response-btn,
body.bot-responding .prompt-form .file-upload-wrapper {
  display: none;
}
body.bot-responding .prompt-form #stop-response-btn {
  display: block;
}
.prompt-container-ai .disclaimer-text {
  font-size: 0.9rem;
  text-align: center;
  padding: 16px 20px 0;
  color: var(--placeholder-color-ai);
}
/* Responsive media query code for small screens */
@media (max-width: 768px) {
  .container-ai {
    padding: 20px 0 100px;
  }
  .app-header :is(.heading-ai, .sub-heading-ai) {
    font-size: 2rem;
    line-height: 1.4;
  }
  .app-header .sub-heading-ai {
    font-size: 1.7rem;
  }
  .container-ai .chats-container-ai {
    gap: 15px;
  }
  .chats-container-ai .bot-message {
    margin: 4px auto;
  }
  .prompt-container-ai :where(.prompt-wrapper, .prompt-form, .prompt-actions) {
    gap: 8px;
    height: 53px;
  }
  .prompt-container-ai button {
    width: 53px;
  }
  .prompt-form :is(.file-upload-wrapper, button, img) {
    height: 42px;
    width: 42px;
  }
  .prompt-form .prompt-input {
    padding-left: 20px;
  }
  .prompt-form .file-upload-wrapper.active #cancel-file-btn {
    opacity: 0;
  }
  .prompt-wrapper.hide-controls :where(#theme-toggle-btn, #delete-chats-btn) {
    display: none;
  }
}








/*CSS FOR AI*/

.select3 .select2-container {
    width: 100% !important;
}

.select2-container {
width: 100% !important;
}

.table-responsive .dataTable-container {
    overflow: auto;
}

.company_pagination .flex-sm-fil div {
    width: 100% !important;
}

.Permission {
    white-space: inherit !important;
}
.main_dashupgrade{
    overflow: hidden;
    position: relative;
}
.main_dashupgrade::after{
    content: "";
    width: 100px;
    height: 100px;
    top: -20%;
    right: -10%;
    border-radius: 100px;
    position: absolute;
}
.main_dashupgrade::before{
    content: "";
    width: 5px;
    height: 80%;
    left: 0px;
    top: 10%;
    border-radius: 100px;
    position: absolute;
}
.upgrade1grid h3, .upgrade1grid .text-dark{
    color: #B12147 !important;
    font-weight: 900;
}
.upgrade2grid h3, .upgrade2grid .text-dark{
    color: #6c757d !important;
    font-weight: 900;
}
.upgrade3grid h3, .upgrade3grid .text-dark{
    color: #6fd943 !important;
    font-weight: 900;
}
.upgrade4grid h3, .upgrade4grid .text-dark{
    color: #008ECC !important;
    font-weight: 900;
}
.upgrade5grid h3, .upgrade5grid .text-dark{
    color: #ffa21d !important;
    font-weight: 900;
}
.upgrade6grid h3, .upgrade6grid .text-dark{
    color: #3ec9d6 !important;
    font-weight: 900;
}
.upgrade9grid h3, .upgrade9grid .text-dark{
    color: #B51689 !important;
    font-weight: 900;
}
.upgrade10grid h3, .upgrade10grid .text-dark{
    color: #2d2b47 !important;
    font-weight: 900;
}
.upgrade11grid h3, .upgrade11grid .text-dark{
    color: #4d0a21 !important;
    font-weight: 900;
}
.upgrade12grid h3, .upgrade12grid .text-dark{
    color: #133261 !important;
    font-weight: 900;
}
.upgrade13grid h3, .upgrade13grid .text-dark{
    color: #e64922 !important;
    font-weight: 900;
}
.upgrade1grid::before, .upgrade1grid::after{
    background: #B12147;
}
.upgrade2grid::before, .upgrade2grid::after{
    background: #6c757d;
}
.upgrade3grid::before, .upgrade3grid::after{
    background: #6fd943;
}
.upgrade4grid::before, .upgrade4grid::after{
    background: #008ECC;
}
.upgrade5grid::before, .upgrade5grid::after{
    background: #ffa21d;
}
.upgrade6grid::before, .upgrade6grid::after{
    background: #3ec9d6;
}
.upgrade7grid::before, .upgrade7grid::after{
    background: #3ec9a6;
}
.upgrade8grid::before, .upgrade8grid::after{
    background: #ed7b59;
}
.upgrade9grid::before, .upgrade9grid::after{
    background: #B51689;
}
.upgrade10grid::before, .upgrade10grid::after{
    background: #2d2b47;
}
.upgrade11grid::before, .upgrade11grid::after{
    background: #4d0a21;
}
.upgrade12grid::before, .upgrade12grid::after{
    background: #133261;
}
.upgrade13grid::before, .upgrade13grid::after{
    background: #e64922;
}
.theme_back7{
    background-color: #3ec9a6;
}

.theme_back8{
    background-color: #ed7b59;
}
.theme_back9{
    background-color: #B51689;
}
.theme_back10{
    background-color: #2d2b47;
}
.theme_back11{
    background-color: #4d0a21;
}
.theme_back12{
    background-color: #133261;
}
.theme_back13{
    background-color: #e64922;
}
.action-btn{
    width: 29px;
    height: 28px;
    border-radius: 9.3552px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.repeater-action-btn {
    /* width: 23px;
    height: 23px;
    border-radius: 9.3552px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0; */
}
.delete-form-btn{
    display: inline;
}

.dash-sidebar .main-logo {
    justify-content: center;
    /*height: 100%;*/
    min-height: 80px;
    max-height: 80px;
    width: 100%;
    min-width: 255px;
    /*max-width: 255px;*/
}
/*a.b-brand {*/
/*    height: 100%;*/
/*    width: 100%;*/
/*}*/
.dash-sidebar .main-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    width: auto !important;
    height: auto;
    max-width: -webkit-fill-available !important;
    max-height: -webkit-fill-available !important;
    max-width: -moz-available;
    max-height: -moz-available;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.price-card {
    text-align: center;
    position: relative;
    margin-top: 30px;
    height: 100%;
    max-height: 510px;

}
.buttons_conatinstop{
    display: flex;
    align-items: center;
    gap: 10px;
}
.create_btntop{
    padding:10px 15px;
    color:#316FF6 !important;
    border:1px solid #316FF6;
    border-radius:100px;
    background:#fff;
    display:flex;
    align-items:center;
    width: max-content;
}
.create_btntop i{
    color:#316FF6 !important;
}
.export_import_btntop{
    padding:10px 15px;
    color:#fff !important;
    border:1px solid #316FF6;
    border-radius:100px;
    background:#316FF6;
    display:flex;
    align-items:center;
    width: max-content;
}
.export_import_btntop i{
    color:#fff !important;
}

.beforemobile{
        display:none ;
    }
    .logo_hider{
        display:none !important;
    }
    .aftermobile{
        display:block;
    }
    .main_logoheader{
        display:none;
        
    }
    .menulogo_set{
        display:block !important;
    }
.dash-sidebar.mob-sidebar-active{
    width:280px;
    overflow:hidden !important;
    z-index: 999;
}
.logomain_header{
    display:none !important;
}
.dash-footer{
    margin-left:0px !important;
    display:flex;
    justify-content:center;
    width: 100%;
    padding-top:25px;
    padding-bottom:25px;
    background:#fff;
}
.dash-container{
    background: #E9F3FF;
}
@media (max-width: 1025px) {
    .max_heightscrset{
        min-height:200px !important;
    }
    .simplebar-content{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 77px;
    }
}

@media (max-width: 780px) {
    .simplebar-content{
        margin-top: 30px;
    }
    
}
 .main_header_setter li a{
  /*white-space: nowrap;*/

 }
 
 .main_header_setter {
       /*overflow: auto !important;*/
 }
@media (min-width: 1025px) {
    .dash-footer{
        margin-left:80px !important;
        width: calc(100% - 80px) !important;
        top:0px;
        margin-bottom:0px;
    }
    .logomain_header{
        display:block!important;
        width:135px;
    }
    .dash-header .header-wrapper{
        padding-left:80px;
        padding-right: 0px;
      
    }
    .menulogo_set{
        display:none !important;
    }
    .main_headerlinks_separate{
        background: #fff;
    }
    .logo_hider{
        display:block !important;
    }
    .main_logoheader img{
        width:135px !important;
    }
    .dash-header{
        background:#E9F3FF !important;
        position:sticky !important;
        top:0px !important;
        z-index:9999999 !important;
    }
    .beforemobile{
        display:block;
    }
    .aftermobile{
        display:none;
    }
    .main_hover_setter{
        width:80px;
        background-color: #E9F3FF !important;
        z-index:999999999 !important;
    }
    .navbar-content{
        height:100vh !important;
    }
    .dash-navbar{
        display:flex !important;
        /*height:83%;*/
        flex-direction:column;
        justify-content:flex-start;
    }
    .dash-mtext{
        display:none !important;
    }
    .dash-container{
        margin-left:80px;
        top:0px !important;
        background: #E9F3FF;
    }
    .main_hover_setter:hover{
        width:255px !important;
    }
    .main_hover_setter:hover .dash-mtext {
        display: block !important;
    }
    .main_hover_setter:hover .dash-link{
        display:flex;
        align-items:center;
        z-index:9999999999!important;
    }
    .main_header_setter li a{
        color: #0000009c;
       
        
    }
    .activators a{
        margin-top:2px !important;
        margin-bottom:2px !important;
    }
    .main_hover_setter:hover .noneactive a{
        padding-top:7px !important;
        padding-bottom:7px !important;
    }
    .noneactive a{
        margin-top:2px !important;
        margin-bottom:2px !important;
        padding-top:4px !important;
        padding-bottom:4px !important;
    }
    .main_header_setter{
        justify-content:space-evenly;
        padding:10px 0px;
    }
    .main_header_setter li {
        margin:0px 10px;
    }
    .main_header_setter .active a{
        font-weight:600;
        border-radius: 20px 20px 0px 0px;
        padding: 11px 15px !important;
        color:#000 !important;
        background:#E9F3FF;
    }
    .main_hover_setter:hover .activators a{
        box-shadow: none !important;
        color:#000 !important;
        width:max-content !important;
        background:transparent !important;
        border-bottom:4px solid #316ff6 !important;
        border-radius:0px !important;
    }
    .main_hover_setter:hover .dash-micon{
        display:none !important;
    }
    .noneactive:hover a{
        border-radius:0px !important;
    }
    .main_logo_otune{
        padding:10px !important;
        margin-bottom:10px;
        display:block !important;
    }
    .logomain_only{
        width:100%;
        display:none;
    }
    .logo_o_only{
        display:block;
        width:80%;
    }
    .main_hover_setter:hover .logomain_only{
        display:block;
    }
    .main_hover_setter:hover .logo_o_only{
        display:none;
    }
    
}
.main_logo_otune{
    display:none;
}

.price-card.price-2 {
    color: #fff;
}
.price-card.price-2 .price-badge {
    color: #fff;
    background: #1C232F;
}
.price-card .p-price {
    font-size: 80px;
}
.price-card .price-badge {
    color: #fff;
    padding: 7px 24px;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.price-card .list-unstyled {
    display: inline-block;
}
.price-card .list-unstyled li {
    display: flex;
    align-items: center;
}
.price-card .list-unstyled li + li {
    margin-top: 8px;
}
.price-card .list-unstyled .theme-avtar {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #fff;
    margin-right: 15px;
    margin-left: 0px;
}
.side-feature {
    overflow: hidden;
}
.faq .accordion .accordion-item {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    margin-bottom: 10px;
}

.faq .accordion .accordion-item .accordion-button {
    font-weight: 500;
    padding: 1.3rem 1.25rem;
}

.faq .accordion .accordion-item .accordion-button span > i {
    font-size: 20px;
    margin-right: 8px;
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
    border-radius: 10px;
    background: transparent;
    box-shadow: 0 6px 30px rgba(182, 186, 203, 0.3);
}

.faq .accordion .accordion-item .accordion-body {
    /*padding: 2.3rem 2.3rem 2.3rem 3rem;*/
    padding: 1rem 1.25rem;
}

.choose-files div {
    color: #fff;
    background: #584ED2 !important;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    max-width: 155px !important;
    font-size: 12px;
    font-weight: 500;
}
.file {
    position: relative !important;
    left: 0;
    opacity: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.file-icon {
    width: 30px;
    height: 30px;
    background: #0F5EF7;
    border-radius: 50px;
    float: left;
    text-align: center;
}
.file-icon i {
    color: #fff;
    z-index: 9999;
    position: relative;
    font-size: 14px;
}
.first-file {
    width: 100%;
    float: left;
    padding-bottom: 20px;
    position: relative;
}
.file-des {
    width: calc(100% - 40px);
    float: right;
    color: #A3AFBB;
    font-size: 12px;
}
.file-des span {
    width: 100%;
    float: left;
    color: #011C4B;
}
.general-tab .column-card {
    flex-direction: column;
}
.first-file:before {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 100%;
    background: var(--bs-primary) !important;
    content: "";
    left: 25px;
}
.first-file:last-child:before {
    background: none;
}
.setting-favimg{
    width: 100px;
}
.setting-logoimg{
    width: 200px;
}
.colorinput {
    margin: 0;
    position: relative;
    cursor: pointer;
}

.colorinput-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.colorinput-color {
    background-color: #fdfdff;
    border-color: #e4e6fc;
    border-width: 1px;
    border-style: solid;
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 3px;
    color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.colorinput-color:before {
    content: '';
    opacity: 0;
    position: absolute;
    top: .25rem;
    left: .25rem;
    height: 1.25rem;
    width: 1.25rem;
    transition: .3s opacity;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E") no-repeat center center/50% 50%;
}

.colorinput-input:checked~.colorinput-color:before {
    opacity: 1;
}

.img_setting {
    filter: drop-shadow(2px 3px 7px #011C4B);
}
.btn-apply
{
    font-size: 31px;
}
.avatar {
    text-align: center;
    border-radius: 100%;
    overflow: hidden;
    /* background-color: #eee; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.avatar-sm {
    width: 2.4375rem;
    height: 2.4375rem;
    font-size: 0.75rem;
    border-radius: 0.2rem;
}

.avatar {
    position: relative;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-size: 1rem;
    font-weight: 600;
    height: 3.125rem;
    width: 3.125rem;
    border-radius: 0.25rem;
}

.avatar img {
    width: 100%;
    border-radius: 0.25rem;
}

.avatar.rounded-circle img {
    border-radius: 50%;
}

/*.avatar span {*/
/*    background-color: #051C4B;*/
/*}*/

.avatar + .avatar {
    margin-left: .25rem;
}

.avatar + .avatar-content {
    display: inline-block;
    margin-left: .75rem;
}

.avatar-xl {
    width: 6rem;
    height: 6rem;
    font-size: 1.375rem;
}

.avatar-lg {
    width: 4rem;
    height: 4rem;
    font-size: 1.25rem;
}

.avatar-sm {
    width: 2.4375rem;
    height: 2.4375rem;
    font-size: 0.75rem;
    border-radius: 0.2rem;
}

.avatar-group {
    display: inline-block;
    line-height: 1;
}

.avatar-group .avatar {
    z-index: 1;
    transition: margin 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .avatar-group .avatar {
        transition: none;
    }
}

.avatar-group .avatar img {
    border: 2px solid #FFF;
}

.avatar-group .avatar:hover {
    z-index: 2;
}

.avatar-group .avatar + .avatar {
    margin-left: -1.25rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.avatar-group .avatar-sm + .avatar-sm {
    margin-left: -1rem;
}

.avatar-group:hover .avatar {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.avatar-group:hover .avatar-sm {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.hover-avatar-ungroup:hover .avatar:not(:first-child) {
    margin-left: 0;
}

.avatar-parent-child {
    display: inline-block;
    position: relative;
}

.avatar-child {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 2px solid #FFF;
    border-radius: 0.2rem;
}

.avatar.rounded-circle + .avatar-child {
    border-radius: 50%;
}

.avatar + .avatar-child {
    width: 20px;
    height: 20px;
}

.avatar-lg + .avatar-child {
    width: 24px;
    height: 24px;
}

.avatar-sm + .avatar-child {
    width: 16px;
    height: 16px;
}

.avatar + .avatar-badge {
    width: 14px;
    height: 14px;
    right: -6px;
    bottom: 15px;
}

.avatar-lg + .avatar-badge {
    width: 16px;
    height: 16px;
    right: -5px;
    bottom: 20px;
}

.avatar-sm + .badge {
    width: 12px;
    height: 12px;
    right: -6px;
    bottom: 10px;
}

.avatar-connect {
    position: relative;
}

.avatar-connect:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-bottom: 2px dashed #EFF2F7;
}

.avatar-connect ul {
    margin: 0;
    padding: 0;
    list-style: none;
}





.rating {
    border: none;
    float: left;
}

.rating>input {
    display: none;
}

.rating>label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating>.half:before {
    content: "\f089";
    position: absolute;
}

.rating>label {
    color: #ddd;
    float: right;
}

.rating>input:checked~label,
.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #FFD700;
}

.rating>input:checked+label:hover,
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
.rating>input:checked~label:hover~label {
    color: #FFED85;
}
.table td .progress {
    height: 7px;
    width: 120px;
    margin: 0;
}

.mtt{
    margin-top: 35px;
}


.custom_messanger_counter {
    position: relative;
    top: -15px;
    left: -5px;
}

.dash-sidebar .main-logo {
    justify-content: center;
    /*height: 100%;*/
    min-height: 80px;
    max-height: 80px;
    width: 100%;
    min-width: 255px;
    /*max-width: 255px;*/
}
a.b-brand {
    height: 100%;
    width: 100%;
}
.dash-sidebar .main-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    width: auto !important;
    height: auto;
    max-width: -webkit-fill-available !important;
    max-height: -webkit-fill-available !important;
    max-width: -moz-available;
    max-height: -moz-available;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}
.m-view-btn {
    width: 65px;
    padding: 8px 10px;
    line-height: normal;
    border-radius: 10px;
    color: #fff;
}
.m-view-btn a {
    float: right;
    color: #fff;
    text-decoration: underline;
}

.white-sapce-nowrap {
    white-space: nowrap;
}
.list-group-flush > .list-group-item:last-child {
    border: none;
    border-bottom-width: 0;
}

.active_color{
    border: 2px solid #000 !important;
}
.display-total-time {
    font-size: 14px;
    font-weight: 500;
    height: 50px;
    border: 1px solid rgba(221, 221, 221, 1);
    padding: 12px;
    background: rgba(241, 241, 241, 1);
    text-align: center;
    border-radius: 4px;
    width: 100%;
    color:black;
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.rating-stars ul {
    list-style-type: none;
    padding: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.rating-stars ul > li.star {
    display: inline-block;
}
.rating-stars ul > li.star.selected > i.ti {
    color: #FF912C;

}
.rating-stars ul > li.star.selected > i.fa {
    fill: #FF912C;
}


.navbar.default.top-nav-collapse {
    background: transparent;
    box-shadow: none;
}
.active_color{
    border: 2px solid #000 !important;
}
.login-deafult{
    width: 139px !important;
}
/* card-icon-text-space */
.card-icon-text-space{
    margin-right: 5px;
}


.horizontal-scroll-cards p {
    width: 120px;
}
.horizontal-scroll-cards  img {
    border: 2px solid #fff;
    padding: 0px;
}

.full-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.card-body.project_table {
    height: 400px;
    overflow-y: auto;
}
.project_table::-webkit-scrollbar {
    width: 3px;
}
.project_table::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px #f2f2f2;
}

.project_table::-webkit-scrollbar-thumb {
    background-color: #bababa;
}

.round-img {
    width: 80px;
    height: 80px;
    object: cover !important;
}


.big-logo {
    width: 150px;
    height: 60px;
}
.card-2{
    height: 100%;
    /* max-height: 480px; */
    margin-bottom: 0;
}
.full-card {
    min-height: 236px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fulls-card{
    min-height: 180px;
}

.kanban-card img {
    position: relative;
    width: 39px;
    height: 38px;
    border-radius: 50% !important;
    z-index: 2;
    transition: all 0.1s ease-in-out;
    border: 2px solid #ffffff;
}


.grid_user_image img {
    margin-left: -10px;
    border: 2px solid #dbdbdb;
}

.dataTable-table > thead > tr > th {
    padding: 15px 40px 15px 0;
}
.dataTable-sorter::before, .dataTable-sorter::after {
    right: -20px;
}
.status_badge {
    min-width: 95px;
}


.plan_card {
    width: 25%;
    float: left;
    margin-bottom: 40px;
}
.plan_card .card-body {
    min-height: 450px;
}
.active-tag{
    position: absolute;
    right: 20px;
}
.display-total-time{
    margin-top: 0;
}
@media only screen and (max-width: 1700px) {
    .plan_card {
        width: 33.33%;
        float: left;
        margin-bottom: 80px !important;
    }
}

@media only screen and (max-width: 1440px) {
    .plan_card {
        width: 33.33%;
        float: left;
        margin-bottom: 30px !important;
    }
}

@media only screen and (max-width: 1366px) {
    .plan_card {
        width: 50%;
        float: left;
    }
}

@media only screen and (max-width: 1199px) {
    .plan_card {
        width: 50%;
        float: left;
    }
}



@media only screen and (max-width: 991px) {
    .plan_card {
        width: 100%;
        float: left;
    }
}

.doc_status_badge {
    min-width: 100px;
}

.list_card{
    min-height: 400px;
}
.customer_card{
    height: 100%;
}
.vendor_card{
    height: 180px;
}
.logo_card{
    min-height: 280px;
}
.img_preview{
    width: 150px;
    height: 130px;
}
.setting_logo{
    top: -35px;
}
.choose-files input[type="file"]{
    display: none ;
}
.drp-languages .drp-language .dropdown-toggle{
    color: #525B69;
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.7rem;
    margin: 0 7.5px;
    border-radius: 4px;
    position: relative;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid rgba(206, 206, 206, 0.2);
}
.email_temp{
    height: 450px !important;
    overflow-y: scroll;
}
.emp_details{
    min-height: 420px !important;
}
.green-text{
    color: green;
}
.red-text{
    color: red;
}
.activity-scroll{
    overflow: scroll;
    height: 500px;
}
.leads-scroll{
    overflow-y: scroll;
    max-height: 400px;
}

.job-create{
    min-height: 488px;
}
.email-color{
    background: #FFFFFF;
}

.svg-inline--fa.fa-w-16 {
    width: 1em;
}
.svg-inline--fa.fa-w-20 {
    width: 1.25em;
}

/*POS SYSTEM CSS*/
.purchase_status{
    min-width: 95px;
}

.pos-top-bar{
    background: #6fd944;
    border-radius: 10px;
    padding: 15px;
}

.product-list-block .product-custom-card {
    border-radius: 10px;
    box-shadow: 0 4px 20px 1px rgba(0,0,0,.06),0 1px 4px rgba(0,0,0,.08);
    cursor: pointer;
    margin-bottom: 16px;
    margin-left: 8px;
    margin-right: 8px;
    outline: 1px solid #e0e3ff;
    width: calc(24.96% - 16px);
}

.product-list-block .product-custom-card .card {
border-color: transparent!important;
border-radius: 10px;
border: 0;
box-shadow: none;
    margin-bottom: 0;
}
.product-list-block .product-custom-card .card .card-img-top {
height: 100px!important;
max-height: 100px!important;
-o-object-fit: contain;
object-fit: contain;
width: 100%!important;
border:0;
}
.product-list-block .product-custom-card h6{
    font-size: 14px;
}

.product-list-block .product-custom-card .fs-small {
    font-size: 12px;
}

 .product-list-block .product-custom-card .item-badges {
    position: absolute;
    left: 0;
    top: -3px;
}

.product-list-block .product-custom-card__card-badge {
    border-radius: 4px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    padding: .25em .4em;
    text-align: center;
    vertical-align: baseline;
    white-space: nowrap;
}


.right-content .product-list-block {
    height: auto;
    max-height: 500px;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 25px;
}

.right-content .button-list__item-active {
    background-color: #6571ff!important;
    border-color: #6571ff!important;
    color: #FFFFFF;
}
.sub-total .total-price{
    padding-bottom: 15px;
    border-bottom: 2px dashed #c5c5c5;
}
.button-list .button-list__item{
    margin-bottom: 0.5rem;
}
.cat-pad{
    background-color: #6fd944;
}

@media screen and (max-width:767px){

    .product-list-block .product-custom-card{
        width: 100%;
    }
}


.carttable .quantity.buttons_added {
    text-align: left;
    position: relative;
    white-space: nowrap;
    vertical-align: top;
}

.carttable .quantity.buttons_added .minus {
    border-right: 0;
}

.carttable .quantity.buttons_added input {
    display: inline-block;
    margin: 0;
    vertical-align: top;
    box-shadow: none;
}

.carttable .quantity .input-number {
    width: 60px;
    height: 35px;
    padding: 0 0px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #efefef;
}

.carttable .quantity.buttons_added .plus {
    border-left: 0;
}

.carttable .quantity.buttons_added .minus,
.carttable .quantity.buttons_added .plus {
    padding: 4px 10px 8px;
    height: 35px;
    background-color: #ffffff;
    border: 1px solid #efefef;
    cursor: pointer;
}

.form-row>.zoom-in {
    transition-property: background-color, border-color, color, fill, opacity, box-shadow, transform;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
    cursor: pointer;
    margin-bottom: 10px !important;
}

.zoom-in:hover {
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
}
#product-listing .toacart {
    cursor: pointer;
}
.cat-list-btn .btn-primary {
    color: #3f3f3f !important;
}

body.theme-1 .cat-list-btn .btn-primary {
    background: #fff !important;
    border-color: #fff !important;
}
body.theme-1 .cat-list-btn .cat-active .btn-primary {
    background: #0CAF60 !important;
    border-color: #0CAF60 !important;
    color: #fff !important;
}

body.theme-2 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-2 .cat-list-btn .cat-active .btn-primary {
    background-color: #584ED2 !important;
    border-color: #584ED2 !important;
    color: #fff !important;
}

body.theme-3 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-3 .cat-list-btn .cat-active .btn-primary {
    background-color: #6fd943 !important;
    border-color: #6fd943 !important;
    color: #fff !important;
}

body.theme-4 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-4 .cat-list-btn .cat-active .btn-primary {
    background-color: #145388 !important;
    border-color: #145388 !important;
    color: #fff !important;
}
body.theme-5 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-5 .cat-list-btn .cat-active .btn-primary {
    background-color: #B9406B !important;
    border-color: #B9406B !important;
    color: #fff !important;
}
body.theme-6 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-6 .cat-list-btn .cat-active .btn-primary {
    background-color: #008ECC !important;
    border-color: #008ECC !important;
    color: #fff !important;
}
body.theme-7 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-7 .cat-list-btn .cat-active .btn-primary {
    background-color: #922C88 !important;
    border-color: #922C88 !important;
    color: #fff !important;
}
body.theme-8 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-8 .cat-list-btn .cat-active .btn-primary {
    background-color: #C0A145 !important;
    border-color: #C0A145 !important;
    color: #fff !important;
}
body.theme-9 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-9 .cat-list-btn .cat-active .btn-primary {
    background-color: #48494B !important;
    border-color: #48494B !important;
    color: #fff !important;
}
body.theme-10 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-10 .cat-list-btn .cat-active .btn-primary {
    background-color: #0C7785 !important;
    border-color: #0C7785 !important;
    color: #fff !important;
}


.top-badge {
    position: absolute;
    top: 0;
    right: 0;
}
.product-title-name {
    font-size: 13px;
    font-weight: 600;
    flex: 1;
    min-height: 33px;
}
.product-body-nop .form-row [class*="col-"] {
    display: flex;
}
.cat-active .btn {
    color: #fff;
}
.tab-btns {
    min-width: 100px;
    white-space: nowrap;
    border-radius: 0.625rem!important;
    padding: 10px 20px;
    font-size: 12px;
}
.cart-product-list .table tr th {
    padding: 5px 15px !important;
}
.total-price h6 {
    font-size: 11px;
}
.product-body-nop .card:not(:last-of-type) {
    margin-bottom: 12px;
}
.product-body-nop {
    height: calc(100vh - 260px);
    overflow-y: auto;
    overflow-x: hidden;
    margin-right: -7px;
    padding-right: 7px;
}
.product-body-nop::-webkit-scrollbar {
    width: 5px;
    margin-right: -5px;
}
.product-body-nop::-webkit-scrollbar-thumb {
    background-color: lightgrey;
    border-radius: 10px;
}
.sop-card {
    margin-bottom: 10px;
}

.carttable-scroll {
    height: calc(100vh - 115px);
}
.carttable-scroll .table-responsive {
    height: calc(100vh - 300px);
}
.carttable-scroll .table-responsive::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    margin-right: -5px;
}
.carttable-scroll .table-responsive::-webkit-scrollbar-thumb {
    background-color: lightgrey;
    border-radius: 10px;
}
.carttable-scroll .name,
.carttable-scroll .tax {
    padding: 0 !important;
}
.carttable-scroll .tax {
    text-align: center;
}
.total-section {
    width: 100%;
    background: #f1f1f1;
    padding: 15px 15px;
    border-radius: 10px;
    box-shadow: 0px 10px 10px -10px #97979780;
}

.sop-card {
    height: 100%;
}

.product-body-nop .card{
    width:100%;
}
.product-body-nop .card  .avatar {
    object-fit: scale-down;
    padding: 20px 0 10px;
    background: transparent;
    min-height: 9rem;
    width: 100%;
}
.product-body-nop .card  .card-body {
    flex: 1 1 auto;
    padding: 25px 25px;
    display: flex;
    flex-direction: column;
}
.product-body-nop .card  .badge {
    padding: 4px 10px;
    width: auto;
    max-width: 100px;
    margin: 0 auto 0 0;
}
.product-body-nop .card  .shadow{
    box-shadow: none !important;
}
.toacart{
    display: flex;
}
.product-body-nop .card .product-title-name{
    min-height: unset;
}

/*END POS SYSTEM CSS*/

/*for messages counter*/
.message-counter {
    position: absolute !important;
    top: fpx !important;
    right: 4px !important;
    border-radius: 50%;
    font-size: 10px;
    left: 22px !important;
    width: 15px !important;
    height: 15px;
    text-align: center !important;
    color: #fff !important;
}

/*for messages counter*/

.status-drp .dash-head-link {
    color: #525b69;
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.7rem;
    margin: 0 4px;
    border-radius: 12px;
    position: relative;
    font-weight: 500;
    border: 1px solid rgba(206, 206, 206, 0.2);
    background-color: #fff;
}

/* start Rating Star Widgets Style - job application star*/
.rating-stars ul {
    list-style-type: none;
    padding: 0;

    -moz-user-select: none;
    -webkit-user-select: none;
}

.rating-stars ul > li.star {
    display: inline-block;

}
.rating-stars ul > li.star > i.fas {
    font-size: 1.5em; /* Change the size of the stars */
    color: #ccc; /* Color on idle state */
}

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i.fas {
    color: #FFCC36;
}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fas {
    color: #ffa21d;
}


.static-rating {
    display: inline-block;
}

.static-rating .star {
    color: #E0E6ED;
}

.static-rating .voted {
    color: #ffa21d;
}

/* end start Rating Star Widgets Style - job application star*/



/* project_report */
.img_group {
    margin-left: -14px;
}
.circular-progressbar .flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
}

.circular-progressbar .single-chart {
    width: 60%;
    justify-content: space-around;
}

.circular-progressbar .circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    max-height: 550px;
}

.circular-progressbar .circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circular-progressbar .circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.circular-progressbar .circular-chart.red .circle {
    stroke: #ff3a6e;
}

.circular-progressbar .circular-chart.orange .circle {
    stroke: #fd7e14;
}

.circular-progressbar .circular-chart.green .circle {
    stroke: #6fd943;
}

.circular-progressbar .circular-chart.blue .circle {
    stroke: #3c9ee5;
}

.circular-progressbar .percentage {
    /* fill: #666;*/
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}
.circular-progressbar .flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
}

.circular-progressbar .single-chart {
    width: 60%;
    justify-content: space-around;
}

.circular-progressbar .circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    max-height: 550px;
}

.circular-progressbar .circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circular-progressbar .circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.circular-progressbar .circular-chart.red .circle {
    stroke: #ff3a6e;
}

.circular-progressbar .circular-chart.orange .circle {
    stroke: #fd7e14;
}

.circular-progressbar .circular-chart.green .circle {
    stroke: #6fd943;
}

.circular-progressbar .circular-chart.blue .circle {
    stroke: #3c9ee5;
}

.circular-progressbar .percentage {
    /* fill: #666;*/
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}
.pos-header{
    background-color: #e7e9ec;
}

.table.modal-table td,
.table.modal-table th {
    white-space: normal;
}
.task-calendar-scroll{
    overflow-y: scroll;
    height: 827px;
}


/*start pos thermal print */
.pos-module-tbl td, .pos-module-tbl th {
    padding: 0px !important;
}
.pos-module .product-border {
    border-bottom: 3px dotted #d8d8d8!important;
}
/*end pos print */


/*start balance-sheet new theme*/
.nav-pills.cust-nav {
    background: #E1E9ED;
}
.nav-pills.cust-nav .nav-item .nav-link {
    color: #162C4E;
}

.data-wrapper{
    /* height: 100%; */
    display: flex;
    flex-direction: column;
}
.data-wrapper .data-body{
    flex: 1;
}

/*.data-wrapper .data-body .list-group-item:nth-child(2) {*/
/*    flex: 1;*/
/*}*/

/* end balance-sheet new theme*/



/* JOB PAGE START */
.job-wrapper .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.job-banner {
    position: relative;
    background-color: unset;
}

.job-banner .job-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.job-banner .job-banner-bg img {
    width: 100%;
    height: 100%;
}

.job-banner .job-banner-content {
    padding: 5.9% 0;
    max-width: 360px;
    width: 100%;
    margin: auto;
}

.placedjob-section .section-title {
    padding: 35px 25px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    margin-top: -20px;
    text-align: center;
}

.job-card-body {
    padding: 15px;
    border-radius: 15px;
    background: linear-gradient(277.29deg, rgba(111, 217, 67, 0.09) 0.99%, rgba(111, 217, 67, 0) 100.89%);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border: 1px solid #6FD943;
}

.placedjob-section {
    padding-bottom: 80px;
    background-color: unset;

}

.job-content .container {
    max-width: 1540px;
}

@media screen and (max-width:767px) {
    .job-banner .job-banner-content {
        padding: 10% 0;
    }
}

@media screen and (max-width:575px) {
    .job-banner .job-banner-content {
        padding: 21% 0;
    }
    .account-main-inner p, .account-inner{
        padding-left: 0 !important;
    }
}

.job-card{
    display: flex;
    flex-wrap: wrap;
}
.job-card .job-card-body{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.job-card .job-card-body h5{
    flex: 1;
}

/* JOB PAGE END */


/* apply job section */

.apply-job-section {
    padding-bottom: 80px;
    background-color: unset;

}

.apply-job-section .apply-job-wrapper{
    padding: 35px 25px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    margin-top: -20px;
}

@media screen and (max-width:767px) {
    .job-banner .job-banner-content {
        padding: 10% 0;
    }
    .apply-job-section .apply-job-wrapper{
        padding: 35px 15px;
    }
}

@media screen and (max-width:575px) {
    .job-banner .job-banner-content {
        padding: 26% 0;
    }
}

/* apply job section */

.stage li{
    cursor: pointer;
}
@media (min-width: 420px) {
    .seo_image{
        height: 200px;
        width: 360px
    }
    }

    @media (max-width: 420px) {
        .seo_image{
            height: 150px;
            width: 200px
        }
        }
.disabledCookie {
    pointer-events: none;
    opacity: 0.4;
}
.cookie_btn{
    margin-right: 15px;
}


/*start for payment setting*/
.setting-accordion .accordion-item {
    border: 1px solid #E0E6EF !important;
    border-radius: 7px;
}

.setting-accordion .accordion-header {
    background: #F8F8F8;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.setting-accordion .accordion-header .accordion-button {
    background: #F8F8F8 !important;
    display: flex;
    justify-content: space-between;
    border-radius: 7px;
    box-shadow: none;
    border-bottom: 1px solid transparent;
}

.setting-accordion .accordion-header .accordion-button:not(.collapsed) {
    border-color: #E0E6EF;
}

.setting-accordion .accordion-header .accordion-button span {
    flex: 1;
}

.setting-accordion .accordion-header .accordion-button::after {
    margin: 0 0 0 5px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cpath opacity='0.4' d='M12 22.4146C17.5228 22.4146 22 17.9374 22 12.4146C22 6.8917 17.5228 2.41455 12 2.41455C6.47715 2.41455 2 6.8917 2 12.4146C2 17.9374 6.47715 22.4146 12 22.4146Z' fill='%2325314C'/%3E%3Cpath d='M15.5301 12.8845C15.2371 12.5915 14.762 12.5915 14.469 12.8845L12.749 14.6045V8.41455C12.749 8.00055 12.413 7.66455 11.999 7.66455C11.585 7.66455 11.249 8.00055 11.249 8.41455L11.249 14.6035L9.52908 12.8835C9.23608 12.5905 8.76104 12.5905 8.46804 12.8835C8.17504 13.1765 8.17504 13.6516 8.46804 13.9446L11.468 16.9446C11.537 17.0136 11.62 17.0684 11.711 17.1064C11.802 17.1444 11.9001 17.1646 11.9981 17.1646C12.0961 17.1646 12.1929 17.1444 12.2849 17.1064C12.3769 17.0684 12.4591 17.0136 12.5281 16.9446L15.5281 13.9446C15.8231 13.6516 15.8231 13.1775 15.5301 12.8845Z' fill='%2325314C'/%3E%3C/svg%3E");
    background-size: 24px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.setting-accordion .accordion-item:not(:last-of-type) {
    margin-bottom: 15px;
}
/*end for payment setting*/


.float-end a > i{
    color: #FFFFFF;
}
.modal-footer .btn-light{
    margin-right: 13px;
}


/*.fc-timegrid-event-harness-inset{*/
/*    inset: 494px 0% -566px !important;*/
/*}*/


.fc-timegrid-event-harness{
    position: absolute !important;
}
.status-btn{
    border-radius: 8px;
    color: #FFFFFF;
}

/* .ps--active-y  {
    height: 100vh !important;
} */


/*start - date:19-jun-2023*/
body.no-scroll{
    overflow: hidden;
    position: relative;
}

.auth-wrapper .navbar .navbar-brand{
    display: block;
    width: 100%;
    max-width: 150px;
}
.auth-wrapper .navbar .navbar-brand img{
    width: 100%;
}
@media (max-width: 1024px) {
    .ps {
        height: 100vh !important;
    }
}

.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    touch-action: auto;
}

.dash-sidebar .navbar-content{
    height: calc(100vh - 70px);
}
/*end- date:19-jun-2023*/


.language_option_bg option {
    background-color: #fff;
    color: #000;
}
/*[data-action] {*/
/*    background: gray !important;*/
/*}*/



/*start for balancesheet*/
.account-first span:first-child{
    width: 35%;
}
.data-wrapper .data-body .list-group-item span:nth-child(1){
    width: 35%;
}
/*end for balancesheet*/


/*start for input search*/
.searchBoxElement{
    background-color: white;
    border: 1px solid #aaa;
    position: absolute;
    max-height: 150px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    line-height: 23px;
    list-style: none;
    z-index: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}


.searchBoxElement span{
    padding: 0 5px;
}


.searchBoxElement li{
    background-color: white;
    color: black;
}

.searchBoxElement li:hover{
    background-color: #50a0ff;
    color: white;
}

.searchBoxElement li.selected{
    background-color: #50a0ff;
    color: white;
}

.formTextbox {
    display: block;
    width: 100%;
    padding: 0.575rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #293240;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


body.theme-1 .formTextbox:focus{
    border-color: var(--theme1-color);
    box-shadow: 0 0 0 0.2rem rgb(12,175,96);
}
body.theme-2 .formTextbox:focus{
    border-color: var(--theme2-color);
    box-shadow: 0 0 0 0.2rem rgb(117,194,81);
}
body.theme-3 .formTextbox:focus{
    border-color: var(--theme3-color);
    box-shadow: 0 0 0 0.2rem rgb(88,78,210, 25%);
}
body.theme-4 .formTextbox:focus{
    border-color: var(--theme4-color);
    box-shadow: 0 0 0 0.2rem rgb(20,83,136, 25%);
}

body.theme-5 .formTextbox:focus{
    border-color: var(--theme5-color);
    box-shadow: 0 0 0 0.2rem rgb(185,64,107, 25%);
}

body.theme-6 .formTextbox:focus{
    border-color: var(--theme6-color);
    box-shadow: 0 0 0 0.2rem rgb(0,142,204, 25%);
}
body.theme-7 .formTextbox:focus{
    border-color: var(--theme7-color);
    box-shadow: 0 0 0 0.2rem rgb(146,44,136, 25%);
}
body.theme-8 .formTextbox:focus{
    border-color: var(--theme8-color);
    box-shadow: 0 0 0 0.2rem rgb(192,161,69, 25%);
}
body.theme-9 .formTextbox:focus{
    border-color: var(--theme9-color);
    box-shadow: 0 0 0 0.2rem rgb(72,73,75, 25%);
}
body.theme-10 .formTextbox:focus{
    border-color: var(--theme10-color);
    box-shadow: 0 0 0 0.2rem rgb(12,119,133, 25%);
}
/*end for input search*/
.account-inner p{
    max-width: 25%;
    width: 100%;
}

.aacount-title h6{
    max-width: 25%;
    width: 100%;
}

.list_colume_notifi {
    position: relative;
    display: block;
    padding: 16.66667px 25px;
    color: #212529;
    /* background-color: #ffffff; */
    border: 1px solid #f1f1f1;
}
@media (max-width: 420px) {
.action-btn-col{
    flex: 0 0 100%;
    text-align: left;
    /*justify-content: left;*/
    display: flex;
    margin-top: 10px;
}
}

.account-arrow{
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 25%;

}
.account-arrow p{
    flex: 0 0 25%;
}
.account-arrow .account-icon{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-left: -20px;
    font-size: 12px;
}
body.theme-1 .account-arrow .account-icon{
    background-color: #0CAF60;
}
body.theme-2 .account-arrow .account-icon{
    background-color: #584ED2;
}
body.theme-3 .account-arrow .account-icon{
    background-color: #6FD943;
}
body.theme-4 .account-arrow .account-icon{
    background-color: #145388;
}
body.theme-5 .account-arrow .account-icon{
    background-color: #B9406B;
}
body.theme-6 .account-arrow .account-icon{
    background-color: #008ECC;
}
body.theme-7 .account-arrow .account-icon{
    background-color: #922C88;
}
body.theme-8 .account-arrow .account-icon{
    background-color: #C0A145;
}
body.theme-9 .account-arrow .account-icon{
    background-color: #48494B;
}
body.theme-10 .account-arrow .account-icon{
    background-color: #0C7785;
}

.account-arrow .account-icon i{
    transition: .5s all ease-in-out;
}
.collapse-view .account-arrow i{
    transform: rotate(180deg);
}

.subAccount {
    font-weight: 600;
  }

  .apexcharts-legend-text {
    margin-right: 10px;
}

[dir="rtl"] .apexcharts-xaxis-texts-g {
    transform: translate(10px, 40px) !important;
}

.apexcharts-yaxis-title-text
{
    transform: rotate(-90deg);
    transform-origin: 0px 133.34800720214844px !important;
}
.apexcharts-yaxis
{
    transform: translate(0px, 0px) !important;
}
/* .apexcharts-pie-area
{
    display: none;
} */

.color-wrp .color-picker-wrp input[type="color"] {
    background-color: #fff;
    height: 55px;
    cursor: pointer;
    border-radius: 3px;
    margin: 0px;
    padding: 0px;
    border: 0;
    margin-bottom: 5px;
    margin-left: 5px;
}

.color-wrp{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.color-wrp .theme-color{
    margin: 0;
}
.color-wrp .color-picker-wrp{
    width: 100px;
}

#calender_type
{
    float: right;
    width : 150px;
}

.dash-header .drp-notification {
    margin-left: 10px;
}

.budget .btn{
    margin-top: 10px;
    margin-right: 10px;
}

.theme-avtar-logo
{
width: 80px;
border-radius: 17.3552px;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
}


/* google recapch  */
.grecaptcha-badge{
    z-index: 2;
}

.border-grey {
    border: 1px solid #cbcbcb !important;
}
.upgrade-line hr {
    flex: 1;
}


/* IMPORT DATA TABLE SELECT CSS */
.import-data-table select{
    width: auto;
    padding-right: 35px;
    min-width: 100%;
}


/* this css for badge */
.badge {
    border-radius: 4px !important;
}

/* Kanban css */
.kanban-wrapper .card {
    box-shadow: 0px 4px 17px #c1c5bfb3;
}

.kanban-wrapper .card .card-header, .kanban-wrapper .card .card-body{
    padding: 20px
}
.kanban-wrapper .card-list .kanban-box .card:last-of-type{
    margin-bottom: 0px;
}


/*  Image profile and other section users */
.users-image{
    position: relative;
    display: block;
    padding-top: 20%;
    height: 40px;
    max-width: 40px;
    width: 100%;
}
.users-image img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.image-fixsize{
    position: relative;
    display: block;
}
.image-fixsize img{

    height: 80px;
    width: 80px;
    object-fit: contain;
}


/* for comment */
.comment-card {
    background: var(--bs-body-bg);
    width: fit-content;
    padding: 10px;
}


/* datatable  */
div.dataTables_wrapper div.dataTables_filter input{
    margin:0 0.5em;
}


/* *{
    scrollbar-width: none !important;
} */


/* border-color */
body.theme-1 .border-primary {
    border-color: #0CAF60 !important;
}
body.theme-2 .border-primary {
    border-color: #584ed2 !important;
}
body.theme-3 .border-primary {
    border-color: #6fd943 !important;
}
body.theme-4 .border-primary {
    border-color: #145388 !important;
}
body.theme-5 .border-primary {
    border-color: #b9406b !important;
}
body.theme-6 .border-primary {
    border-color: #008ecc !important;
}
body.theme-7 .border-primary {
    border-color: #922c88 !important;
}
body.theme-8 .border-primary {
    border-color: #c0a145 !important;
}
body.theme-9 .border-primary {
    border-color: #48494b !important;
}
body.theme-10 .border-primary {
    border-color: #0c7785 !important;
}




/* button color list start */
.btn-primary-subtle{
    background-color: #0CAF60 !important;
}
.bg-warning-subtle {
    background-color: #009eff !important;
}
.bg-brown-subtitle{
    background: #674636 !important;
}
.bg-light-blue-subtitle{
    background: #3CAEA3 !important;
}
.bg-blue-subtitle {
    background: #20639B !important;
}
.bg-light-green-subtitle{
    background: #9bb958 !important;
}
/* button color list end */

/* 15-11-2024 */
.task-product-card {
    border: none !important;
    box-shadow: 0 6px 30px rgba(182, 186, 203, 0.3) !important;
}
.task-product-wrapper .col-xl-3{
    padding:0 10px;
}
.task-product-wrapper{
    margin:0 -10px;
}
/* .project-image-item{
    width: 45px;
    height:45px;
}
.project-image-item img{
    width:100%;
    height:100%;
} */
@media (max-width: 1400px) {
.task-product-card .card-body,.full-card{
    padding:20px 15px;
}
.task-product-wrapper .avatar-group .avatar{
    width:30px;
    height:30px;
}
}


/* Dashboard Link */
.dashboard-link {
    color: #060606
}
body.theme-1 .dashboard-link:hover {
    color: #0CAF60;
}
body.theme-2 .dashboard-link:hover {
    color: #584ED2;
}
body.theme-3 .dashboard-link:hover {
    color: #6FD943;
}
body.theme-4 .dashboard-link:hover {
    color: #145388;
}
body.theme-5 .dashboard-link:hover {
    color: #B9406B;
}
body.theme-6 .dashboard-link:hover {
    color: #008ECC;
}
body.theme-7 .dashboard-link:hover {
    color: #922C88;
}
body.theme-8 .dashboard-link:hover {
    color: #C0A145;
}
body.theme-9 .dashboard-link:hover {
    color: #48494B;
}
body.theme-10 .dashboard-link:hover {
    color: #0C7785;
}
body.custom-color .dashboard-link:hover{
    color: var(--color-customColor);
}

/* All model close button css */

.btn-close:focus,
.btn-close:hover {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(81, 69, 157, 0.25);
    opacity: 1;
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
}

/* All model close button css */


/* templates css */

.invoice-row {
    gap: 20px 0;
}

.language-sidebar .list-group-item {
    padding: 10px 25px;
}

/* templates css */



/* hrm system setup tab */
.hrm_setup_tab li{
    flex: 0 0 auto!important;
}
.information-tab {
    padding: 10px;
    gap: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}
body.theme-1 .information-tab {
    background-color: #0CAF6030;
}
body.theme-2 .information-tab {
    background-color: #584ED230;
}
body.theme-3 .information-tab {
    background-color: #6FD94330;
}
body.theme-4 .information-tab {
    background-color: #14538830;
}
body.theme-5 .information-tab {
    background-color: #B9406B30;
}
body.theme-6 .information-tab {
    background-color: #008ECC30;
}
body.theme-7 .information-tab {
    background-color: #922C8830;
}
body.theme-8 .information-tab {
    background-color: #C0A14530;
}
body.theme-9 .information-tab {
    background-color: #48494B30;
}
body.theme-10 .information-tab {
    background-color: #0C778530;
}
.information-tab .nav-item .nav-link {
    background-color: #FFFFFF;
}
.information-tab > .nav-item > a > .nav-link.active,
.nav-pills .show > .nav-link,
.nav-pills .nav-link.active,
.nav-pills .nav-link:focus {
    border-radius: 4px !important;
}

/* delete confirm */
.swal2-container {
    z-index: 9999999999999999999 !important;
}















.main_planinselectdef.active {
    border: 2px solid #8c85ff !important;
    border-radius: 4px;
}
.main_innerindex{
    z-index:999999 !important;
}
.month-btn{
    min-height:45px;
}
.main_planinselectdef:hover {
    transform: scale(1.01);
    border: 2px solid #8c85ff !important;
}
.navbar-wrapper{
    height:100%;
}
.main_setterdash .active_name{
    box-shadow: 0px 0px 12px 0px #00000014;
    background:#F7FBFF !important;
    height:40px;
    border:none;
    border-radius: 10px;
    width:90%;
    margin-bottom:10px;
    text-align:left;
}
.main_reloadbtn{
    width:max-content;
}
.main_reloadbtn button{
    padding: 0px;
    border-radius: 100px;
    border: none;
}
.nonactive_btn{
    text-align:left;
    background:transparent !important;
    height:40px;
    border:none;
    border-radius: 10px;
    width:90%;
    margin-bottom:10px;
}
.main_table_caret .dropdown-toggle::after{
    display:none !important;
}
.max_heightscrset::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.max_heightscrset::-webkit-scrollbar-track {
  background: #D2D2D2; 
  border-radius:100px;
}
 
/* Handle */
.max_heightscrset::-webkit-scrollbar-thumb {
  background: #ABABAB ; 
  border-radius:100px;
}

/* Handle on hover */
.max_heightscrset::-webkit-scrollbar-thumb:hover {
  background: #555; 
  cursor:pointer;
}


/* live Location */

.checkbox_widthsetter{
    height:20px !important;
}
.max_heightscrset{
    padding-top:20px !important;
    padding-bottom:20px !important;
    background-color: #fff;
    max-height:460px;
    min-height:460px;
    border-radius:20px;
    overflow:auto !important;
}
.span_employeechecker{
    font-size:larger;
}
.main_location_header{
  background-color: #fff;
}
.main_location_header h5{
  margin-bottom: 0px;
  font-weight:600;
}
.main_location_header span{
  margin-bottom: 0px;
  color:#316FF6;
}
.main_border_location{
  border-radius: 30px !important;
  background:#fff;
}
.main_button_headers{
    background:#E1E1E1;
    box-shadow: 0px 2px 8px 0px #00000026 inset;
    border-radius:100px;
    width: max-content;
}
.main_button_headers button{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:100px;
  border: 1px solid #dfdfdf !important;
  background-color: transparent;
  padding: 10px 15px !important;
  font-weight: 500;
  width: auto;
  height: 50px !important;
}
.main_button_headers .headbtn_active{
  background-color: #C4DEFF;
  border-radius:100px;
}
.main_button_headers button:hover{
  background-color: #b9e3fc;
}
.badge_main{
    display: flex;
    font-weight: 600;
    height: 30px !important;
    width: 30px !important;
    margin-right: 10px;
    border-radius: 100px;
    color: #fff !important;
    justify-content: center;
    align-items: center;
}
.col_1bage{
  background-color: #0092D3 !important;
}
.col_2bage{
  background-color: #2D8981 !important;
}
.col_3bage{
  background-color: #316FF6 !important;
}
.col_4bage{
  background-color: #FF1010 !important;
}
.col_5bage{
  background-color: #1976d2 !important;
}
.col_6bage{
  background-color: navy !important;
}
.search_employee_location i{
    color:#BCBCBC;
}
.search_employee_location input::placeholder{
    color:#BCBCBC;
}
.search_employee_location input{
  outline: none !important;
  width: 100% !important;
  padding-right:10px;
  border: none !important;
  height: 40px;
  background-color: transparent;
}
.search_employee_location{
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 2px 1px 8px 0px #0000001C;
}
.search_employee_location input::placeholder{
  font-weight: 600;
}
.main_bg_location{
    background: #D9D9D940;
    border-radius: 15px 
}
/*END Location*/

.Permission {
    white-space: inherit !important;
}

.action-btn{
    width: 29px;
    height: 28px;
    border-radius: 9.3552px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.repeater-action-btn {
    width: 23px;
    height: 23px;
    border-radius: 9.3552px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.delete-form-btn{
    display: inline;
}

.dash-sidebar .main-logo {
    justify-content: center;
    /*height: 100%;*/
    min-height: 80px;
    max-height: 80px;
    width: 100%;
    min-width: 255px;
    /*max-width: 255px;*/
}
/*a.b-brand {*/
/*    height: 100%;*/
/*    width: 100%;*/
/*}*/
.dash-sidebar .main-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    width: auto !important;
    height: auto;
    max-width: -webkit-fill-available !important;
    max-height: -webkit-fill-available !important;
    max-width: -moz-available;
    max-height: -moz-available;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.price-card {
    text-align: center;
    position: relative;
    margin-top: 30px;
    height: 100%;
    max-height: 510px;

}
.price-card.price-2 {
    color: #fff;
}
.price-card.price-2 .price-badge {
    color: #fff;
    background: #1C232F;
}
.price-card .p-price {
    font-size: 80px;
}
.price-card .price-badge {
    color: #fff;
    padding: 7px 24px;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.price-card .list-unstyled {
    display: inline-block;
}
.price-card .list-unstyled li {
    display: flex;
    align-items: center;
}
.price-card .list-unstyled li + li {
    margin-top: 8px;
}
.price-card .list-unstyled .theme-avtar {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #fff;
    margin-right: 15px;
}
.side-feature {
    overflow: hidden;
}
.faq .accordion .accordion-item {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    margin-bottom: 10px;
}

.faq .accordion .accordion-item .accordion-button {
    font-weight: 500;
    padding: 1.3rem 1.25rem;
}

.faq .accordion .accordion-item .accordion-button span > i {
    font-size: 20px;
    margin-right: 8px;
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
    border-radius: 10px;
    background: transparent;
    box-shadow: 0 6px 30px rgba(182, 186, 203, 0.3);
}

.faq .accordion .accordion-item .accordion-body {
    /*padding: 2.3rem 2.3rem 2.3rem 3rem;*/
    padding: 1rem 1.25rem;
}

.choose-files div {
    color: #fff;
    background: #584ED2 !important;
    border: none;
    border-radius: 10px;
    padding: 8px 15px;
    max-width: 155px !important;
    font-size: 12px;
    font-weight: 500;
}
.file {
    position: relative !important;
    left: 0;
    opacity: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.file-icon {
    width: 30px;
    height: 30px;
    background: #0F5EF7;
    border-radius: 50px;
    float: left;
    text-align: center;
}
.file-icon i {
    color: #fff;
    z-index: 9999;
    position: relative;
    font-size: 14px;
}
.first-file {
    width: 100%;
    float: left;
    padding-bottom: 20px;
    position: relative;
}
.file-des {
    width: calc(100% - 40px);
    float: right;
    color: #A3AFBB;
    font-size: 12px;
}
.file-des span {
    width: 100%;
    float: left;
    color: #011C4B;
}
.general-tab .column-card {
    flex-direction: column;
}
.first-file:before {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 100%;
    background: var(--bs-primary) !important;
    content: "";
    left: 25px;
}
.first-file:last-child:before {
    background: none;
}
.setting-favimg{
    width: 100px;
}
.setting-logoimg{
    width: 200px;
}
.colorinput {
    margin: 0;
    position: relative;
    cursor: pointer;
}

.colorinput-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.colorinput-color {
    background-color: #fdfdff;
    border-color: #e4e6fc;
    border-width: 1px;
    border-style: solid;
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 3px;
    color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.colorinput-color:before {
    content: '';
    opacity: 0;
    position: absolute;
    top: .25rem;
    left: .25rem;
    height: 1.25rem;
    width: 1.25rem;
    transition: .3s opacity;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E") no-repeat center center/50% 50%;
}

.colorinput-input:checked~.colorinput-color:before {
    opacity: 1;
}

.img_setting {
    filter: drop-shadow(2px 3px 7px #011C4B);
}
.btn-apply
{
    font-size: 31px;
}
.avatar {
    text-align: center;
    border-radius: 100%;
    overflow: hidden;
    background-color: #eee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.avatar-sm {
    width: 2.4375rem;
    height: 2.4375rem;
    font-size: 0.75rem;
    border-radius: 0.2rem;
}

.avatar {
    position: relative;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-size: 1rem;
    font-weight: 600;
    height: 3.125rem;
    width: 3.125rem;
    border-radius: 0.25rem;
}

.avatar img {
    width: 100%;
    border-radius: 0.25rem;
}

.avatar.rounded-circle img {
    border-radius: 50%;
}

/*.avatar span {*/
/*    background-color: #051C4B;*/
/*}*/

.avatar + .avatar {
    margin-left: .25rem;
}

.avatar + .avatar-content {
    display: inline-block;
    margin-left: .75rem;
}

.avatar-xl {
    width: 6rem;
    height: 6rem;
    font-size: 1.375rem;
}

.avatar-lg {
    width: 4rem;
    height: 4rem;
    font-size: 1.25rem;
}

.avatar-sm {
    width: 2.4375rem;
    height: 2.4375rem;
    font-size: 0.75rem;
    border-radius: 0.2rem;
}

.avatar-group {
    display: inline-block;
    line-height: 1;
}

.avatar-group .avatar {
    z-index: 1;
    transition: margin 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .avatar-group .avatar {
        transition: none;
    }
}

.avatar-group .avatar img {
    border: 2px solid #FFF;
}

.avatar-group .avatar:hover {
    z-index: 2;
}

.avatar-group .avatar + .avatar {
    margin-left: -1.25rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.avatar-group .avatar-sm + .avatar-sm {
    margin-left: -1rem;
}

.avatar-group:hover .avatar {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.avatar-group:hover .avatar-sm {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.hover-avatar-ungroup:hover .avatar:not(:first-child) {
    margin-left: 0;
}

.avatar-parent-child {
    display: inline-block;
    position: relative;
}

.avatar-child {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 2px solid #FFF;
    border-radius: 0.2rem;
}

.avatar.rounded-circle + .avatar-child {
    border-radius: 50%;
}

.avatar + .avatar-child {
    width: 20px;
    height: 20px;
}

.avatar-lg + .avatar-child {
    width: 24px;
    height: 24px;
}

.avatar-sm + .avatar-child {
    width: 16px;
    height: 16px;
}

.avatar + .avatar-badge {
    width: 14px;
    height: 14px;
    right: -6px;
    bottom: 15px;
}

.avatar-lg + .avatar-badge {
    width: 16px;
    height: 16px;
    right: -5px;
    bottom: 20px;
}

.avatar-sm + .badge {
    width: 12px;
    height: 12px;
    right: -6px;
    bottom: 10px;
}

.avatar-connect {
    position: relative;
}

.avatar-connect:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-bottom: 2px dashed #EFF2F7;
}

.avatar-connect ul {
    margin: 0;
    padding: 0;
    list-style: none;
}





.rating {
    border: none;
    float: left;
}

.rating>input {
    display: none;
}

.rating>label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating>.half:before {
    content: "\f089";
    position: absolute;
}

.rating>label {
    color: #ddd;
    float: right;
}

.rating>input:checked~label,
.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #FFD700;
}

.rating>input:checked+label:hover,
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
.rating>input:checked~label:hover~label {
    color: #FFED85;
}
.table td .progress {
    height: 7px;
    width: 120px;
    margin: 0;
}

.mtt{
    margin-top: 35px;
}


.custom_messanger_counter {
    position: relative;
    top: -15px;
    left: -5px;
}

.dash-sidebar .main-logo {
    justify-content: center;
    /*height: 100%;*/
    min-height: 80px;
    max-height: 80px;
    width: 100%;
    min-width: 255px;
    /*max-width: 255px;*/
}
a.b-brand {
    height: 100%;
    width: 100%;
}
.dash-sidebar .main-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    width: auto !important;
    height: auto;
    max-width: -webkit-fill-available !important;
    max-height: -webkit-fill-available !important;
    max-width: -moz-available;
    max-height: -moz-available;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}
.m-view-btn {
    width: 105px;
    padding: 8px 10px;
    line-height: normal;
    border-radius: 10px;
    color: #fff;
}
.m-view-btn a {
    float: right;
    color: #fff;
    text-decoration: underline;
}

.white-sapce-nowrap {
    white-space: nowrap;
}
.list-group-flush > .list-group-item:last-child {
    border: none;
    border-bottom-width: 0;
}

.active_color{
    border: 2px solid #000 !important;
}
.display-total-time {
    font-size: 14px;
    font-weight: 500;
    height: 50px;
    border: 1px solid rgba(221, 221, 221, 1);
    padding: 12px;
    background: rgba(241, 241, 241, 1);
    text-align: center;
    border-radius: 4px;
    width: 100%;
    color:black;
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.rating-stars ul {
    list-style-type: none;
    padding: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.rating-stars ul > li.star {
    display: inline-block;
}
.rating-stars ul > li.star.selected > i.ti {
    color: #FF912C;

}
.rating-stars ul > li.star.selected > i.fa {
    fill: #FF912C;
}


.navbar.default.top-nav-collapse {
    background: transparent;
    box-shadow: none;
}
.active_color{
    border: 2px solid #000 !important;
}
.login-deafult{
    width: 139px !important;
}
/* card-icon-text-space */
.card-icon-text-space{
    margin-right: 5px;
}


.horizontal-scroll-cards p {
    width: 120px;
}
.horizontal-scroll-cards  img {
    border: 2px solid #51459d;
    padding: 3px;
}
.full-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.card-body.project_table {
    height: 400px;
    overflow-y: auto;
}
.project_table::-webkit-scrollbar {
    width: 3px;
}
.project_table::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px #f2f2f2;
}

.project_table::-webkit-scrollbar-thumb {
    background-color: #bababa;
}

.round-img {
    width: 80px;
    height: 80px;
    object: cover !important;
}


.big-logo {
    width: 150px;
    height: 60px;
}
.card-2{
    height: 100%;
    max-height: 480px;
    margin-bottom: 0;
}
.full-card {
    min-height: 236px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fulls-card{
    min-height: 180px;
}

.kanban-card img {
    position: relative;
    width: 39px;
    height: 38px;
    border-radius: 50% !important;
    z-index: 2;
    transition: all 0.1s ease-in-out;
    border: 2px solid #ffffff;
}


.grid_user_image img {
    margin-left: -10px;
    border: 2px solid #dbdbdb;
}

.dataTable-table > thead > tr > th {
    padding: 15px 40px 15px 15px;
}
.dataTable-sorter::before, .dataTable-sorter::after {
    right: -20px;
}
.status_badge {
    min-width: 87px;
}



.plan_card .card-body {
    min-height: 0;
}
.active-tag{
    position: absolute;
    right: 20px;
}
.display-total-time{
    margin-top: 0;
}
@media only screen and (max-width: 1700px) {
    .plan_card {
        width: 33.33%;
        float: left;
    }
}

@media only screen and (max-width: 1440px) {
    .plan_card {
        width: 33.33%;
        float: left;
    }
}

@media only screen and (max-width: 1366px) {
    .plan_card {
        width: 50%;
        float: left;
    }
}

@media only screen and (max-width: 1199px) {
    .plan_card {
        width: 50%;
        float: left;
    }
}



@media only screen and (max-width: 991px) {
    .plan_card {
        width: 100%;
        float: left;
    }
}

.doc_status_badge {
    min-width: 100px;
}

.list_card{
    min-height: 400px;
}
.customer_card{
    height: 100%;
}
.vendor_card{
    height: 180px;
}
.logo_card{
    min-height: 280px;
}
.img_preview{
    width: 150px;
    height: 130px;
}
.setting_logo{
    top: -35px;
}
.choose-files input[type="file"]{
    display: none ;
}
.drp-languages .drp-language .dropdown-toggle{
    color: #525B69;
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.7rem;
    margin: 0 7.5px;
    border-radius: 4px;
    position: relative;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid rgba(206, 206, 206, 0.2);
}
.email_temp{
    height: 450px !important;
    overflow-y: scroll;
}
.emp_details{
    min-height: 420px !important;
}
.green-text{
    color: green;
}
.red-text{
    color: red;
}
.activity-scroll{
    overflow: scroll;
    height: 500px;
}
.leads-scroll{
    overflow-y: scroll;
    max-height: 400px;
}

.job-create{
    min-height: 488px;
}
.email-color{
    background: #FFFFFF;
}

.svg-inline--fa.fa-w-16 {
    width: 1em;
}
.svg-inline--fa.fa-w-20 {
    width: 1.25em;
}

/*POS SYSTEM CSS*/
.purchase_status{
    min-width: 95px;
}

.pos-top-bar{
    background: #6fd944;
    border-radius: 10px;
    padding: 15px;
}

.product-list-block .product-custom-card {
    border-radius: 10px;
    box-shadow: 0 4px 20px 1px rgba(0,0,0,.06),0 1px 4px rgba(0,0,0,.08);
    cursor: pointer;
    margin-bottom: 16px;
    margin-left: 8px;
    margin-right: 8px;
    outline: 1px solid #e0e3ff;
    width: calc(24.96% - 16px);
}

.product-list-block .product-custom-card .card {
border-color: transparent!important;
border-radius: 10px;
border: 0;
box-shadow: none;
    margin-bottom: 0;
}
.product-list-block .product-custom-card .card .card-img-top {
height: 100px!important;
max-height: 100px!important;
-o-object-fit: contain;
object-fit: contain;
width: 100%!important;
border:0;
}
.product-list-block .product-custom-card h6{
    font-size: 14px;
}

.product-list-block .product-custom-card .fs-small {
    font-size: 12px;
}

 .product-list-block .product-custom-card .item-badges {
    position: absolute;
    left: 0;
    top: -3px;
}

.product-list-block .product-custom-card__card-badge {
    border-radius: 4px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    padding: .25em .4em;
    text-align: center;
    vertical-align: baseline;
    white-space: nowrap;
}


.right-content .product-list-block {
    height: auto;
    max-height: 500px;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 25px;
}

.right-content .button-list__item-active {
    background-color: #6571ff!important;
    border-color: #6571ff!important;
    color: #FFFFFF;
}
.sub-total .total-price{
    padding-bottom: 15px;
    border-bottom: 2px dashed #c5c5c5;
}
.button-list .button-list__item{
    margin-bottom: 0.5rem;
}
.cat-pad{
    background-color: #6fd944;
}

@media screen and (max-width:767px){

    .product-list-block .product-custom-card{
        width: 100%;
    }
}


.carttable .quantity.buttons_added {
    text-align: left;
    position: relative;
    white-space: nowrap;
    vertical-align: top;
}

.carttable .quantity.buttons_added .minus {
    border-right: 0;
}

.carttable .quantity.buttons_added input {
    display: inline-block;
    margin: 0;
    vertical-align: top;
    box-shadow: none;
}

.carttable .quantity .input-number {
    width: 60px;
    height: 35px;
    padding: 0 0px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #efefef;
}

.carttable .quantity.buttons_added .plus {
    border-left: 0;
}

.carttable .quantity.buttons_added .minus,
.carttable .quantity.buttons_added .plus {
    padding: 4px 10px 8px;
    height: 35px;
    background-color: #ffffff;
    border: 1px solid #efefef;
    cursor: pointer;
}

.form-row>.zoom-in {
    transition-property: background-color, border-color, color, fill, opacity, box-shadow, transform;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
    cursor: pointer;
    margin-bottom: 10px !important;
}

.zoom-in:hover {
    --transform-scale-x: 1.05;
    --transform-scale-y: 1.05;
}
#product-listing .toacart {
    cursor: pointer;
}
.cat-list-btn .btn-primary {
    color: #3f3f3f !important;
}

body.theme-1 .cat-list-btn .btn-primary {
    background: #fff !important;
    border-color: #fff !important;
}
body.theme-1 .cat-list-btn .cat-active .btn-primary {
    background: #0CAF60 !important;
    border-color: #0CAF60 !important;
    color: #fff !important;
}

body.theme-2 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-2 .cat-list-btn .cat-active .btn-primary {
    background-color: #584ED2 !important;
    border-color: #584ED2 !important;
    color: #fff !important;
}

body.theme-3 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-3 .cat-list-btn .cat-active .btn-primary {
    background-color: #6fd943 !important;
    border-color: #6fd943 !important;
    color: #fff !important;
}

body.theme-4 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-4 .cat-list-btn .cat-active .btn-primary {
    background-color: #145388 !important;
    border-color: #145388 !important;
    color: #fff !important;
}
body.theme-5 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-5 .cat-list-btn .cat-active .btn-primary {
    background-color: #B9406B !important;
    border-color: #B9406B !important;
    color: #fff !important;
}
body.theme-6 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-6 .cat-list-btn .cat-active .btn-primary {
    background-color: #316ff6 !important;
    border-color: #316ff6 !important;
    color: #fff !important;
}
body.theme-7 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-7 .cat-list-btn .cat-active .btn-primary {
    background-color: #922C88 !important;
    border-color: #922C88 !important;
    color: #fff !important;
}
body.theme-8 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-8 .cat-list-btn .cat-active .btn-primary {
    background-color: #C0A145 !important;
    border-color: #C0A145 !important;
    color: #fff !important;
}
body.theme-9 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-9 .cat-list-btn .cat-active .btn-primary {
    background-color: #48494B !important;
    border-color: #48494B !important;
    color: #fff !important;
}
body.theme-10 .cat-list-btn .btn-primary {
    background-color: #fff !important;
    border-color: #fff !important;
}
body.theme-10 .cat-list-btn .cat-active .btn-primary {
    background-color: #0C7785 !important;
    border-color: #0C7785 !important;
    color: #fff !important;
}


.top-badge {
    position: absolute;
    top: 0;
    right: 0;
}
.product-title-name {
    font-size: 13px;
    font-weight: 600;
    flex: 1;
    min-height: 33px;
}
.product-body-nop .form-row [class*="col-"] {
    display: flex;
}
.cat-active .btn {
    color: #fff;
}
.tab-btns {
    min-width: 100px;
    white-space: nowrap;
    border-radius: 0.625rem!important;
    padding: 10px 20px;
    font-size: 12px;
}
.cart-product-list .table tr th {
    padding: 5px 15px !important;
}
.total-price h6 {
    font-size: 11px;
}
.product-body-nop .card:not(:last-of-type) {
    margin-bottom: 12px;
}
.product-body-nop {
    height: calc(100vh - 260px);
    overflow-y: auto;
    overflow-x: hidden;
    margin-right: -7px;
    padding-right: 7px;
}
.product-body-nop::-webkit-scrollbar {
    width: 5px;
    margin-right: -5px;
}
.product-body-nop::-webkit-scrollbar-thumb {
    background-color: lightgrey;
    border-radius: 10px;
}
.sop-card {
    margin-bottom: 10px;
}

.carttable-scroll {
    height: calc(100vh - 115px);
}
.carttable-scroll .table-responsive {
    height: calc(100vh - 300px);
}
.carttable-scroll .table-responsive::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    margin-right: -5px;
}
.carttable-scroll .table-responsive::-webkit-scrollbar-thumb {
    background-color: lightgrey;
    border-radius: 10px;
}
.carttable-scroll .name,
.carttable-scroll .tax {
    padding: 0 !important;
}
.carttable-scroll .tax {
    text-align: center;
}
.total-section {
    width: 100%;
    background: #f1f1f1;
    padding: 15px 15px;
    border-radius: 10px;
    box-shadow: 0px 10px 10px -10px #97979780;
}

.sop-card {
    height: 100%;
}

.product-body-nop .card{
    width:100%;
}
.product-body-nop .card  .avatar {
    object-fit: scale-down;
    padding: 20px 0 10px;
    background: transparent;
    min-height: 9rem;
    width: 100%;
}
.product-body-nop .card  .card-body {
    flex: 1 1 auto;
    padding: 25px 25px;
    display: flex;
    flex-direction: column;
}
.product-body-nop .card  .badge {
    padding: 4px 10px;
    width: auto;
    max-width: 100px;
    margin: 0 auto 0 0;
}
.product-body-nop .card  .shadow{
    box-shadow: none !important;
}
.toacart{
    display: flex;
}
.product-body-nop .card .product-title-name{
    min-height: unset;
}

/*END POS SYSTEM CSS*/

/*for messages counter*/
.message-counter {
    position: absolute !important;
    top: fpx !important;
    right: 4px !important;
    border-radius: 50%;
    font-size: 10px;
    left: 22px !important;
    width: 15px !important;
    height: 15px;
    text-align: center !important;
    color: #fff !important;
}

/*for messages counter*/

.status-drp .dash-head-link {
    color: #525b69;
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.7rem;
    margin: 0 4px;
    border-radius: 12px;
    position: relative;
    font-weight: 500;
    border: 1px solid rgba(206, 206, 206, 0.2);
    background-color: #fff;
}

/* start Rating Star Widgets Style - job application star*/
.rating-stars ul {
    list-style-type: none;
    padding: 0;

    -moz-user-select: none;
    -webkit-user-select: none;
}

.rating-stars ul > li.star {
    display: inline-block;

}
.rating-stars ul > li.star > i.fas {
    font-size: 1.5em; /* Change the size of the stars */
    color: #ccc; /* Color on idle state */
}

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i.fas {
    color: #FFCC36;
}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fas {
    color: #ffa21d;
}


.static-rating {
    display: inline-block;
}

.static-rating .star {
    color: #E0E6ED;
}

.static-rating .voted {
    color: #ffa21d;
}

/* end start Rating Star Widgets Style - job application star*/



/* project_report */
.img_group {
    margin-left: -14px;
}
.circular-progressbar .flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
}

.circular-progressbar .single-chart {
    width: 60%;
    justify-content: space-around;
}

.circular-progressbar .circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    max-height: 550px;
}

.circular-progressbar .circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circular-progressbar .circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.circular-progressbar .circular-chart.red .circle {
    stroke: #ff3a6e;
}

.circular-progressbar .circular-chart.orange .circle {
    stroke: #fd7e14;
}

.circular-progressbar .circular-chart.green .circle {
    stroke: #6fd943;
}

.circular-progressbar .circular-chart.blue .circle {
    stroke: #3c9ee5;
}

.circular-progressbar .percentage {
    /* fill: #666;*/
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}
.circular-progressbar .flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
}

.circular-progressbar .single-chart {
    width: 60%;
    justify-content: space-around;
}

.circular-progressbar .circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    max-height: 550px;
}

.circular-progressbar .circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circular-progressbar .circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.circular-progressbar .circular-chart.red .circle {
    stroke: #ff3a6e;
}

.circular-progressbar .circular-chart.orange .circle {
    stroke: #fd7e14;
}

.circular-progressbar .circular-chart.green .circle {
    stroke: #6fd943;
}

.circular-progressbar .circular-chart.blue .circle {
    stroke: #3c9ee5;
}

.circular-progressbar .percentage {
    /* fill: #666;*/
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}
.pos-header{
    background-color: #e7e9ec;
}

.table.modal-table td,
.table.modal-table th {
    white-space: normal;
}
.task-calendar-scroll{
    overflow-y: scroll;
    height: 827px;
}


/*start pos thermal print */
.pos-module-tbl td, .pos-module-tbl th {
    padding: 0px !important;
}
.pos-module .product-border {
    border-bottom: 3px dotted #d8d8d8!important;
}
/*end pos print */


/*start balance-sheet new theme*/
.nav-pills.cust-nav {
    background: #E1E9ED;
}
.nav-pills.cust-nav .nav-item .nav-link {
    color: #162C4E;
}

.data-wrapper{
    /* height: 100%; */
    display: flex;
    flex-direction: column;
}
.data-wrapper .data-body{
    flex: 1;
}

/*.data-wrapper .data-body .list-group-item:nth-child(2) {*/
/*    flex: 1;*/
/*}*/

/* end balance-sheet new theme*/



/* JOB PAGE START */
.job-wrapper .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.job-banner {
    position: relative;
    background-color: unset;
}

.job-banner .job-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.job-banner .job-banner-bg img {
    width: 100%;
    height: 100%;
}

.job-banner .job-banner-content {
    padding: 5.9% 0;
    max-width: 360px;
    width: 100%;
    margin: auto;
}

.placedjob-section .section-title {
    padding: 35px 25px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    margin-top: -20px;
    text-align: center;
}

.job-card-body {
    padding: 15px;
    border-radius: 15px;
    background: linear-gradient(277.29deg, rgba(111, 217, 67, 0.09) 0.99%, rgba(111, 217, 67, 0) 100.89%);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border: 1px solid #6FD943;
}

.placedjob-section {
    padding-bottom: 80px;
    background-color: unset;

}

.job-content .container {
    max-width: 1540px;
}

@media screen and (max-width:767px) {
    .job-banner .job-banner-content {
        padding: 10% 0;
    }
}

@media screen and (max-width:575px) {
    .job-banner .job-banner-content {
        padding: 21% 0;
    }
    .account-main-inner p, .account-inner{
        padding-left: 0 !important;
    }
}

.job-card{
    display: flex;
    flex-wrap: wrap;
}
.job-card .job-card-body{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.job-card .job-card-body h5{
    flex: 1;
}

/* JOB PAGE END */


/* apply job section */

.apply-job-section {
    padding-bottom: 80px;
    background-color: unset;

}

.apply-job-section .apply-job-wrapper{
    padding: 35px 25px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    margin-top: -20px;
}

@media screen and (max-width:767px) {
    .job-banner .job-banner-content {
        padding: 10% 0;
    }
    .apply-job-section .apply-job-wrapper{
        padding: 35px 15px;
    }
}

@media screen and (max-width:575px) {
    .job-banner .job-banner-content {
        padding: 26% 0;
    }
}

/* apply job section */

.stage li{
    cursor: pointer;
}
@media (min-width: 420px) {
    .seo_image{
        height: 200px;
        width: 360px
    }
    }

    @media (max-width: 420px) {
        .seo_image{
            height: 150px;
            width: 200px
        }
        }
.disabledCookie {
    pointer-events: none;
    opacity: 0.4;
}
.cookie_btn{
    margin-right: 31px;
}


/*start for payment setting*/
.setting-accordion .accordion-item {
    border: 1px solid #E0E6EF !important;
    border-radius: 7px;
}

.setting-accordion .accordion-header {
    background: #F8F8F8;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.setting-accordion .accordion-header .accordion-button {
    background: #F8F8F8 !important;
    display: flex;
    justify-content: space-between;
    border-radius: 7px;
    box-shadow: none;
    border-bottom: 1px solid transparent;
}

.setting-accordion .accordion-header .accordion-button:not(.collapsed) {
    border-color: #E0E6EF;
}

.setting-accordion .accordion-header .accordion-button span {
    flex: 1;
}

.setting-accordion .accordion-header .accordion-button::after {
    margin: 0 0 0 5px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cpath opacity='0.4' d='M12 22.4146C17.5228 22.4146 22 17.9374 22 12.4146C22 6.8917 17.5228 2.41455 12 2.41455C6.47715 2.41455 2 6.8917 2 12.4146C2 17.9374 6.47715 22.4146 12 22.4146Z' fill='%2325314C'/%3E%3Cpath d='M15.5301 12.8845C15.2371 12.5915 14.762 12.5915 14.469 12.8845L12.749 14.6045V8.41455C12.749 8.00055 12.413 7.66455 11.999 7.66455C11.585 7.66455 11.249 8.00055 11.249 8.41455L11.249 14.6035L9.52908 12.8835C9.23608 12.5905 8.76104 12.5905 8.46804 12.8835C8.17504 13.1765 8.17504 13.6516 8.46804 13.9446L11.468 16.9446C11.537 17.0136 11.62 17.0684 11.711 17.1064C11.802 17.1444 11.9001 17.1646 11.9981 17.1646C12.0961 17.1646 12.1929 17.1444 12.2849 17.1064C12.3769 17.0684 12.4591 17.0136 12.5281 16.9446L15.5281 13.9446C15.8231 13.6516 15.8231 13.1775 15.5301 12.8845Z' fill='%2325314C'/%3E%3C/svg%3E");
    background-size: 24px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.setting-accordion .accordion-item:not(:last-of-type) {
    margin-bottom: 15px;
}
/*end for payment setting*/


.float-end a > i{
    color: #FFFFFF;
}
.modal-footer .btn-light{
    margin-right: 13px;
}


/*.fc-timegrid-event-harness-inset{*/
/*    inset: 494px 0% -566px !important;*/
/*}*/


.fc-timegrid-event-harness{
    position: absolute !important;
}
.status-btn{
    border-radius: 8px;
    color: #FFFFFF;
}

/* .ps--active-y  {
    height: 100vh !important;
} */


/*start - date:19-jun-2023*/
body.no-scroll{
    overflow: hidden;
    position: relative;
}

.auth-wrapper .navbar .navbar-brand{
    display: block;
    width: 100%;
    max-width: 150px;
}
.auth-wrapper .navbar .navbar-brand img{
    width: 100%;
}


.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    touch-action: auto;
}

.dash-sidebar .navbar-content{
    height: calc(100vh - 70px);
    position: relative;
}
/*end- date:19-jun-2023*/


.language_option_bg option {
    background-color: #fff;
    color: #000;
}
/*[data-action] {*/
/*    background: gray !important;*/
/*}*/



/*start for balancesheet*/
.account-first span:first-child{
    width: 35%;
}
.data-wrapper .data-body .list-group-item span:nth-child(1){
    width: 35%;
}
/*end for balancesheet*/


/*start for input search*/
.searchBoxElement{
    background-color: white;
    border: 1px solid #aaa;
    position: absolute;
    max-height: 150px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    line-height: 23px;
    list-style: none;
    z-index: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}


.searchBoxElement span{
    padding: 0 5px;
}


.searchBoxElement li{
    background-color: white;
    color: black;
}

.searchBoxElement li:hover{
    background-color: #50a0ff;
    color: white;
}

.searchBoxElement li.selected{
    background-color: #50a0ff;
    color: white;
}

.formTextbox {
    display: block;
    width: 100%;
    padding: 0.575rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #293240;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


body.theme-1 .formTextbox:focus{
    border-color: var(--theme1-color);
    box-shadow: 0 0 0 0.2rem rgb(12,175,96);
}
body.theme-2 .formTextbox:focus{
    border-color: var(--theme2-color);
    box-shadow: 0 0 0 0.2rem rgb(117,194,81);
}
body.theme-3 .formTextbox:focus{
    border-color: var(--theme3-color);
    box-shadow: 0 0 0 0.2rem rgb(88,78,210, 25%);
}
body.theme-4 .formTextbox:focus{
    border-color: var(--theme4-color);
    box-shadow: 0 0 0 0.2rem rgb(20,83,136, 25%);
}

body.theme-5 .formTextbox:focus{
    border-color: var(--theme5-color);
    box-shadow: 0 0 0 0.2rem rgb(185,64,107, 25%);
}

body.theme-6 .formTextbox:focus{
    border-color: var(--theme6-color);
    box-shadow: 0 0 0 0.2rem rgb(0,142,204, 25%);
}
body.theme-7 .formTextbox:focus{
    border-color: var(--theme7-color);
    box-shadow: 0 0 0 0.2rem rgb(146,44,136, 25%);
}
body.theme-8 .formTextbox:focus{
    border-color: var(--theme8-color);
    box-shadow: 0 0 0 0.2rem rgb(192,161,69, 25%);
}
body.theme-9 .formTextbox:focus{
    border-color: var(--theme9-color);
    box-shadow: 0 0 0 0.2rem rgb(72,73,75, 25%);
}
body.theme-10 .formTextbox:focus{
    border-color: var(--theme10-color);
    box-shadow: 0 0 0 0.2rem rgb(12,119,133, 25%);
}
/*end for input search*/
.account-inner p{
    max-width: 25%;
    width: 100%;
}

.aacount-title h6{
    max-width: 25%;
    width: 100%;
}

.list_colume_notifi {
    position: relative;
    display: block;
    padding: 16.66667px 25px;
    color: #212529;
    /* background-color: #ffffff; */
    border: 1px solid #f1f1f1;
}
@media (max-width: 420px) {
.action-btn-col{
    flex: 0 0 100%;
    text-align: left;
    justify-content: right;
    display: flex;
    margin-top: 10px;
}
}

.account-arrow{
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 25%;

}
.account-arrow p{
    flex: 0 0 25%;
}
.account-arrow .account-icon{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-left: -20px;
    font-size: 12px;
}
body.theme-1 .account-arrow .account-icon{
    background-color: #0CAF60;
}
body.theme-2 .account-arrow .account-icon{
    background-color: #584ED2;        
}
body.theme-3 .account-arrow .account-icon{
    background-color: #6FD943;
}
body.theme-4 .account-arrow .account-icon{
    background-color: #145388;
}
body.theme-5 .account-arrow .account-icon{
    background-color: #B9406B;
}
body.theme-6 .account-arrow .account-icon{
    background-color: #316ff6;
}
body.theme-7 .account-arrow .account-icon{
    background-color: #922C88;
}
body.theme-8 .account-arrow .account-icon{
    background-color: #C0A145;
}
body.theme-9 .account-arrow .account-icon{
    background-color: #48494B;
}
body.theme-10 .account-arrow .account-icon{
    background-color: #0C7785;
}

.account-arrow .account-icon i{
    transition: .5s all ease-in-out;
}
.collapse-view .account-arrow i{
    transform: rotate(180deg);
}

.subAccount {
    font-weight: 600;
  }

  .apexcharts-legend-text {
    margin-right: 10px;
}

[dir="rtl"] .apexcharts-xaxis-texts-g {
    transform: translate(10px, 40px) !important;
}

.apexcharts-yaxis-title-text
{
    transform: rotate(-90deg);
    transform-origin: 0px 133.34800720214844px !important;
}
.apexcharts-yaxis
{
    transform: translate(0px, 0px) !important;
}
.apexcharts-pie-area
{
    display: none;
}

.color-wrp .color-picker-wrp input[type="color"] {
    background-color: #fff;
    height: 55px;
    cursor: pointer;
    border-radius: 3px;
    margin: 0px;
    padding: 0px;
    border: 0;
    margin-bottom: 5px;
    margin-left: 5px;
}

.color-wrp{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.color-wrp .theme-color{
    margin: 0;
}
.color-wrp .color-picker-wrp{
    width: 100px;
}

#calender_type
{
    float: right;
    width : 150px;
}

.dash-header .drp-notification {
    margin-left: 10px;
}

.budget .btn{
    margin-top: 10px;
    margin-right: 10px;
}

.theme-avtar-logo
{
width: 80px;
border-radius: 17.3552px;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
}

.active_name.check_active {
	background: #C4DEFF !important;
}

.logo_img{
    width: 150px;
    height: 60px;
    margin-bottom: 20px;
}
.header{
    background: #fff;
    padding: 0px 20px !important;
    position: sticky;
    top: 0;
    z-index: 99999;
    box-shadow: 1px 2px 9.8px 0px rgba(0, 0, 0, 0.25);

}
.login_btn{
    width: 100px !important;
}
.free_btn{
    width: 160px !important;
}
.getbtn_header{
    background-color: #316FF6;
    color: #fff;
    height: 40px;
    border-radius: 100px;
    border: 1px solid #316FF6;
    padding: 0px 20px;
    transition: 0.4s;
}
.getbtn_header:hover{
    background-color: transparent;
    color: #316FF6;
}



.login_btn{
    width: 100px !important;
}
.free_btn{
    width: 160px !important;
}
.getbtn_header{
    background-color: #316FF6;
    color: #fff;
    height: 40px;
    border-radius: 100px;
    border: 1px solid #316FF6;
    padding: 0px 20px;
    transition: 0.4s;
}
.getbtn_header:hover{
    background-color: transparent;
    color: #316FF6;
}
.main_bg_plan{
    background-color:#EFF6FF ;
}
.main_planinselectdef{
    background-color: #FFF; 
    border: 1px solid #316FF6;
    position: relative;
    box-shadow: 0 0 16px rgba(0,0,0,.08);
}
.main_planinselectdef input{
    position: absolute;
    left: 20px;
    top: 20px;
    height: 30px;
    width: 30px;
}
.main_planinselectdef h3{
    text-align:center;
    color: #316FF6;
    font-weight: 600;
    margin: 20px 0px;
    text-transform:uppercase;
}
.main_planinselectdef h5{
    margin:0px;
}
.main_planinselect{
    background-color: #FFF; 
    border: 1px solid #316FF6;
    position: relative;
    box-shadow: 0 0 16px rgba(0,0,0,.08);
}
.main_planinselect input{
    position: absolute;
    left: 20px;
    top: 20px;
    height: 30px;
    width: 30px;
}
.main_planinselect span{
    color: #316FF6;
    font-weight: 600;
    margin: 20px 0px;
}
.main_planinselect h1{
    font-weight: 600;
    font-size:60px;
    margin-bottom: 20px;
}
.main_planinselect small{
    font-weight: 600;
    margin-bottom: 20px;
    color: #727586;
    font-size: larger;
}
.main_planinselect p{
    color: #000;
    font-weight: 600;
}
.email_setters input{
    background-color: #fff;
    height: 40px;
    border-radius: 5px;
    width: 100%;
    outline: none;
    border: 1px solid #727586;
    padding-left: 10px;
}
.email_setters select{
    background-color: #fff;
    height: 40px;
    border-radius: 5px;
    width: 100%;
    outline: none;
    border: 1px solid #727586;
    padding-left: 10px;
}
.email_setters p{
    font-weight: 600;
    margin-bottom: 5px ;
    padding: 0px;
}
.email_setters button{
    width: 100%;
    height: 100%;
    border: 1px solid #316FF6;
    background-color: transparent;
    outline: none !important;
    color: #316FF6;
    font-weight: 600;
    border-radius: 5px;
    transition:0.4s;
}
.email_setters button:hover{
    background-color: #316FF6;
    color: #fff;
}
.submit_btn{
    width: 100%;
    height: 100%;
    border: 1px solid #316FF6 !important;
    background-color: #316FF6 !important;
    outline: none !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 5px;
}
.main_bg_whiter{
    background-color: #fff;
    padding: 0px 20px !important ;
}
.plan_shower h4{
    width: max-content !important;
    margin-bottom: 0px;
}
.plan_shower{
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dadce0;
    margin-bottom: 20px;
}
.form_set p{
    color: #727586 !important;
}
.plan_priceshower{
    border-top: 1px solid #dadce0;
    border-bottom: 1px solid #dadce0;
    padding-top: 20px;
    padding-bottom: 20px;
}
.plan_priceshower h4{
    margin: 0px;
    width: max-content;
}
.plan_priceshower h6{
    width: max-content;
    margin: 0px;
}
.submit_btnplan{
    border-top: 1px solid #dadce0;
    padding-top: 20px;
    padding-bottom: 20px;
}
.submit_btnplan button{
    width: 100%;
    height: 40px !important;
    background-color: #0a66c2;
    color: #fff;
    font-weight: 600;
    border: 1px solid #0a66c2 !important;
    border-radius: 5px;
    margin-bottom: 20px;
    transition:0.4s;
}
.submit_btnplan button:hover{
    background-color: #fff;
    color: #0a66c2;
}
.heading_period h1{
    width: max-content;
}
.heading_period h2{
    width: max-content;
    margin: 0px;
}
.heading_period .userselect{
    width: max-content;
    display: flex;
    align-items: center;
}
.heading_period h3{
    width: max-content;
    margin: 0px 10px !important;
}
.heading_period button{
    margin: 0px 10px !important;
    width: 30px;
    height: 30px;
    padding: 0px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: none;
}
.minusbtn {
    background-color: #727586;
    color: #fff;
}
.plusbtn {
    background-color: #316FF6;
    color: #fff;
}
.apply_btns{
    background-color: #727586 !important;
    color: #fff !important;
    border: 2px solid #727586 !important;
}
.apply_btns:hover{
    background-color: #fff !important;
    color: #727586 !important;
    font-weight:600;
    letter-spacing: 1px;
}
.plan_box:hover {
    cursor: pointer;
}

.planupgradebtn{
    background-color: #316FF6;
    color: #fff;
    height: 40px;
    border-radius: 100px;
    border: 1px solid #316FF6;
    padding: 0px 20px;
    transition: 0.4s;
    width: max-content !important;
    padding: 0px 30px !important;
}
.main_contentmodals{
    background-color: #E9F3FF !important;
}
.modal-backdrop.show {
    opacity: 0.5;
}
/* CSS */
.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    display: none; /* Initially hidden */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main_concept{
    gap: 20px;
}
.main_dashstart{
    background-color: #D4EDEA;
    border-radius: 20px;
    padding: 10% 18px !important;
}
.main_dashstart img{
    width: 90px;
}
.main_dashstart h2{
    font-weight: 600;
}
.main_dashstart span{
    font-weight: 500;
    font-size:16px;
}
.dash_bento1{
    background-color: #D4EDEA;
}
.dash_bento2{
    background-color: #2D8981;
    color: #fff !important;
}
.dash_bento2 h2{
    color: #fff !important;
}
.dash_bento3{
    background-color: #C4DEFF;
}
.dash_bento4{
    background-color: #316FF6;
    color: #fff !important;
}
.dash_bento4 h2{
    color: #fff !important;
}
.dash_bento5{
    color:#000 !important;
    background:#fff;
}
.main_table_auto{
    overflow:auto;
}
.main_table_auto table{
    min-width:500px !important;
}
.main_tabledash{
    background-color: #fff;
    box-shadow: -5px 2px 12px 0px #00000033;
    border-radius: 20px;
}
.main_tabledash h3{
    margin: 20px 0px;
    color: #316FF6;
    text-align: center;
}
.main_tableheaddash{
    background-color: #C4DEFF;
}
.main_tableheaddash th{
    background-color: transparent !important;
    text-align: center;
}
.body_tabledash td{
    padding: 20px 0px !important;
    text-align: center;
}
.calender_dash{
    width: 130px !important;
    border-radius: 100px;
    height: 40px;
    color: #fff;
    background-color: #316FF6;
    border: 1px solid #316FF6;
}
.calender_dash i{
    margin-right: 10px;
}
.btn_dashtop{
    border: 1px solid #C4DEFF;
    background-color: #fff;
    text-align: center;
    font-weight: 500;
    width: 145px !important;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px !important;
}
.btn_dashtop img{
    width: 60px;
    margin-bottom: 10px;
}

.main_table_location{
    background-color: #fff;
    border-radius: 20px;
}
.body_tablelocation td{
    padding: 10px 20px !important;
    text-align: left;
}
.body_tablelocation span{
    color: #909090;
    margin-bottom: 5px;
}
.body_tablelocation h4{
    margin-bottom: 0px;
    font-weight: 500;
}
.body_tablelocation p{
    margin-bottom: 0px;
    font-weight: 500;
}
.loction_tablescroll{
    max-height: 450px;
    overflow-x: auto;
}

.loction_tablescroll::-webkit-scrollbar {
    width: 10px;
}
  /* Track */
.loction_tablescroll::-webkit-scrollbar-track {
    background: #D2D2D2;
    border-radius: 100px;
}
  /* Handle */
.loction_tablescroll::-webkit-scrollbar-thumb {
    background: #ABABAB;
    border-radius: 100px;
}

@media only screen and (max-width: 776px) {
    .main_paddsetmobi{
        padding:0px 20px !important;
    }
    .dash-sidebar .navbar-content{
        height: calc(100vh - 120px) !important;
        position: relative;
        margin-top: 60px;
    }
    .main_button_headers{
        border-radius: 25px !important;
    }
    /*.dataTable-top{*/
    /*    min-width:500px !important;*/
    /*}*/
    .main_hover_setter{
        overflow:auto !important;
    }
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 10px !important;
    right: 8px !important;
    width: 20px;
}
.select2-container .select2-selection--single {
    height: 44px !important;
    padding: 7.5px 7.5px 3.75px;
    border-radius: 6px !important;
    border: 1px solid #ced4da !important;
}


 .sidebar {
     background-color: #E9F3FF;
     flex-shrink: 0;
     transition: transform 0.3s ease-in-out;
     padding: 1rem 0.5rem;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     z-index: 1050;
     position: sticky;
    top: 10%;
    overflow: auto;
    height: 70vh;
 }

 .first_lt {
     font-size: 30px;
     font-weight: bolder;
     color: #008080;
 }

 .logo {
    text-align: center;
     margin-bottom: 1.5rem;
 }

 .scound_lt {
     font-size: 30px;
     font-weight: bolder;
     color: #ed7a58;
     
 }

 .logo a {
     margin-bottom: 10px;
 }

 .sidebar a {
     display: flex;
     align-items: center;
     padding: 0.6rem 1rem;
     border-radius: 8px;
     color: #333;
     text-decoration: none;
     transition: 0.2s;
 }

 .sidebar a:hover,
 .sidebar a.active {
     background-color: #008ecc;
     color: #fff;
 }

 .premium_btn {
     border: #fff 1px solid;
     padding: 10px;
     color: white;
     background-color: #008ecc;
     border-radius: 13px;
     transition: 0.6s !important;
 }

 .premium_btn:hover {
     background-color: white;
     color: #008ecc;
     border: #008ecc 1px solid;

     transition: 3s;
 }

 .sidebar-footer {
     text-align: center;
     padding: 1rem;
 }

 .close-sidebar-btn {
     position: absolute;
     top: 10px;
     right: 10px;
     background: none;
     border: none;
     font-size: 1.2rem;
     display: none;
 }

 .main-content {
     flex-grow: 1;
     display: flex;
     flex-direction: column;
     overflow: hidden;
 }

 .topbar {
     height: 60px;
     background-color: #E9F3FF;
     border-bottom: 1px solid #ddd;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 1rem;
 }

 .hamburger-btn {
     background: none;
     border: none;
     font-size: 1.5rem;
     display: none;
 }

 .main-body {
     flex-grow: 1;
     overflow-y: auto;
     padding: 20px 20px 0px 20px;
     text-align: center;
 }

 .chat-container {
  background-color: #fff;
  border: #d2d2d2 1px solid;
  border-radius: 30px;
  padding: 30px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.chat-container input {
  flex: 1;
  background-color: transparent;
  border: none;
  color: black;
  font-size: 16px;
  outline: none;
}

.chat-container i,
.chat-container button {
  color: #000;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.chat-container .icon-right-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.chat-tools {
  margin-top: 20px;
  font-size: 16px;
  color: #ccc;
}
 @media (max-width: 768px) {
     .sidebar {
         position: fixed;
         height: 100%;
         left: 0;
         top: 0;
         transform: translateX(-100%);
     }

     .sidebar.open {
         transform: translateX(0);
     }

     .close-sidebar-btn {
         display: block;
     }

     .hamburger-btn {
         display: inline-block;
     }

     .overlay {
         position: fixed;
         top: 0;
         left: 0;
         height: 100vh;
         width: 100vw;
         background-color: rgba(0, 0, 0, 0.4);
         z-index: 1040;
         display: none;
     }

     .overlay.show {
         display: block;
     }
     .content_box {
         max-height: 60vh !important;
     }
     .chat-container{
        border-radius: 15px !important;
        padding: 10px 15px;
        margin: 0px !important;
        width: 100%;
        margin-bottom: 10px !important;
     }
    .chat_rowmain{
        max-height: 75vh !important;
    }
 }

.chat_rowmain{
    max-height: 85vh;
}
.content_box {
    overflow-y: auto;
    max-height: 70vh;
    display: flex;
    flex-direction: column-reverse;
}

.content_box::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.content_box::-webkit-scrollbar-track {
  background: transparent; 
}
 
/* Handle */
.content_box::-webkit-scrollbar-thumb {
  background: #888; 
  cursor: pointer;
}

/* Handle on hover */
.content_box::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
