@charset "UTF-8";

:root {
    --color1: #4899e1;
    --color2: #4899e1;
    --color3: #4899e1;
    --color1_light2: #bee1ff;
    --color1_dark: #1e639f;
    --color2_light: #e3f0fd;

    --green: #30b260;
    --blue: #17a2b8;
    --orange: #e69d3e;
    --red: #e63e3e;
    --gray: #999999;
    --black: #000000;

    --green2: #30b260eb;
    --blue2: #17a2b8eb;
    --orange2: #e69d3eeb;
    --red2: #e63e3eeb;
    --gray2: #999999eb;
    --black2: #000000eb;
}
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

html,
* {
    font-family: "Roboto", sans-serif;
}

:root {
    --gray: #707070;
    --dark: #3e3e3e;
    --fs_12: 12px;
    --fs_14: 14px;
    --fs_15: 15px;
    --fs_18: 18px;
    --fs_20: 20px;
    --fs_22: 22px;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

.hideIt {
    display: none;
}

html,
* {
    font-family: "Roboto", sans-serif;
}

/* global values Start */
ul {
    list-style: none;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}
.error-message{
    float: right;
    height: 0;
    line-height: 10px;
    color: red;
    position: relative;
    font-size: 10px;
    margin-top: -10px;
    display: block;
}
.message {
    position: fixed;
    display: inline-block;
    width: auto;
    height: 120%;
    top: -150%;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 8888;
    padding: 0 30px;
    opacity: 0;
    transition: all 0.5s;
}

.message span {
    overflow: hidden;
    border-radius: 3px;
    display: block;
    max-width: 600px;
    border: 1px solid #999;
    color: #000;
    z-index: 9999;
    margin: 150px auto;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding: 20px 50px;
}

.message .exitbtn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    color: #666;
}

.error span {
    background: #f0cece;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.success span {
    background: #d6e4b1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.showAlert{
    opacity: 1;
    top: 0;
}
.default span {
    background: #ccc;
}
.btn-danger-login {
    padding: 12px 35px;
    font-size: var(--fs_18);
    border-radius: 10px;
    color: white;
}

label {
    display: block;
}

.note_div_a div{
    display: block;
    margin: auto;
}
.note_div_a div small{
    font-size: 12px;
}
.note_div_b div{
    padding: 6px;
    text-align: center
}
.note_div_c{
    text-align: center;
}
.my-inp {
    background-color: white;
    border: 1px solid var(--dark);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 15px;
    width: 100%;
    margin: 6px 0;
}

/* Start Header */
header {
    background-color: #fff;
    padding: 15px 2%;
    width: 100%;
    box-shadow: 0px 0px 2px var(--dark);
}

header .logo img {
    height: 50px;
}

.search-form {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 15px;
    gap: 10px;
    width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.search-form i {
    font-size: var(--fs_22);
}

.icons {
    justify-content: flex-end;
    display: flex;
    align-items: center;
}

.icons .icon {
    position: relative;
}
.icons .icon:not(:last-of-type) {
    padding-right: 20px;
}

.icons .icon .num {
    height: 15px;
    left: -2px;
    top: -2px;
    width: 15px;
    line-height: 1.5;
    font-size: 10px;
}

.icons .icon img {
    height: 70px;
}

.search-form input {
    padding: 0px;
    border: 0;
    width: 100%;
    font-size: 15px;
}

.hideIt {
    display: none;
}
/* Header End */
/* Navigation Starts */
.site_nav {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    align-items: center;
    justify-content: center;
    z-index: 800;
}

.site_nav .nav-item {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 20%;
    height: 80px;
    border-top: solid 1px var(--gray);
    color: var(--dark);
    font-size: var(--fs_20);
    text-align: center;
}
.site_nav .nav-item.active {
    font-weight: bold;
}
.site_nav .nav-item:not(:last-of-type) {
    border-right: solid 1px var(--gray);
}
.site_nav .nav-item i {
    font-size: 23px;
}
.site_nav .nav-item img {
    width: 26px;
}
.site_nav .nav-item span {
    height: 30px;
}

/* Navigation End */
/* ---------------------------Page Content Start-------------------- */
.page-content {
    max-width: 550px;
    padding: 30px 0;
    margin: auto;
    margin-bottom: 80px;
}

.heading {
    display: flex;
    justify-content: space-between;
    color: var(--dark);
    margin: 20px 0;
    font-size: var(--fs_20);
}
.dashboard-h {
    display: flex;
    justify-content: space-between;
    color: var(--color2);
    margin: 0px 0;
    font-size: var(--fs_15);
}

.dashboard-h .title-d {
    color: var(--color2);
    font-size: var(--fs_15);
    font-weight: bold;
}
.title-bold {
    font-weight: bold;
}
.custom-box {
    width: 60px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.icon {
    font-size: 34px;
    font-weight: bold;
}

.grid-container {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.custom-icon {
    position: relative;
    padding: 20px 0;
}
.custom-icon.left-border{
    border-left: 2px solid black;
}

.custom-icon i,
.custom-icon svg {
    color: white;
    background-color: black;
    padding: 10px;
    border-radius: 5px;
    width: 40px;
    text-align: center;
}

.triangle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid black;
    bottom: -8px;
}

.vl {
    border-left: 2px solid black;
    height: 100px;
}

.text-content {
    text-align: center;
    padding-top: 20px;
    padding-left: 10px;
}

.text-content p {
    margin: 5px 0;
}

.white-box {
    scrollbar-width: thin;
    scrollbar-color: #cecece white;
    width: 8px;
    background-color: white;
    border-radius: 15px;
}

.white-box-dashboard {
    scrollbar-width: thin;
    scrollbar-color: #cecece white;
    width: 8px;
    background-color: white;
    border-radius: 15px;
    position: relative;
    padding: 10px;
    width: 100%;
    border: solid 2px #707070;
    border-radius: 10px;
    border: 1px solid #8c8c8c;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.white-box-dashboard-hight {
    min-height: 360px;
}

.white-box::-webkit-scrollbar {
    width: 8px;
    background-color: white;
    border-radius: 15px;
    margin: 10px;
}

.white-box::-webkit-scrollbar-thumb {
    background-color: #cecece;
    border-radius: 15px;
    margin: 10px;
}

.white-box::-webkit-scrollbar-track {
    background-color: white;
    border-radius: 15px;
    margin: 10px;
}

.white-box::-webkit-scrollbar-corner {
    background-color: white;
}

.white-box::-webkit-scrollbar-horizontal {
    height: 12px;
}

.white-box::-webkit-scrollbar-thumb:horizontal {
    background-color: #cecece;
}

.white-box::-webkit-scrollbar-track:horizontal {
    background-color: white;
}

.white-box::-webkit-scrollbar-corner:horizontal {
    background-color: white;
}

.heading a {
    color: var(--dark);
}
.heading .title {
    font-weight: bold;
    font-size: var(--fs_22);
}

.num {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 14px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    text-align: center;
    line-height: 1.7;
}

/* My Properties Sect Start */
.my-properties .prop .image {
    position: relative;
}
.my-properties .prop .image img {
    height: 210px;
    border-radius: 20px;
}
.my-properties .prop .title {
    color: var(--dark);
    padding-top: 5px;
    font-size: var(--fs_20);
}
.my-properties .prop .info {
    position: absolute;
    bottom: 10px;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 14px;
    width: 100%;
    padding: 0 10px;
}
.my-properties .prop .info > div {
    background-color: rgba(255, 255, 255, 0.8392156863);
    border-radius: 37px;
    padding: 3px 17px;
}

/* My Properties Sect Ends */
/* Recent Activities Start */
.activity {
    margin: 10px 0;
    background-color: white;
    border: 1px solid var(--dark);
    border-radius: 20px;
    padding: 7px 10px;
    font-size: 15px;
    font-size: var(--fs_18);
}
.activity .date {
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    border-right: solid 1px var(--gray);
    font-size: var(--fs_18);
    line-height: 1;
}
.activity .date strong {
    font-size: var(--fs_20);
}
.activity .date span {
    font-size: 16px;
    margin-top: 10px;
}
.activity .title {
    padding-top: 7px;
    padding-left: 30px;
}
.activity .price {
    text-align: right;
    padding: 13px 10px;
}
.activity .price i {
    color: var(--dark);
    font-size: var(--fs_22);
}

/* Recent Activities Ends */
/* Services Starts */
.btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.butn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 84px;
    font-weight: bold;
    font-size: var(--fs_18);
    border-radius: 20px;
    padding: 0 10px;
}

.red-butn {
    color: #d02427;
    background-color: #fcdfdf;
}

.blue-butn {
    background-color: #dfecfc;
    color: #2680ea;
}

/* Services Ends */
/* ---------------------------Page Content Start-------------------- */
/* --------------------------- Login Page Start -------------------- */
.login {
    color: var(--dark);
    border-radius: 20px;
    max-width: 658px;
    margin: 90px auto;
    padding: 40px;
}
.login h1 {
    font-size: var(--fs_20);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0px;
    font-weight: bold;
}
.step-container {
    position: relative;
    text-align: center;
    transform: translateY(-43%);
    margin-top: -10px;
}
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    padding: 10px;
    background-color: #e0ffe4;
    border: 2px solid #3bc14a;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
    color: #59cc65;
    font-size: 12px;
}

