/********** Template CSS **********/
:root {
    --primary: #009cff;
    --light: #f3f6f9;
    --dark: #191c24;
    --fs12: 12px !important;
    --fs13: 12px !important;
    --fs10: 10px !important;
    --fs14: 14px !important;
    --fs16: 16px !important;
}
body {
    /* overflow-x: hidden; */
    /* overflow-y: hidden; */
}

.inp-fs-12 {
    font-size: var(--fs12);
}

.inp-fs-13 {
    font-size: var(--fs13);
}

.inp-fs-10 {
    font-size: var(--fs10);
}

.inp-fs-14 {
    font-size: var(--fs14);
}

.inp-fs-16 {
    font-size: var(--fs16);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: 0.5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** Layout ***/

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: #ffffff;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}

/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 8px;
    color: white;
    font-weight: 500;
    /* border-left: 3px solid var(--light); */
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: #237687;
    background: #ffffff;
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #237687;
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--light);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    /* right: 15px; */
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: 0.5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: white;
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: white;
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 40px;
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: 0.5s;
}

.content .navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}

/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}
.offer_price_img {
    height: 200px;
    width: 100%;
}
.f_right {
    float: right;
}
.btn-info {
    background-color: #237687 !important;
    border: #237687 !important;
    color: white !important;
}
.text-info {
    color: #237687 !important;
}
.card_shadow {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.btn-primary {
    background-color: #237687 !important;
    color: white !important;
}
.add_btn {
    border: 2px #237687 solid !important;
    color: #237687 !important;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: white !important;
}
.add_btn:hover {
    background-color: #237687 !important;
    color: white !important;
}
.height {
    height: 100vh;
}
.search {
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}
.search input {
    height: 50px;
    text-indent: 25px;
    border: 2px solid #d6d4d4;
}
.search input:focus {
    box-shadow: none;
    border: 2px solid #237687;
}
.text_color {
    color: #237687;
}
.search .fa-search {
    position: absolute;
    top: 17px;
    left: 16px;
}
.search button {
    position: absolute;
    top: 6px;
    right: 5px;
    /* height: 50px; */
    width: 110px;
    /* background: #237687; */
}

@media (max-width: 576px) {
    .btn_responsive {
        font-size: 10px;
        padding: 2px;
    }
}
.profile_img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
}
.company_name {
    font-family: serif;
    font-weight: 600;
    color: dimgrey;
    font-size: 20px;
}
.f_left {
    float: left;
}
@media (min-width: 576px) {
    .expense_seachbar {
        width: 400px;
    }
}
.f_right_reso {
    float: right;
}
@media (max-width: 576px) {
    .f_right_reso {
        float: left;
    }
}
.profile_img1 {
    height: 92px;
    border-radius: 50%;
}

.f_right_reso1 {
    float: right;
}
@media (min-width: 576px) {
    .f_right_reso1 {
        float: left;
    }
}
.image-upload > input {
    display: none;
}

.image-upload img {
    width: 80px;
    cursor: pointer;
}
.dashbord_distance {
    min-height: 582px;
}
.odrder_active_shadow {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.user_card_shadow {
    box-shadow:
        rgb(204, 219, 232) 3px 3px 6px 0px inset,
        rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}
.oder_histyr_card {
    height: 300px;
    overflow-y: scroll;
}
.dashbord_card {
    border-bottom: 5px solid #237687;
}
.profile_middle {
    display: flex;
    margin: auto;
}
@media (min-width: 992px) {
    .profile_card {
        width: 500px;
    }
}

.nodata-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Adjust as needed */
    height: 100vh;

    margin-top: auto;
}

.nodata-content {
    text-align: center;
    height: 50vh;
    background-color: rgb(35 118 135);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nodata-container .nodata-content h3 {
    color: white;
}

table th,
table td {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}
.line-claim-1 {
    overflow: hidden;
    word-wrap: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* -webkit-line-clamp: 1 !important; */
}

table td.fixed-width {
    max-width: 110px !important; /* Adjust the width as needed */
}

.emailfield {
    display: inline-block;
    max-width: 230px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}