#multi-step-form {
    overflow-x: hidden;
}

/* --------------------------- Login Page End -------------------- */

@media (max-width: 992px) {
    :root {
        --fs_18: 14px;
        --fs_20: 16px;
        --fs_22: 18px;
    }
    .hideMob {
        display: none;
    }
    .icons .icon:not(:last-of-type) {
        padding-right: 10px;
    }
    .search-form {
        width: 100px;
    }
    .search-form input {
        font-size: 13px;
    }
    .search-form i {
        font-size: 15px;
    }
    .my-properties .prop .image img {
        height: 150px;
    }
    .activity .price {
        font-size: 13px;
    }
    .activity .title {
        padding-left: 10px;
    }
    .site_nav .nav-item {
        font-size: 14px;
    }
    .login {
        padding: 30px;
    }

    .icons .icon img {
        height: 48px;
    }
}
/* Bootstrap Edits Start */

.btn-link {
    font-size: 12px;
    font-weight: bold;
}

.note-flex {
    display: flex;
    justify-content: space-between;
}

.note-flex-start {
    display: flex;
    justify-content: start;
}
.flex-start{  
    display: flex;
    align-items: start;
    justify-content: start;
}
.note-font {
    font-size: var(--fs_12) !important;
}
.form-control {
    border: 1px solid #c7c7c7;
}

/* Currency Select Input */
.input-group .input {
    width: 28%;
}
.input-group .cur-inp {
    border-radius: 5px 0px 0px 5px;
    line-height: 40px;
    text-align: center;
    border: 1px solid gray;
    height: 28px;
    padding: 0;
}

.form-control:focus {
    border-color: #c7c7c7;
    box-shadow: none;
    outline: none;
}

.btn-outline-secondary {
    --bs-btn-border-color: #c7c7c7;
}

/* Bootstrap Edits End */
/* global values Start */

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.h-line {
    height: 28px;
    width: 25px;
    border-left: 1px solid #707070;
}

.padding-h-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.hideWeb {
    display: none !important;
}

/* Flex */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-gap-5 {
    display: flex;
    gap: 5px;
}

.flex-gap-10 {
    display: flex;
    gap: 10px;
}

/* For Finance chekcs color */
.greenText {
    color: #28b293 !important;
}

.redText {
    color: #e63e3e !important;
}

.greyText {
    color: #999 !important;
}
.orangeText {
    color: var(--orange) !important;
}

#msgHolder .success {
    background: var(--light_green);
}
.success {
    background: var(--light_green);
}
/* Inputs And Buttons */
.linkDisabled {
    cursor: not-allowed;
    pointer-events: none;
    color: grey;
}

.wb-txt-inp {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 5px;
    color: #000;
    padding: 6px;
    position: relative;
    background-color: white;
    padding: 0px;
}

.place_1 {
    padding-right: 0;
}
.place_2 {
    padding-left: 0;
}
.place_1 .wb-ele {
    border-radius: 10px 0px 0px 10px;
}
.place_2 .wb-ele {
    border-radius: 0px 10px 10px 0px;
}
.place_1 .wb-txt-inp {
    border-radius: 10px 0px 0px 10px;
}
.place_2 .wb-txt-inp {
    border-radius: 0px 10px 10px 0px;
}
.place_1 input {
    padding-left: 30px;
}

.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 2;
    width: 100px;
    color: white;
    font-size: 12px;
    background-color: #192733;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
}

.hover-text:hover .tooltip-text {
    visibility: visible;
}

#right {
    top: -8px;
    left: 120%;
}

#right::before {
    top: 35%;
    left: -2%;
}

.hover-text {
    position: relative;
    display: inline-block;
    font-family: Arial;
    text-align: center;
}

.mr-24 {
    margin-right: 34px;
}
/* input with span */

.wb-ele {
    background-color: white;
    border: 1px solid #c7c7c7;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
    padding: 6px 10px;
    font-size: 13px;
    height: 35px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    min-height: 35px;
    color: #999;
}
.wb-ele.allocated  {
    color: #000;
}
.wb-ele:disabled{
    opacity: 0.2;
}

.wb-ele-empahty {
    background-color: white;
    border: 1px solid #c7c7c7;
    display: flex;
    font-weight: bold;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
    border-radius: 7px;
    padding: 12px 10px;
    font-size: 15px;
    min-width: 238px;
    min-height: 35px;
}

.wb-ele-select,
.wb-ele-select-modal,
.wb-ele-select-cur,
.wb-ele-select-cur,
.wb-ele-select-status {
    background-color: white;
    border: 1px solid #282828;
    font-weight: 400;
    align-items: center;
    gap: 10px;
    border-radius: 9px;
    font-size: 15px;
    overflow: hidden;
    width: -moz-available;
}
.wb-ele-select ,
.wb-txt-inp input,
.wb-ele-dashboard-no-border,
.wb-ele-dashboard ,
.wb-ele-dashboard input{
    background-color: white;
    border: 1px solid #8e8e8e;
    font-weight: 400;
    border-radius: 5px;
    font-size: 13px;
    width: 100%;
    min-height: 28px;
    align-content: center;
    padding: 0 10px;
}
textarea.wb-ele-dashboard {
    align-content:unset;
}

select.wb-ele-dashboard,
textarea.wb-ele-dashboard,
input.wb-ele-dashboard {
    padding: 0 10px;
}

.wb-ele-dashboard-no-border{
    border: none;
    display: flex;
    align-items: center;
    align-content: flex-start;
}
.wb-ele-select-cur {
    width: 46px;
    font-weight: bold;
}

.wb-ele-select-status {
    width: 161px;
}

.wb-ele-tag {
    width: 161px;
    padding-left: 2px;
    font-size: 14px;
    border: 1px solid black;
    border-radius: 11px;
    white-space: nowrap;
    overflow: hidden;
}

.wb-ele img {
    width: 20px;
}

.wb-ele-select img {
    width: 20px;
}

.inp-with-desc {
    position: relative;
    padding-top: 0;
}

.inp-with-desc .sm-txt {
    position: absolute;
    top: 4px;
    left: 40px;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 9px;
}

.inp-with-desc .wb-ele {
    font-size: 14px;
    padding-top: 10px !important;
    width: 50%;
}

/* COLORS AND BG_COLORS */
.bg-green {
    background-color: #3bc14a;
    border-color: #3bc14a;
    color: white;
}

.btn-gray {
    color: #515151;
    background: #e8e8e8;
}

.btn-gray:hover {
    color: #515151;
    background: #e8e8e8;
    opacity: 0.9;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.sm-txt {
    display: block;
    font-size: 10px;
    color: #a1a1a1;
}

.sm-txt-indx {
    color: #a1a1a1;
}

/* Input Type Checkbox */
input[type="checkbox"] {
    margin-top: 4px;
    appearance: none;
    position: relative;
    cursor: pointer;
    margin: -4px 2px;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid #7c7c7c;
    height: 17px;
    width: 17px;
}

input[type="checkbox"]::before {
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    top: -1px;
    left: -1px;
    border: 1px solid #7c7c7c;
    border-radius: 4px;
    box-shadow: inset 1em 1em var(--color1);
    transition: 120ms transform ease-in-out;
    cursor: pointer;
    transform: scale(0);
}

input[type="checkbox"]:checked:before {
    transform: scale(1);
}

input[type="checkbox"]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 1px;
    left: 5px;
    z-index: 11;
}

/* Start Header */

.navbar-nav .nav-link {
    padding: 0px 30px !important;
    color: #292929;
}

.navbar-nav .nav-link.active {
    font-weight: bold;
    color: var(--color1);
}

.navbar {
    padding: 0px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    min-height: 54px;
}

.filter {
    width: 400px;
    height: 100%;
    position: fixed;
    top: 50px;
    right: -400px;
    background-color: #fff;
    overflow-x: hidden;
    z-index: 2;
    transition: all 0.5s;
}

.filter-bg {
    width: 0;
    height: 100%;
    position: fixed;
    top: 0;
    right: -400px;
    background-color: #2b2a2a77;
    overflow-x: hidden;
    z-index: 1;
    transition: all 0.8s;
}

.filter.active {
    width: 300px;
    right: 0;
    transition: all 0.6s;
    z-index: 2;
    max-width: 80%;
}

.filter-bg.active {
    width: 100%;
    right: 0;
    transition: all 0.6s;
    z-index: 1;
}
.filter .btn-exit {
    width: 100%;
    background-color: #eee;
    padding: 6px;
    font-weight: bold;
}

.filter .btn-exit img {
    height: 10px;
}

.filter .btn-exit button {
    border: none;
    background: #eeeeee;
}

.sidebar {
    width: 400px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -400px;
    background-color: #fff;
    overflow-x: hidden;
    z-index: 111;
    transition: all 0.5s;
}

.sidebar-bg {
    width: 0;
    height: 100%;
    position: fixed;
    top: 0;
    right: -400px;
    background-color: rgba(43, 42, 42, 0.466);
    overflow-x: hidden;
    z-index: 55;
    transition: all 0.8s;
}

.sidebar.active {
    width: 330px;
    right: 0;
    transition: all 0.6s;
    z-index: 2;
}

.sidebar-bg.active {
    width: 100%;
    right: 0;
    transition: all 0.6s;
    z-index: 1;
}

.sidebar .btn-exit {  
    width: 100%;
    background-color: #eee;
    padding: 9px;
    font-weight: bold;
    height: 54px;
}

.sidebar .btn-exit img {
    height: 10px;
}

.sidebar .btn-exit button {
    border: none;
    background: #eeeeee;
}

.sidebar .side-list {
    margin: 0;
    padding: 0;
}

.sidebar .side-list .item a {
    padding: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: 0.4s;
    color: #000;
}

.sidebar .side-list .item a i {
    margin: 5px;
}

.sidebar .side-list .item a:hover,
.sidebar .side-list .item a.active {
    color: var(--color1);
}

.sidebar .side-list .active a {
    color: var(--color1);
}

.sidebar .side-list .item .link {
    color: currentColor;
    font-weight: bold;
}

.child_menu {
    border-right: 5px solid var(--gentela_darker);
    padding: 0 10px;
}

.child_menu li a:hover {
    color: var(--color1) !important;
}

.text-dark {
    width: 30px;
    text-align: center;
}
.text-dark.active {
    color: var(--color1) !important;
}

.navbar .menu {
    background-color: var(--color1);
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    margin-left: 20px;
    border: none;
}

.navbar .menu img {
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    position: absolute;
    width: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.navbar .navbar-brand .logo{
    height: 40px;
}

.navbar .nav-btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar .nav-btns a {
    color: black;
    padding: 10px;
    font-size: 25px;
    background: white;
    border: 0px;
    font-size: 22px;
}

.navbar .nav-btns .dropdown-menu a {
    font-size: 16px;
}

.navbar .nav-btns a img {
    width: 60px;
}

.navbar .nav-btns .profile {
    font-size: 35px;
}
.note_div_b{
    font-size: 12px;
}
/* .indexNotes {
    max-height: 300px;
    overflow-y: auto;
} */

/* Hide dropdown arrow and style the select box for disabled select elements */
.disabled-select {
    background-color: #e9ecef; /* Gray background to indicate disabled state */
    cursor: not-allowed; /* Change cursor to indicate it's disabled */
    border: 1px solid #ced4da; /* Border to match disabled input appearance */
    color: #6c757d; /* Text color for disabled state */
}

/* Hide the dropdown arrow */
.disabled-select::-ms-expand {
    display: none; /* For Internet Explorer */
}

.disabled-select {
    -webkit-appearance: none; /* For Chrome/Safari */
    -moz-appearance: none; /* For Firefox */
    appearance: none; /* For modern browsers */
}

/* Style for disabled inputs */
.disabled-input {
    background-color: #e9ecef; /* Gray background to indicate disabled state */
    color: #6c757d; /* Text color for disabled state */
    cursor: not-allowed; /* Change cursor to indicate it's disabled */
    border: 1px solid #ced4da; /* Border to match disabled input appearance */
    pointer-events: none; /* Disable all pointer events to prevent interaction */
}

/* Remove input arrow and styling for datetime-local input */
.disabled-input::-webkit-inner-spin-button,
.disabled-input::-webkit-calendar-picker-indicator {
    display: none; /* Hide spinner and calendar picker for datetime-local input in WebKit browsers */
}

/* Style for disabled inputs */
.disabled-accoridon {
    background-color: #e9ecef00; /* Gray background to indicate disabled state */
    color: #ffffff00; /* Text color for disabled state */
    cursor: not-allowed; /* Change cursor to indicate it's disabled */
    pointer-events: none; /* Disable all pointer events to prevent interaction */
}

/* Remove accoridon arrow and styling for datetime-local accoridon */
.disabled-accoridon::-webkit-inner-spin-button,
.disabled-accoridon::-webkit-calendar-picker-indicator {
    display: none; /* Hide spinner and calendar picker for datetime-local input in WebKit browsers */
}

.navbar .nav-btns .menu {
    position: absolute;
    top: 120px;
    right: 175px;
    padding: 10px 20px;
    background: #f4f4f4;
    width: 200px;
    box-sizing: 0 5px 25px black;
    border-radius: 15px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    height: 70px;
}

.navbar .nav-btns .menu li a {
    font-size: 16px;
}

.navbar .nav-btns .menu.active {
    top: 80px;
    visibility: visible;
    opacity: 1;
}

.navbar .nav-btns .menu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 28px;
    width: 20px;
    height: 20px;
    background: #f4f4f4;
    transform: rotate(45deg);
}

/* auto-complete .autocomplete{
  width: 120px;
} */
/* pt dashbord */
.client-num {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    margin: 20px 0;
    font-weight: bold;
}

.line-height-10 {
    line-height: 12px;
}

.dropdowns {
    gap: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.dropdowns button {
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;
}

.dashboard-padding{
    padding-left: 20px;
    padding-right: 20px;
}

.dashboard {
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    margin: 10px 0;
    font-family: "Roboto", sans-serif;
}

.dash-head {
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search-leads-form {
    display: flex;
    align-items: center;
    border-radius: 7px;
    gap: 10px;
    width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    padding: 10px;
}

.search-leads-form i {
    font-size: 20px;
}

.search-leads-form input {
    padding: 0px;
    border: 0;
    width: 100%;
}

.small-btns {
    display: flex;
    width: 180px;
    flex-wrap: wrap;
}

.small-btns .no-gutters > .col,
.small-btns .no-gutters > [class*="col-"] {
    padding-right: 2px;
    padding-left: 2px;
}

.small-btns input {
    color: #000;
    margin: 2px;
    font-weight: bold;
    border-radius: 3px;
    font-size: 10px;
    border: solid 1px rgba(0, 0, 0, 0.4);
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;
    width: 100%;
    display: block;
    text-align: center;
}

.dash-nav {
    justify-content: center;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 15px;
}

.dash-nav button {
    border: 0;
    padding: 0;
    background-color: transparent;
    margin: 0 7px;
}

.priority {
    display: flex;
    font-size: 12px;
    align-items: center;
    gap: 10px;
}

.priority div {
    width: 10px;
    height: 10px;
    display: block;
}

.priority div.low {
    background-color: #eaff00;
}
.priority div.med {
    background-color: #ff9d00;
}
.priority div.high {
    background-color: #ff0000;
}


.priority div.gray {
    background-color: #888888;
}

.dash-content .columns-titles{
    background: var(--color1_light2);
    padding: 4px;
}
.dash-content .title {
    font-weight: bold;
    align-content: center;
}
.dash-content .checkbox {
    max-width: 3.66666666%;
    padding-right: 46px;
    align-items: center;
    display: flex;
}

.dash-content .client:nth-of-type(2n+1){
    background: white;
}
.dash-content .client:nth-of-type(2n){
    background: var(--color2_light);
}

.dash-content .client-row {
    padding: 6px 0;
}
.dash-content .client-row .info{
    align-content: center;
    font-size: 13px;
}
.dash-content .client-row .title {
    display: flex;
}

.dash-content .client-row p ,.dash-content .client-row title {
    font-weight: bold;
    font-size: 12px;
    align-items: center;
    gap: 4px;
    margin: 0;
}
.dash-content .client-row title {
    font-size: 16px;
}

.dash-content .client-row p i {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.dash-content .client-row p img {
    width: 20px;
    padding: 2px;
}

.dash-content .client-row .status {
    display: flex;
    justify-content: center;
    padding-left: 24px;
}

.dash-content .client-row .status p {
    padding: 7px 20px;
    font-weight: bold;
    border-radius: 40px;
    border: solid 2px;
    font-size: 13px;
}

.dash-content .client-row .status p.new {
    background-color: #e5ecff;
    border-color: #5870b1;
    display: unset;
    padding: 8px;
    white-space: nowrap;
}

.dash-content .client-row .status p.open {
    background-color: #f4e0ff;
    border-color: #b756ea;
}

.dash-content .client-row .status p.in-progress {
    background-color: #e0ffe4;
    border-color: #51ca60;
    width: 120px;
    left: -30px;
    font-size: 13px;
    position: relative;
    display: block;
}

.dash-content .client-row .notes {
    font-size: 13px;
    line-height: 1.3;
    padding-left: 24px;
}

.dash-content .client-row .budget {
    font-size: 13px;
    font-weight: bold;
    padding-left: 24px;
}

.dash-content .client-row .wb-ele img {
    width: 20px;
}

.dash-content .client-row .wb-ele span {
    font-size: 11px;
}

.modal-trigger {
    cursor: pointer;
}

.dash-content .lead-preview {
    max-height: 80%;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    z-index: 99999999999;
    left: 100%;
    top: 100px;
    transition: 0.6s;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
}

.dash-content .lead-preview .active {
    pointer-events: all;
    opacity: 1;
    max-height: -moz-fit-content;
    max-height: -webkit-fit-content;
    max-height: fit-content;
    top: 50px;
    display: block;
}

.lead-preview .modal-header {
    border-bottom: 2px solid rgb(202, 201, 201);
}

.lead-preview .modal-header .btn-exit {
    padding: 10px;
    border: 0;
    background-color: transparent;
    color: var(--color1);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
}

.lead-preview .modal-header .btn-exit i {
    font-size: 30px;
    color: black;
}

.lead-preview .nothing {
    text-align: center;
    padding: 5px 0;
    color: #777;
}

.lead-preview .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0;
    padding: 0 15px;
}

.lead-preview .heading .title {
    color: var(--color1);
    font-size: 18px;
}

.lead-preview .heading .btn {
    font-size: 14px;
    color: var(--color1_dark);
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lead-preview .heading .btn i {
    font-size: 14px;
}

.lead-preview .dropdown {
    position: initial;
}

.sm-btn {
    background-color: white;
    color: rgba(0, 0, 0, 0.3);
    min-width: 26px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    /* padding: 5px; */
    border-radius: 15px;
    border: #707070 1px solid;
    min-width: 30px;
}

.sm-btn.float {
    position: absolute;
    top: 10px;
    right: 10px;
}

.white-box {
    position: relative;
    padding: 10px;
    width: 100%;
    border: solid 2px #707070;
    border-radius: 10px;
}

.white-box > .row {
    margin: 0;
}

.white-box > .row > .div {
    white-space: nowrap;
}

.white-box select {
    width: 100%;
}

.horizontal-scroll {
    overflow-x: scroll;
}

.horizontal-scroll .controls{
    display: flex;
    justify-content: space-between;
}

.button-container {
    display: inline-block;
}

.flexbox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 35px;
}

.flexbox-container > div {
    width: 100px;
}

.action-btn {
    background-color: #fcfaf6dc;
    margin: 5px;
    flex: 1;
}

.inline-container > .row {
    margin: 0;
}

.index-note {
    border: 1px solid #ccc;
}
.note small {
    color: #777;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
}
.cke_chrome {
    border: 4px solid #ccc;
}
a.view-more {
    color: #d73b35;
    font-size: 16px;
}

.note .spoken {
    margin-bottom: 4px;
    color: #707070;
    font-size: 14px;
}

.note .box-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.note .box-heading h5 {
    font-size: 16px;
    letter-spacing: 0.32px;
    margin: 0;
}

.lead-preview .note {
    padding: 5 15px;
    padding-bottom: 10px;
    margin: 10px 0;
    display: block;
    position: relative;
    padding: 10px;
    width: 100%;
    border: solid 2px #707070;
    border-radius: 10px;
}

.white-box .priority {
    font-size: inherit;
}

.white-box label {
    margin: 3px 0;
}

/* tags-input {
  padding: 4px 6px !important;
} */
tags-input{
    padding: 0 !important;
}
tags-input .tags {
    border-radius: 5px ;
    border: 0 ;
    box-shadow: none ;
    background-color: #fff0;
    padding: 0;
}

tags-input .tags .odd {
    background: rgba(255, 92, 198, 0.1215686275) ;
    border: #ff5cc6 solid 1px ;
    color: #ff5cc6 ;
}

tags-input .tags input,
tags-input .tags .tag-item {
    font-size: 12px ;
    border-radius: 10px ;
    height: 22px ;
    line-height: 21px ;
    font-size: 10px ;
    margin: 3px 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 98%;
}

tags-input .tags input {
    font-size: 14px ;
    border: 0 ;
    padding: 0 ;
}

tags-input .tags .even {
    background: rgba(100, 170, 94, 0.1215686275) ;
    border: #64aa5e solid 1px ;
    color: #64aa5e ;
}

tags-input .tags .input{
    margin: 0;
    height: auto;
    font-size: 13px;
    width: 80px;
}
tags-input .host {
    margin-top: 0;
    margin-bottom: 0;
}
tags-input .tags.focused{
    box-shadow: 0 0 4px #ccc;
}
tags-input.ng-invalid .tags{
    box-shadow: 0 0 4px var(--red);
}
.white-box label .btn.show,
.white-box label .btn:hover {
    color: unset;
    background-color: unset;
}

.lead-preview .accordion-item {
    border: 0;
}

.accordion-button .title {
    color: var(--color1);
    font-size: 18px;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
    background-color: unset;
    box-shadow: unset;
    color: unset;
}
.accordion-button{
    text-decoration: underline;
}
.row-container {
    display: flex;
    justify-content: space-between;
}

.colored-box {
    position: relative;
}

.notification-container {
    position: relative;
    display: inline-block;
}

.notifications-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.notifications-dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-size: 12px !important;
    border-bottom: 1px solid #ddd;
}

.notifications-dropdown a:last-child {
    border-bottom: none;
    /* Son elemanın altındaki çizgiyi kaldır */
}

.notification-container:hover .notifications-dropdown {
    display: block;
}

.notification-icon {
    cursor: pointer;
}
.notification-badge {
    position: absolute;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 35%;
    background-color: red;
    color: white;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    bottom: 16px;
}

.colored-box {
    position: relative;
    margin: 0.5px;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    text-align: center;
    overflow: visible;
    border: 1px solid #ddd;
    cursor: pointer;
    width: auto;
}
.status-btn{
    text-align: center;
    font-size: 14px;
    padding: 6px 12px;
    margin: 8px 4px;
    font-weight: bold;
    white-space: nowrap;
    border-radius: 16px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.status-btn-green{
    color: var(--color1_dark);
    border: var(--color1_dark) solid 2px;
    background-color: var(--color2_light);
}
.status-btn-green-dark{
    color:#fff;
    border: var(--color1_dark) solid 2px;
    background-color: var(--color1_dark);
}
.status-btn-grey{
    color: #999;
    border: #999 solid 2px;
    background-color: #ccc;
}


.lead-preview .down-btns {
    padding-top: 20px;
    padding-right: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reminderCols {
    width: 325px;
}

.reminderDrop {
    display: flex;
    align-items: center;
    justify-content: center;
}
.down-btns {
    padding-top: 20px;
    padding-right: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lead-preview .down-btns .btn {
    font-size: 16px;
}

/* Checkbox Switch Input */
.switch_div{
    display: flex;
    align-items: center;
}
.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 20px;
    padding-left: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background-color: #198754;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #999;
}

.slider.reverse{
    background-color: #999;
}
input:checked + .slider.reverse {
    background-color: #198754;
}

.switch-actions {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 23px;
    padding-left: 32px;
}

.switch-actions input {
    opacity: 0;
    width: 0;
    height: 0;
}

.actionSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 42px;
    background-color: #b3b1b1;
    transition: 0.4s;
}

.actionSlider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
}


input:checked + .actionSlider {
    background-color: #15d25f;
}

input:checked + .disabled {
    background-color: #afafaf;
}

.green-background {
    background-color: #15d25f;
}

.green-background:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    right: 4px;
    left: auto;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
}

.no-data-box {
    display: inline-block;
    padding: 36px 50px;
    color: #ccc;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    /* animation: pulse 2.5s infinite; */
    text-transform: uppercase;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px #b93006;
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px #b93006;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px #b93006;
    }
}

.drpbtn {
    width: 90px;
    height: 90px;
    background-color: #b93006;
    color: white;
    border: 1px solid #b93006;
    border-radius: 5px;
    /* padding: 10px; */
    font-size: 14px;
}
.noData {
    font-size: 14px;
    color: var(--color1_dark);
    text-align: center;
    border: 1px solid #0000004f;
    padding: 16px;
}

input:focus + .slider {
    box-shadow: 0 0 1px #b3b1b1;
}

input:checked + .slider:before {
    transform: translateX(18px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* End Checkbox Switch Input */

.previewToggle {
    overflow: hidden;
    cursor: pointer;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    cursor: pointer;
}

.truncate-expanded {
    white-space: normal;
}

/* show more / show less */
.text {
    border-left: 2px solid #707070;
    border-right: 2px solid #707070;
    margin: 6px;
    padding: .5rem;
    word-wrap: break-word;
}
.text_pre {
    white-space: break-spaces;
}
.text p {
    display: none;
    padding-left: 12px;
}

.text p:first-of-type {
    display: inline;
    padding-left: 12px;
    padding-right: 12px;
}

.show-text p {
    display: inline;
}

.hide-text p:not(p:first-of-type) {
    display: none;
}

.PNote {  
    top: -120%;
    opacity: 0;
    position: fixed;
    width: auto;
    height: auto;
    min-width: 280px;
    left: 0;
    z-index: 9999;
    padding: 0 10px;
    transition: all 0.5s;
    color: #fff;
}
.PNote h3{
    display: none;
}
.showPNote {
    opacity: 0.85;
    top: 0;
}
.PNote .close {
    color: #fff;
    float: right;
    padding: 4px;
}


.pursebg {
    background-color: #f1e2ff;
}
.pursecolor {
    color: #5e298d;
}
.pursecolorLight {
    color: #d036a0;
}
.pursecolorFont {
    font-size: 25px;
}
.bookingsBg {
    background-color: #ffddf4;
}
.bookingsFont {
    font-size: 25px;
}
.call_logBg {
    background-color: #e3f5e8;
}
.call_logBg i {
    color: #3ea358;
}

.call_logFont {
    font-size: 25px;
}
.call_logFont span {
    font-size: 14px;
}
.calls_listBg {
    background-color: #e6e5fa;
}
.calls_listBg i {
    color: #5652a2;
}
.calls_listFont {
    font-size: 25px;
}
.leads_countBg {
    background-color: #f9edd3;
}
.leads_countBg i {
    color: #ffb400;
}
.leads_countFont {
    font-size: 25px;
}
.dashoardFont {
    font-size: 16px;
}
.sales_funnelDashboard {
    overflow-x: auto !important;
}
.sales_funnelDashboard .chart-container {
    position: relative;
    height: 500px;
    min-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whiteLabel{
    background-color: #fff !important   ;
}
.redBg {
    background-color: var(--red2);
}
.redColor {
    color: var(--red2);
}
.greenBg {
    background-color: var(--green);
}
.blueBg {
    background-color: #7dd8ee;
}
.orangeBg {
    background-color: #ffb400;
}
.darkRedBg {
    background-color: var(--color1);
    color: white;
}
.redBorder{
    border-color: #a82b05;
}
.grey_btn {
    background-color: #ddd;
    color: black;
    font-size: 14px;
    padding: 4px 16px;
}

.byCountry {
    max-height: 400px;
}
.doSearch {
    cursor: pointer;
    position: absolute;
    right: 6px;  
    bottom: 50%;
    transform: translate( 0, 50%);
}
.relative {
    position: relative;
}
.leadFont {
    color: #7d7d7d;
}
.inline-btn {
    background: var(--gentela_light);
    padding: 0 10px;
    margin: 0 0 4px 0;
    border-radius: 8px;
    display: inline-block;
    color: #000;
}

.notifications_div {
    position: absolute;
}
.notifications_div .noteItm {
    font-size: 14px;
    box-shadow: 1px 1px 4px #0009;
    margin: 0 4px 0 0;
}
.notifications-dropdown {
    z-index: 2 !important;
}
.tile_div .tile_div_content {
    text-align: center;
    background: #fff9;
    margin: 10px 0;
    min-height: 120px;
    border-radius: 4px;
    transition: all 0.5s;
    box-shadow: 4px 4px 4px #ccc;
    padding-top: 10px;
    display: block;
}
.tile_div .count {
    font-size: 40px;
    font-weight: bold;
    position: relative;
}
.count_top i {
    position: absolute;
    font-size: 55px;
    left: 0;
    top: 0;
    padding: 25px 0;
    opacity: 0.3;
    color: #fff;
    pointer-events: none;
    border-radius: 4px;
    margin: 18px;
    width: 109px;
    height: 105px;
    z-index: 0;
}
.dashboard_graph {
    margin: 15px;
    background: #fff9;
}
.x_title h2 {
    margin: 0;
    text-align: center;
    display: block;
    width: 100%;
}
.x_title h2 i::before {
    font-size: 30px;
    background: rgba(19, 132, 150, 0.49);
    padding: 26px 20px;
    border-radius: 50%;
    display: inline-block;
    height: 80px;
    width: 80px;
}
.x_title h2 i {
    display: block;
}
.expand-icon {
    text-align: right;
    white-space: nowrap;
}
.expand-icon i {
    font-size: 24px;
}
.h300 {
    max-height: 300px;
    overflow: auto;
}
.side_div1 {
    padding: 1px;
}
.side_div2 {
    padding: 1px;
}
.side_div2 .icn {
    text-align: right;
    float: right;
}

.notification-icon {
    position: relative;
    display: inline-block;
}

.notification-alert::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--color1);
    border-radius: 50%;
}

.nav-link[data-toggle].collapsed:after {
    content: "▾";
}
.nav-link[data-toggle]:not(.collapsed):after {
    content: "▴";
}

.icons_div {
    max-height: 120px;
    overflow-y: auto;
    background: #ccc;
}
.icons_div a {
    font-size: 16px;
    text-align: center;
    padding: 6px;
    width: 42px;
    margin: 1px;
    float: left;
}

.icons_div a i {
    color: #000;
}
.custom-style {
    border: 1px solid #8c8c8c;
    width: auto;
    border-radius: 8px;
    overflow: hidden;
    transition: height 0.5s ease-in-out; /* Yumuşak geçiş efekti için */
}

.panel-heading {
    transition: 0.5s ease-in-out; /* Yumuşak geçiş efekti için */
}

.panel-body {
    padding: 1rem;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.filter-label {
    text-align: left;
}

.filter-input {
    width: 100%;
}

.filter-button {
    margin-top: 1.5rem;
}

/* .preloader {
    display: none;
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11;
    background: #ccca;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} */

.preloader {
    display: none; /* Initially hidden */
    position: fixed; /* Fixed position to cover the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999; /* Ensure it is above all other elements */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* Centering content */
    display: flex; /* Flexbox for centering */
    text-align: center;
}

/* Optional: Add styles for the spinner or loader inside */
.preloader .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1); /* Light border */
    border-left-color: #3498db; /* Color of the spinner */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.tab-buttons {
    text-align: center;
    margin: 20px 0; /* İstediğiniz boşluk miktarını ayarlayabilirsiniz */
}

.tab-buttons button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    margin: 5px 10px;
    width: 240px;
}

.tab-buttons button:hover {
    background-color: #45a049; /* Hover durumunda arka plan rengi */
}

.notifications-boxes-3 {
    top: -18px;
    position: absolute;
    z-index: 1;
    text-align: right;
    width: 100%;
    right: 11px;
}
.notifications-boxes-9 {
    top: -13px;
    position: absolute;
    z-index: 1;
    text-align: right;
    width: 100%;
    padding: 0 25px;
    font-size: 10px;
}

.progress {
    background-color: #004fca;
    height: 4px;
    overflow: hidden;
}

.progress-bar {
    transition: width 0.6s ease;
    background-color: #7ac670;
}

.custom-table {
    font-size: 12px;
    min-width: 900px;
}

.centered-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-cell {
    background-color: #00b6cb;
}

.index-ratecell {
    background-color: #989898;
}
.inlineLabel{
    white-space: nowrap;
}
.inlineLabel label{
    display: inline-block;
    font-size: 14px;
}
.small_btn{
    font-size: 12px;
    padding: 2px 6px
}
.md_btn{
    font-size: 12px;
    padding: 5px 12px
}
.actions_div a{
    color: #000;
}
.actions_div a:hover{
    opacity: 0.8;
}
.inside-shadow{
    background: white;
    box-shadow: inset 0 0 10px #ccc;
    max-height: 600px;
    overflow-y: auto;
}
.dropdown-menu {
    box-shadow: 0 0 4px #ccc;
    padding: 10px;
}
.dropdown-menu .dropdown-item {
    transition: all 0.5s;
    background: none;
}
.dropdown-menu .dropdown-item:hover {
    background: #ccc5;
}
.text-right{
    text-align: right;
}
.number_div{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.number_title{
    color: #999;
    font-size: 14px;
}
.number_number{
    color: var(--color2);
    font-size: 18px;
    font-weight: bold;
}
.scroll_bulk{
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}
.paginator{
    min-width: 200px;
}
.paginator > div{
    display: flex; justify-content: space-between;
}
.paginator > div > span{
    padding: 0 6px;
}
.modal-title {
    text-transform: capitalize;
}
.active > .page-link, .page-link.active{
    z-index: 1;
    color: #ccc;
}
.radioBtnDiv label{
    display: inline-block;
    font-size: 13px;
    margin: 2px;
    background: #e8e8e8;
    padding: 4px 10px;
    border-radius: 4px;
}
.radioBtnDiv label:has(input[type=radio]:checked) {
    background: var(--color1);
    color: white;
}
.radioBtnDiv .admin_menu label{
    background: #ebccb6;
}
.btn-modal{
    font-size: 12px;
    color: var(--color1_dark);
}
.multilines{
    height: auto;
    white-space: inherit;
    display: block;
}
.filterRemover{
    font-size: 12px;
    text-transform: capitalize;
}

.filterRemover .itm{
    margin-top: 2px;
    margin-right: 8px;
    text-transform: capitalize;
}
.filterRemover .itm .remove_btn{
    background: var(--color1);
    padding: 0px 8px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    margin: 1px 0;
    display: inline-block;
}
.daterangepicker {
    box-shadow: 0 0 10px #999;
}
.posAbsolute{
    position: absolute;
    top: 28px;
    font-size: 9px;
    left: 0;
}
.v_align{
    display: flex;
    align-items: center;
}

.listDisabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.2;
}
.note_offer_deal .wb-ele-note {
    background-color: white;
    border: 1px solid #c7c7c7;
    border-radius: 7px;
    padding: 6px 10px;
    overflow-y: auto;
    width: 100%;
    color: #999;
    height: 85px;
    display: block;
    white-space: normal;
    overflow-x: hidden;
}
.h-scroll{
    overflow-y: auto;
}
.bottom_side_menu{
    float: right;
}
.bottom_side_menu a{
    display: inline-block;
    color: black;
}
.prcntg{
    color: green;
    font-size: 10px;
    z-index: 10;
    font-weight: bold;
}
.notification_menu{
    min-width: 350px;
}
.floatText{
    position: absolute;
    font-size: 10px;
    left: 35px;
    bottom: -8px;
}
.timeline_side1{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.align_v_center{
    align-content: center;
}
.timeline_side1 span{
    width: 50px;
    height: 50px;
    font-size: 30px;
    background: black;
    border-radius: 50%;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.hint_btn{
    color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
    border: 1px solid rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
    padding: 1px 4px;
    background: white;
    cursor: pointer;  
    border-radius: 4px;
}
#subModal ul{
    list-style: disclosure-closed;
}
.alarmAnim{
    border-radius: 50px;
    display: inline-block;
    animation: 
      alarm_anim 1s infinite, 
      shake_anim 1.5s infinite;
    padding: 0 10px !important;
}
#modal_cvr{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../img/preloader.svg) no-repeat center center;
    z-index: 999;
    display: none;
}
.user_question{
    background: var(--blue2);
    padding: 10px;
    margin-left: 10%;
    border-radius: 8px;
    color: white;
    text-align: right;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.selector_item {
    position: relative;
}
.selector_item img{
    width: 100%;
    height: 200px;
}
.selector_item input{
    position: absolute;
    top: 5px;
    background: white;
}
.float-right{
    float: right;
}
.h-300{
    min-height: 300px;
}
.filter_content{
    overflow: hidden;
    overflow-y: auto;
    max-width: 100%;
}
.thmb2{
    min-width: 33%;
    font-size: 11px;
}
.thmb2 img{
    height: 140px;
}
.float-icon{
    padding: 6px 10px;
    background: white;
    position: absolute;
}
.thmb{
    width: 20px;
    height: 18px;
    min-width: 20px;
}
.online-user{
    color: #28a745; /* Green */
    font-weight: bold;
}















































/* STANDARD THEME STYLE */
a{
    color: var(--color1_dark);
}
.btn-danger, 
.btn-info, 
.btn-success, 
.darkRedBg{
    background: var(--color1);
    border: none;
    color: white;
}
.btn-danger:hover, 
.btn-info:hover, 
.btn-success:hover, 
.darkRedBg:hover,
.btn-danger:active, 
.btn-info:active, 
.btn-success:active, 
.darkRedBg:active,
.btn-danger:focus, 
.btn-info:focus, 
.btn-success:focus, 
.darkRedBg:focus
{
    background: var(--color1_dark);
    color: white;
}
.grid_cell{
    overflow: hidden;
    background: var(--color1_light2);
    /* padding: 10px 10px 2px; */
    padding: 4px 10px;
    margin: 1px;
    border-radius: 6px;
    display: inline-block;
    position: relative;
    min-width: 80px;
}
.grid_cell:empty{
    display: none;
}
.grid_cell .h{
    font-size: 9px;
    position: absolute;
    top: 0px;
    color: #0006;
    display: none;
}
.norp{
    white-space: nowrap;
    display: block;
    text-overflow: ellipsis;
}
.select-filter{
    border: 2px solid #ccc;
    padding: 6px;
    margin: 1px;
    border-radius: 6px;
    font-size: 12px;
    background: #eee;
}
.no-bg{
    background: none;
    border: none;
    max-width: 140px;
}
.bold-h{
    font-weight: bold;
    font-size: 10px;
    display: block;
    color: #0006;
}
.myrow{
    align-content: center;
}
.posTopR8{
    position: absolute;
    right: 0;
    top: 0;
}


@keyframes alarm_anim {
    0% {background-color: var(--color1);}
    50% {background-color: white;}
    100% {background-color: var(--color1);;}
}

@keyframes shake_anim {
    0%, 100% { transform: rotate(-5deg); }
    10%, 30% { transform: rotate(10deg); }
    20%, 40% { transform: rotate(-5deg); }
    41% { transform: rotate(-0deg); }
    100% { transform: rotate(-0deg); }
}







/*
  <576px 	Small
  ≥576px 	Medium
  ≥768px 	Large
  ≥992px 	Extra large
  ≥1200px
  */

/*  Larger Screen Styling */
@media (max-width: 768px) {
    
    .no-bg{
        width: 90px;
    }
    .dash-content .client-row .info{
        display: flex;
    }
    .dash-content .title {
        align-content: center;
    }
    .dashboard-padding{
        padding-left: 12px;
        padding-right: 12px;
    }
    .note_div_a div {
        display: inline-block;
    }
    .note .box-heading{
        display: block ;
    }
    .dashboard .search-leads-form {
        display: flex;
        align-items: center;
        border-radius: 11px;
        gap: 10px;
        width: 127px;
        border: 1px solid rgba(0, 0, 0, 0.4);
    }

    .dashboard .search-leads-form input {
        font-size: 13px;
    }

    .dashboard .search-leads-form i {
        font-size: 19px;
    }

    .dashboard .lead-preview .green-btns .green-btn {
        width: 134px;
    }

    .dashboard .lead-preview .heading .btn {
        font-size: 12px;
        padding: 0 4px;
        width: 100%;
    }

    .white-box .box-heading {
        font-size: 14px;
    }

    .dashboard .lead-preview .heading .title {
        font-size: 16px;
    }

    .dashboard .lead-preview .heading {
        padding: 10px 0;
    }

    .white-box .box-heading h5 {
        font-size: 13px;
        max-width: 150px;
    }

    .lead-preview .select-box .options-container {
        width: 100%;
    }

    .dashboard .lead-preview .down-btns .btn {
        font-size: 12px;
    }
}
@media (min-width: 564px) {
    .daterangepicker {
        width: auto;
    }

    .daterangepicker .ranges ul {
        width: 140px;
    }

    .daterangepicker.single .ranges ul {
        width: 100%;
    }

    .daterangepicker.single .drp-calendar.left {
        clear: none;
    }

    .daterangepicker.single .ranges,
    .daterangepicker.single .drp-calendar {
        float: left;
    }

    .daterangepicker {
        direction: ltr;
        text-align: left;
    }

    .daterangepicker .drp-calendar.left {
        clear: left;
        margin-right: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .daterangepicker .drp-calendar.right {
        margin-left: 0;
    }

    .daterangepicker .drp-calendar.right .calendar-table {
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        padding-right: 8px;
    }

    .daterangepicker .ranges,
    .daterangepicker .drp-calendar {
        float: left;
    }
}

@media (min-width: 730px) {
    .daterangepicker .ranges {
        width: auto;
    }

    .daterangepicker .ranges {
        float: left;
    }

    .daterangepicker.rtl .ranges {
        float: right;
    }

    .daterangepicker .drp-calendar.left {
        clear: none !important;
    }
}
@media (max-width: 992px) {
    
    .dashboard .dash-nav {
        width: 100%;
    }

    .checkbox input:not(.all-clients) {
        top: 28px;
        left: 30px;
    }
    .text {
        border: none;
        padding: 0;
    }
    .radioBtnDiv{
        display: block;
    }
    .hideMob {
        display: none !important;
    }

    .hideWeb {
        display: block !important;
    }

    .dashboard .dash-content .client-row .status {
        display: flex;
        justify-content: unset;
        padding-left: 12px;
    }

    .dashboard .dash-content .client-row .myrow {
        display: flex;
        padding: 0 20px;
    }

    .title {
        padding: 0;
        align-items: center;
        font-size: 14px;
    }

    .in-progress {
        width: fit-content !important;
        left: unset !important;
    }

    .dashboard .lead-preview {
        width: 95%;
    }

    .dash-content .client-row .budget {
        padding-left: 12px;
    }

    .dash-content .client-row .notes {
        padding-left: 12px;
    }

    .wb-ele-select-modal {
        width: 100%;
    }

    .sidebar {
        width: 300px;
        height: 100%;
        position: fixed;
        top: 0;
        right: -400px;
        background-color: #fff;
        overflow-x: hidden;
        z-index: 2;
        transition: all 0.7s;
    }

    .sidebar-bg {
        width: 0;
        height: 100%;
        position: fixed;
        top: 0;
        right: -400px;
        background-color: rgba(43, 42, 42, 0.466);
        overflow-x: hidden;
        z-index: 1;
        transition: all 0.8s;
    }

    .sidebar.active {
        width: 80%;
        right: 0;
        transition: all 0.6s;
        z-index: 50;
    }

    .sidebar-bg.active {
        width: 100%;
        right: 0;
        transition: all 0.4s;
        z-index: 1;
    }

    .wb-ele-select {
        background-color: white;
        border: 1px solid #282828;
        display: flex;
        font-weight: 400;
        align-items: center;
        gap: 10px;
        border-radius: 9px;
        padding: 10px 6px;
        font-size: 15px;
        width: 121px;
    }

    .wb-ele-select-modal {
        background-color: white;
        border: 1px solid #282828;
        display: flex;
        font-weight: 400;
        align-items: center;
        gap: 10px;
        border-radius: 9px;
        padding: 10px 6px;
        font-size: 15px;
        width: 100%;
    }

    .wb-ele-tag {
        width: 120px;
        padding-left: 2px;
        font-size: 14px;
        border: 1px solid black;
        border-radius: 11px;
    }

    .wb-ele-select-cur {
        background-color: white;
        border: 1px solid #282828;
        display: flex;
        font-weight: bold;
        align-items: center;
        gap: 10px;
        border-radius: 9px;
        padding: 11px 6px;
        font-size: 15px;
        width: 100%;
    }
}


[class^="fas-"]:before,
[class*=" fas-"]:before {
    margin: 0;
}

/* Açıklamaları gizle */
#social-style-select + .tooltip {
    display: none;
}
