@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

{
    font-family: 'Inter', sans-serif;
}

/********** Template CSS **********/
:root {
    --primary: #EB1616;
    --secondary: #191C24;
    --light: #6C7293;
    --dark: #000000;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
/*
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #7e7e7e;
    text-align: left;
    background-color: #E5E5E5;
}*/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 0.8;
    }


/*** Button ***/
.btn {
    transition: .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 ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 270px;
    height: 100vh;
    background: var(--secondary);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 270px;
    min-height: 100vh;
    background: #F5F5F5;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
        background: #1D1D1B;
    }

        .sidebar.open {
            margin-left: 0;
            width: 70px;
            overflow-y: inherit;
        }

            .sidebar.open .nav-item.nav-link {
                font-size: 0 !important;
                text-align: center;
                padding-left: 0 !important;
            }

    .content.open .sidebar-toggler.flex-shrink-0 {
        margin: 0 0 0 28px;
    }

    .sidebar.open .navbar-brand.mx-4.mb-3 {
        padding: 10px 5px !important;
    }

        .sidebar.open .navbar-brand.mx-4.mb-3 img {
            width: 94%;
            margin: 0 0 0 3px;
        }

    .sidebar.open .nav-item.nav-link img {
        margin: 0 22px 0 0;
        width: 24px !important;
        height: 24px !important;
    }

    .content {
        width: calc(100% - 250px);
    }

        .content.open {
            width: 100%;
            margin-left: 4.4rem;
        }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

        .sidebar.open {
            margin-left: 0;
        }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar.open .navbar .navbar-nav .nav-link img {
    margin: 0 31px 0 0;
    width: 24px !important;
    height: 24px !important;
}

.navbar-brand.mx-4.mb-3 {
    margin: 0 !important;
    padding: 14px 16px !important;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: #EE7D07;
    border-color: #EE7D07;
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--secondary);
}

.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: .5s;
}


.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
    color: var(--light);
}

    .sidebar .navbar .dropdown-item:hover,
    .sidebar .navbar .dropdown-item.active {
        background: var(--dark);
    }

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 8px 0 16px;
    color: var(--light);
    outline: none;
}

    .content .navbar .navbar-nav .nav-link:hover,
    .content .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

.right-erow {
    display: none;
}

.content.open .menu-im {
    display: none;
}

.content.open .right-erow {
    display: block;
}

.back-btn {
    margin: 0 0 0 0px;
}

.content .navbar .dropdown-item {
    color: #616161;
    font-weight: 300;
    font-size: 14px;
    padding: 9px 13px;
}

.dropdown-menu .dropdown-divider {
    margin: 0;
}

.dropdown-menu .fw-normal.mb-0 {
    color: #616161;
}

.content .navbar .dropdown-item:hover h6, .content .navbar .dropdown-item:hover small {
    color: #fff;
}

.content .navbar .dropdown-item:hover {
    background-color: #EE7D07;
    color: #fff;
}

.content .navbar .dropdown-item:hover, .content .navbar .dropdown-item.active {
    background: #EE7D07;
    color: #fff;
}

    .content .navbar .dropdown-item:hover h6, .content .navbar .dropdown-item:hover small {
        color: #fff;
    }

@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);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

    .testimonial-carousel .owl-dot.active {
        background: var(--dark);
        border-color: var(--primary);
    }

.nav-link.dropdown-toggle::after {
    display: none;
}

.sup {
    display: inline-block;
    width: 100%;
    margin: 0;
    color: #EE7D07;
    font-size: 16px;
    font-weight: 400;
}

.d-none.d-lg-inline-flex {
    display: inline-block !important;
    color: #737373;
    font-size: 19px;
    font-weight: 400;
    line-height: 19px;
}

.user {
    position: relative;
    top: 11px;
}

.shap-img {
    margin: 0 0 0 30px;
}

.navbar-nav.w-100 {
    padding-top: 0;
}

nav.navbar.bg-secondary a.logobrand img {
    width: 76%;
}

.logobrand.tag-brd {
    padding: 13px 0 29px;
}

.container-fluid.top-saction {
    background-color: #f5f5f5;
    border-bottom: 1px solid #E1E1E1;
    padding: 0 30px 18px;
    margin: 34px 0 0 0;
}
/*
.top-saction .col-md-6 {
    margin: 0;
}
*/
.top-saction h2 {
    margin: 0;
    color: #1D1D1B;
    font-size: 27px;
    font-weight: 700;
    width: 100%;
    line-height: inherit !important;
}

.top-saction p {
    margin: 0 0 0 0;
    color: #475569;
    font-size: 14px;
    font-weight: 400;
}


#date-picker-section {
    float: right;
    width: 290px;
    text-align: right;
}

#date-picker-title {
    font-family: "Coda", serif;
    margin-bottom: 25px;
}

.date-picker-date {
    position: relative;
    display: inline-block;
    background: white;
    padding: 12px 18px;
    cursor: pointer;
    border: 1px solid #DEDEDE;
    transition: none;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    color: #737373;
    font-size: 16px;
    font-weight: 400;
}

    .date-picker-date.active {
        font-weight: bold;
    }

    .date-picker-date::after {
        position: absolute;
        display: block;
        height: 24px;
        width: 24px;
        top: 12px;
        left: 18px;
        content: "";
        background: url(../ReportTranslator/images/calendar-check.png);
        background-repeat: no-repeat;
        background-size: 24px;
    }

#date-picker-display-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.date-picker-display-pair {
    margin: 10px;
}

.date-picker-display {
    font-family: "Coda", serif;
    font-size: 40px;
}

.date-picker-display-label {
    text-align: center;
    font-size: 0.8rem;
    position: relative;
    top: -8px;
    text-transform: uppercase;
}
/*.sert #date-picker-modal {
    top: 9% !important;
}*/
.daly-rpt #date-picker-modal {
    top: 15.8% !important;
}

#date-picker-modal {
    width: 290px;
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
    position: absolute;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: transform 0.1s;
    background: white;
    left: inherit !important;
    top: 0 !important;
    border-radius: 8px;
    right: 24px;
    z-index: 999;
    margin: 9.5rem 0 0 0;
}

#date-picker-top-bar {
    position: relative;
    color: #666;
    background: white;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
    padding: 9px 0 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.date-picker-change-month {
    font-size: 23px;
    line-height: 23px;
    padding: 0 10px;
    padding-bottom: 4px;
    cursor: pointer;
    position: absolute;
    top: 9px;
}

    .date-picker-change-month:hover {
        background: #F5F5F5;
    }

#date-picker-previous-month {
    left: 5px;
}

#date-picker-next-month {
    right: 5px;
}

#date-picker-month {
    margin: 0 20px;
}

#date-picker-exit {
    position: absolute;
    top: 15px;
    right: 17px;
    padding: 0 10px;
    font-size: 23px;
    cursor: pointer;
    color: white;
    display: none;
}

    #date-picker-exit:hover {
        background: rgba(255, 255, 255, 0.3);
    }

#date-picker {
    width: 100%;
    table-layout: fixed;
    position: relative;
    background-color: #fff;
}

    #date-picker th, #date-picker td {
        text-align: center;
    }

    #date-picker th {
        cursor: default;
        border-radius: 0;
        background-color: #fff;
        color: #737373;
        font-size: 14px;
        padding: 5px 5px;
        font-weight: 300;
    }

    #date-picker td {
        cursor: pointer;
        color: #737373;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 300;
        padding: 10px 8px;
    }

        #date-picker td:hover {
            background: #EE7D07;
            color: #fff;
        }

        #date-picker td.active {
            background: #EE7D07;
            color: white;
        }

        #date-picker td.previous-month, #date-picker td.next-month {
            color: #bbb;
        }

#date-picker-weekdays {
    color: white;
}

.hidden-2 {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
    transform-origin: left center;
}

.select-dropdown {
    position: relative;
    display: inline-block;
    width: 330px;
    margin: 0 16px 0 0;
}

.select-dropdown__button {
    padding: 12px 37px;
    background-color: #fff;
    color: #616161;
    border: 1px solid #cecece;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    text-transform: capitalize;
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

    .select-dropdown__button::focus {
        outline: none;
    }

    .select-dropdown__button .zmdi-chevron-down {
        position: absolute;
        right: 10px;
        top: 12px;
    }

.select-dropdown__list {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
    opacity: 0;
    pointer-events: none;
    transform-origin: top left;
    transform: scale(1, 0);
    transition: all ease-in-out 0.3s;
    z-index: 999;
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
    height: 494px !important;
    border-radius: 8px;
    background-color: #fff;
    text-align: left;
    top: 58px;
    padding: 4px;
}

.select-dropdown__list {
    scrollbar-color: #EE7D07 #dcdcdc;
}

    .select-dropdown__list.active {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1, 1);
    }

.select-dropdown__list-item {
    display: block;
    list-style-type: none;
    padding: 10px 7px;
    background: #fff;
    border-top: 1px solid #e6e6e6;
    font-size: 13px;
    cursor: pointer;
    color: #737373;
    /*transition: all ease-in-out 0.3s;*/
    font-weight: 400;
    position: relative;
    z-index: 99;
    text-transform: capitalize;
}

    .select-dropdown__list-item:hover {
        color: #fff;
    }

        .select-dropdown__list-item:hover::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-color: #EE7D07;
            z-index: -1;
            top: 0;
            border-radius: 3px;
            margin: 0 auto;
        }

.select-branch {
    text-align: right;
    width: 100%;
    display: inline-block;
}

.select-dropdown__button img {
    position: absolute;
    right: 10px;
    top: 21px;
}

.select-dropdown__button::before {
    content: '';
    position: absolute;
    left: 10px;
    background: url(../ReportTranslator/images/ri_building-2-line.png);
    width: 21px;
    height: 20px;
    background-size: cover;
    top: 14px;
}

.pickr-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

    .pickr-btn .cancel {
        width: 89px;
        height: 30px;
        border: 1px solid #E0E0E0;
        border-radius: 8px;
        background-color: #fff;
        color: #1D1D1B;
        font-size: 14px;
        font-weight: 500;
        margin: 0 5px;
    }

    .pickr-btn .apply {
        width: 89px;
        height: 30px;
        border: 1px solid #EE7D07;
        border-radius: 8px;
        background: #EE7D07;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        margin: 0 5px;
    }

.box-nbr-cont {
    display: flex;
    width: 100%;
    background: url(../ReportTranslator/images/cont-image.png);
    background-size: cover;
    background-position: 100%;
    border-radius: 21px;
    overflow: hidden;
    padding: 18.82px 24.7px 14px;
    margin-bottom: 17.2px;
}

.box-cont-inr {
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 21px;
    padding: 12px;
    width: 33%;
    margin: 0 26.52px 0 0;
}

.icon-cont {
    float: left;
    width: auto;
}

.content-cont {
    float: left;
    width: 77%;
    padding: 0 0 0 12px;
    line-height: 19px;
}

    .content-cont span {
        display: inline-block;
        width: 100%;
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
    }

    .content-cont i {
        display: inline-block;
        width: 100%;
        font-style: normal;
        color: #585858;
        font-size: 14px;
        font-weight: 400;
    }

.cash-collection {
    background-color: #fff !important;
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
    border-radius: 21px !important;
}

.dropdown-menu.dropdown-menu-end.bg-secondary.border-0.rounded-0.rounded-bottom.m-0.show {
    min-width: 221px;
    margin: 0 0 0 23px !important;
}

.min-coll {
    min-height: 489px;
}

.mb-0.hading {
    color: #1D1D1B;
    font-size: 1.3rem;
    font-weight: 700;
}

.hading img {
    margin: 0 10px 0 0;
}

.cash-man {
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 12px;
}

.btn-revenue {
    display: flex;
    width: 100%;
    text-align: center;
}

    .btn-revenue .week-day {
        background-color: #EE7D07;
        border-radius: 7px;
        border: none;
        color: #fff;
        width: 230px;
        height: 46px;
        font-size: 13px;
        font-weight: 600;
        margin: 0 5px;
    }

    .btn-revenue .hours-most {
        background: #FFFFFF;
        border: 1px solid #DEDEDE;
        border-radius: 7px;
        color: #1D1D1B;
        width: 230px;
        height: 46px;
        font-size: 13px;
        font-weight: 600;
        margin: 0 5px;
    }





.grabh {
    display: inline-block;
    margin: 18px 0 0 0;
    width: 100%;
    text-align: center;
    background-color: #fff;
    height: 488px;
}

    .grabh .chart {
        display: inline-block;
        width: 100%;
        height: 100%;
    }

#data-table.js {
    display: none;
}

#data-table {
    border: none;
    border-top: 1px solid #ccc;
    width: 60%;
}

#figure ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.y-axis {
    display: none;
}

.chart #figure:nth-child(2) {
    display: none;
}

.graph {
    height: 492px;
    position: relative;
}
/*
.chartn {
    margin: 7px 0 0 0;
}
*/
#figure ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.x-axis {
    bottom: 24.5px;
    color: #555;
    position: absolute;
    text-align: center;
    width: 100%;
    margin: 0 auto !important;
    left: 0;
    right: 0;
}

    .x-axis li {
        margin: 0 0;
        width: 14.2%;
        color: #737373;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        text-align: center;
        display: inline-block;
        font-weight: 400;
    }

.bars {
    height: 364px;
    position: absolute;
    width: 100%;
    text-align: center;
    margin: 50px auto 0;
    display: inline-block;
    left: 0;
    right: 0;
}

.bar-group {
    height: 100%;
    margin: 0px 0px 4px 0px;
    position: relative;
    width: 12.5%;
    display: inline-block;
    text-align: center;
}

.bar.fig0 span {
    position: absolute;
    left: -4px;
    top: -50px;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
}

.fig0 {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    border-radius: 31px;
    width: 12px !important;
}

.bar {
    border-radius: 300px;
    bottom: 0;
    cursor: pointer;
    height: 0;
    position: absolute;
    text-align: center;
    width: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.graph-tow-img {
    width: 100%;
}

.container-fluid.pt-4.px-4.footer {
    padding: 13.5px 0 !important;
    border-top: 1px solid #dcdcdc;
    margin: 32.25px 0 0;
}

.footer .bg-secondary.rounded-top.p-4 {
    background-color: transparent !important;
    padding: 0 24px !important;
}

.footer a {
    color: #4A4A4F;
    font-size: 13px;
    font-weight: 400;
    margin: 0 20px 0 0;
}

.footer p {
    margin: 0;
    color: #4A4A4F;
    font-size: 13px;
    font-weight: 400;
}


section {
    margin-top: 30px;
}

.pieID {
    display: inline-block;
    vertical-align: top;
}

.pie {
    height: 232px;
    width: 232px;
    position: relative;
    margin: 0;
    float: right;
}

.slice {
    position: absolute;
    width: 200px;
    height: 200px;
    clip: rect(0px, 200px, 200px, 100px);
    animation: bake-pie 1s;
}

    .slice span {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background-color: black;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        clip: rect(0px, 200px, 200px, 100px);
    }

.legend {
    list-style-type: none;
    padding: 0;
    margin: 0;
    background: #FFF;
    padding: 15px;
    font-size: 13px;
    box-shadow: 1px 1px 0 #DDD, 2px 2px 0 #BBB;
}

    .legend li {
        width: 110px;
        height: 1.25em;
        margin-bottom: 0.7em;
        padding-left: 0.5em;
        border-left: 1.25em solid black;
    }

    .legend em {
        font-style: normal;
    }

    .legend span {
        float: right;
    }

.top-payment {
    width: 100%;
}

.top-payment-one {
    margin: 0;
    display: flex;
    padding-top: 21px;
}

    .top-payment-one h3 {
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
        display: inline-block;
        width: 100%;
        margin: 22px 0 0 0;
    }

.pay-box-three-all {
    display: flex;
    width: 100%;
    text-align: right;
}

.pay-box-three {
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 21px;
    width: 33%;
    margin: 0 0 0 20px;
    text-align: left;
    padding: 14px;
}

.pay-icon {
    float: left;
    width: auto;
}

.pay-content {
    float: left;
    width: 85%;
    padding: 0 0 0 14px;
    line-height: 13px;
}

    .pay-content span {
        display: inline-block;
        width: 100%;
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
        line-height: 26px;
    }

    .pay-content em {
        display: inline-block;
        width: 100%;
        font-style: normal;
        color: #585858;
        font-size: 14px;
        font-weight: 400;
    }

.orng-icon {
    display: none;
}

.nav-item.nav-link.active .grey-icon {
    display: none;
}

.nav-item.nav-link.active .orng-icon {
    display: inline;
}

.nav-item.nav-link:hover .icon-gry {
    display: none;
}

.nav-item.nav-link:hover .orng-icon {
    display: inline;
}

.row-table-all {
    display: inline-block;
    margin: 20.3px 0 86px 0;
    width: 100%;
}

.table-payment {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 21px;
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
}

.table-payment-top {
    display: flex;
    width: 100%;
}

.reuslt-bx {
    width: 50%;
    padding: 4px 0 0 0;
}

    .reuslt-bx span {
        float: left;
        width: auto;
        color: #585858;
        font-size: 13px;
        font-weight: 400;
        margin: 7px 0 0 0;
    }

    .reuslt-bx input {
        text-align: center;
        width: 79px;
        height: 34px;
        border: 1px solid #C5C5C5;
        border-radius: 4px;
        color: #1D1D1B;
        font-size: 14px;
        font-weight: 400;
        margin: 0 0 0 10px;
    }

.search-bx {
    width: 400px;
    margin: 0 0 0 95px;
}

    .search-bx .search {
        position: relative;
    }

        .search-bx .search .searchTerm {
            width: 100%;
            font-size: 14px;
            font-weight: 400;
            border: none;
            background-color: #F3F3F3;
            border-radius: 8px;
            padding: 0 14px;
            height: 41px;
            text-align: left;
        }

        .search-bx .search .searchButton {
            position: absolute;
            right: 12px;
            background-color: transparent;
            border: none;
            width: auto;
            height: auto;
            padding: 0;
            top: 10px;
        }

    .search-bx .fa.fa-search {
        color: #1C1C1A;
    }

.vtn-payy-bx {
    float: right;
    width: 50%;
    text-align: right;
}

    .vtn-payy-bx .search-bx {
        margin: 0 12px 0 0;
        display: inline-block;
    }

a.new-paybtn {
    height: 44px;
    width: 179px;
    background-color: #EE7D07;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    line-height: 44px;
}

.new-paybtn img {
    margin: -1px 10px 0 0;
}

.vtn-payy-bx .select-dropdown {
    width: 189px !important;
    height: 44px;
    margin: 0 12px 0 0px;
}

.vtn-payy-bx select {
    width: 100%;
    height: 44px;
    border: 1px solid #C5C5C5;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    background-color: #fff;
}

.pay-table-bx {
    display: inline-block;
    width: 100%;
    margin: 17px 0 0 0;
}

    .pay-table-bx table {
        width: 100%;
    }

        .pay-table-bx table th {
            background-color: #000;
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            padding: 15px 10px;
        }

        .pay-table-bx table tr:first-child th:nth-child(1) {
            border-top-left-radius: 8px;
        }

        .pay-table-bx table tr:first-child th:last-child {
            border-top-right-radius: 8px;
        }

.tr-hading th input {
    border: none;
    width: 16px;
    height: 16px;
    box-shadow:;
    margin: 0px 6px 0 0;
    position: relative;
    top: 3px;
}

.table-dtaa td {
    padding: 13px 10px;
    border: 1px solid #dcdcdc;
    font-size: 13px;
    font-weight: 400;
    color: #737373;
}

    .table-dtaa td input {
        background-color: #fff;
        margin: 0 12px 0 0;
        width: 16px;
        height: 16px;
    }

    .table-dtaa td img {
        float: left;
        margin: 0 0 0 25px;
    }

.table-dtaa:hover {
    background-color: #EE7D07;
    color: #fff ;
}

    .table-dtaa:hover td {
        color: #fff;
       
    }
    .table-dtaa:hover td .fa{
        color: #fff !important;
    }

.table-paginaction {
    display: inline-block;
    width: 100%;
    margin: 16px 0 0 0;
}

.left-paginaction {
    float: left;
    width: 50%;
}

.right-paginaction {
    float: right;
    text-align: right;
    width: 50%;
}

.left-paginaction p {
    margin: 0;
    color: #4A4A4F;
    font-size: 13px;
    font-weight: 400;
}

.right-paginaction ul {
    margin: 0;
    padding: 0;
    width: 100%;
}

    .right-paginaction ul li {
        display: inline-block;
        width: auto;
        margin: 0 0 0 10px;
    }

        .right-paginaction ul li a {
            display: inline-block;
            width: 29px;
            height: 28px;
            background-color: #fff;
            border: 1px solid #B8B8B8;
            border-radius: 3px;
            text-align: center;
            line-height: 28px;
            color: #000;
            font-size: 13px;
            font-weight: 500;
        }

        .right-paginaction ul li:first-child a {
            background-color: #F7F7F7;
        }

        .right-paginaction ul li:last-child a {
            background-color: #F7F7F7;
        }

.add-new-payment-box {
    background-color: #fff;
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
    border-radius: 21px;
    margin: 21px 14px;
    padding: 0;
    overflow: hidden;
    width: 98%;
}

    .add-new-payment-box h2 {
        display: inline-block;
        width: 100%;
        margin: 0;
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
        box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
        padding: 20px 20px;
    }

.pay-add-from {
    display: inline-block;
    width: 100%;
    padding: 20px;
}

.pay-left {
    float: left;
    width: 48%;
}

.pay-right {
    float: right;
    width: 48%;
    text-align: left;
}

.pay-add-from label {
    display: inline-block;
    width: 100%;
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 7px 0;
}

.pay-add-from input {
    width: 100%;
    height: 48px;
    border: 1px solid #C5C5C5;
    border-radius: 5px;
    color: #1D1D1B;
    font-size: 16px;
    font-weight: 400;
    padding: 0 10px;
    margin: 0 0 20px 0;
}

.pay-add-from label {
    display: inline-block;
    width: 100%;
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 7px 0;
}

.pay-add-from .form-check label {
    display: table-cell;
    padding-left: 10px;
    padding-top: 10px;
}

.pay-add-from input[type="checkbox"] {
    width: 35px;
    height: 35px;
    border: 1px solid #C5C5C5;
    border-radius: 5px;
    color: #1D1D1B;
    font-size: 16px;
    font-weight: 400;
    padding: 0 10px;
    margin: 0 0 20px 0;
}



.remarks-filed textarea {
    width: 100%;
    height: 95px;
    border-radius: 5px;
    border: 1px solid #C5C5C5;
    padding: 10px;
    color: #1D1D1B;
    font-size: 16px;
    font-weight: 400;
}

.sav-close-btn {
    display: inline-block;
    width: 100%;
    margin: 34.21px 0 0 0;
}

    .sav-close-btn .save-btn {
        width: 151px;
        background-color: #EE7D07;
        border: none;
        height: 46px;
        border-radius: 8px;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
    }

    .sav-close-btn .close-btn {
        width: 151px;
        height: 46px;
        border-radius: 8px;
        border: 1px solid #E0E0E0;
        background-color: #fff;
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 0 10px;
    }

.pay-add-from .select-dropdown {
    width: 100%;
    margin: 0 !important;
}

.pay-add-from select {
    width: 100%;
    height: 48px;
    border: 1px solid #C5C5C5;
    border-radius: 5px;
    background-color: #fff;
    margin: 0 0 20px 0;
    color: #1D1D1B;
    font-size: 16px;
    font-weight: 400;
    padding: 0 10px;
}

.image-upload-box {
    display: inline-block;
    width: 100%;
    margin: 19.96px 0 0 0;
}

    .image-upload-box .form-group {
        border: 1px solid #C5C5C5;
        width: 327px;
        border-radius: 8px;
        cursor: pointer;
        position: relative;
        padding: 9.32px 15px;
        float: left;
    }

    .image-upload-box #Attachment {
        border: none;
        width: 100%;
        padding: 0;
        position: absolute;
        opacity: 0;
        top: 0;
        margin: 0 !important;
        height: 100%;
    }

    .image-upload-box h3 {
        margin: 0;
        width: 99px;
        height: 28px;
        border-radius: 8px;
        background-color: #EE7D07;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        line-height: 28px;
    }

    .image-upload-box .form-group.mt-5 {
        margin: 0 !important;
    }

    .image-upload-box #img-preview {
        float: left;
        width: 75%;
        padding: 0 0 0 10px;
        text-align: left;
    }

.wrapper-thumb {
    float: left;
    position: relative;
    width: 61.65px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 10px 0 0;
    background-color: rgba(0, 0, 0, 0.38);
}

.image-upload-box .wrapper-thumb .img-preview-thumb {
    width: 100%;
    height: 100%;
}

.remove-btn {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    text-align: center;
}

    .remove-btn::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        background: url(../ReportTranslator/images/dalet-btn.png);
        width: 22px;
        height: 22px;
        top: 15px;
        cursor: pointer;
    }

.wrapper-thumb::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.my-nav {
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
}

    .my-nav li {
        display: inline-block;
        width: 100%;
    }

summary {
    outline: none;
    /* Hides marker on Chrome */
    list-style: none;
}

    summary::-webkit-details-marker {
        /* Hides marker on Safari */
        /*display: none;*/
    }

.my-nav ul {
    margin: 0;
    padding: 0;
    position: absolute;
    background-color: #fff;
    top: 38px;
    box-shadow: 0 0 6px 0 #666;
    width: 154px;
    right: 21px;
    float: right;
    border-radius: 5px;
    z-index: 99;
}

    .my-nav ul::after {
        content: '';
        position: absolute;
        top: -24px;
        z-index: -9;
        right: 12px;
        cursor: pointer;
        border: 12px solid transparent;
        border-bottom: 12px solid #e8e8e8;
    }

    .my-nav ul a {
        display: inline-block;
        width: 100%;
        padding: 5px 10px;
        color: #585858;
        font-size: 12px;
        font-weight: 400;
        border-bottom: 1px solid #C5C5C5;
    }

        .my-nav ul a:hover {
            color: #fff;
            background: #ee7d07;
        }

        .my-nav ul a img {
            margin: 6px 10px 0 0;
        }

.detail-page input {
    background-color: #F6F6F6;
}

.detail-page .pay-add-from {
    padding-bottom: 80px;
}

.nav-item.nav-link.active .icon-gry {
    display: none;
}

.cash-count-from-hading {
    display: inline-block;
    width: 100%;
    background-color: #F6F6F6;
    border-radius: 7px;
    padding: 21.39px 18px;
}

    .cash-count-from-hading h3 {
        float: left;
        margin: 0;
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
        width: 50%;
    }

    .cash-count-from-hading span {
        float: right;
        width: 50%;
        text-align: right;
        color: #1D1D1B;
        font-size: 16px;
        font-weight: 500;
    }

        .cash-count-from-hading span i {
            font-style: normal;
            color: #666;
        }

.tabl-innput {
    width: 100% !important;
    height: 33px !important;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    padding: 0 14px;
}

.cash-count-from-tablee th {
    padding: 15px 50px !important;
}

.cash-count-from-tablee td {
    padding: 15px 50px;
}

.cash-count-from-tablee p {
    display: inline-block;
    width: 100%;
    color: #737373;
    font-size: 13px;
    font-weight: 400;
    margin: 15px 0 0 0;
}

.from-table-in {
    display: inline-block;
    width: 100%;
    margin: 16px 0 0 0;
}

    .from-table-in input {
        width: 100%;
        border: 1px solid #C5C5C5;
        height: 48px;
        padding: 0 10px;
        border-radius: 5px;
        font-size: 13px;
    }

    .from-table-in .table-save {
        background-color: #EE7D07;
        width: 151px;
        height: 46px;
        border-radius: 8px;
        border: none;
        color: #fff;
        font-weight: 700;
        font-size: 17px;
        margin: 25px 0 0 0;
    }

.pos-box-innr .select-dropdown {
    width: 189px !important;
    height: 44px;
    margin: 0 12px 0 0px;
}

.pos-box-innr select {
    width: 100%;
    height: 44px;
    border: 1px solid #C5C5C5;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    background-color: #fff;
}

.pos-three-all {
    display: inline-block;
    text-align: right;
    width: 100%;
}

.pos-box-innr span {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0 0 0;
    display: inline-block;
}

    .pos-box-innr span i {
        color: #000;
        font-style: normal;
    }

.pos-box-innr button {
    background-color: #fff;
    border: 1px solid #C5C5C5;
    border-radius: 8px;
    width: 202px;
    height: 44px;
    color: #FF1818;
    font-size: 14px;
    font-weight: 700;
}

    .pos-box-innr button span {
        color: #000;
        margin: 0;
    }

.pos-box-innr {
    display: inline-block;
    width: auto;
    margin: 0 0 0 30px;
}

.pos-type h3 {
    margin: 0;
}

.pos-input {
    width: 179px !important;
    border: 0.7px solid #C5C5C5;
    border-radius: 5px;
    padding: 0 10px;
    height: 33px !important;
}

.image-upload-box label {
    display: inline-block;
    width: 100%;
    color: #737373;
    font-size: 14px;
    font-weight: 400;
}

.pay-table-bx .table-save {
    background-color: #EE7D07;
    width: 151px;
    height: 46px;
    border-radius: 8px;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    margin: 25px 0 0 0;
}

.table-pos-details .pos-input {
    background-color: #F6F6F6;
}

.table-pos-details .image-upload-box input {
    border: none;
    padding: 0;
}

.daily-report-box {
    display: inline-block;
    width: 100%;
}

.daily-box-inner {
    width: 30%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 11px;
    background-color: #fff;
    float: left;
    margin: 9px 15px;
    padding: 20px 21px;
}

    .daily-box-inner span {
        display: inline-block;
        width: 100%;
        color: #585858;
        font-size: 14px;
        font-weight: 400;
    }

    .daily-box-inner h5 {
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
        width: 100%;
        display: inline-block;
        margin: 10px 0 0 0;
    }

.nav-item.nav-link:hover .grey-icon {
    display: none;
}

.navbar.navbar-expand.bg-secondary.navbar-dark.sticky-top.px-4.py-0 {
    padding-left: 0 !important;
    background: #F5F5F5 !important;
    border-bottom: 1px solid #E1E1E1;
}

input:focus-visible {
    outline: none !important;
}

.nav-link.dropdown-toggle.active .icon-gry {
    display: none;
}

.nav-link.dropdown-toggle.active .orng-icon {
    display: inline;
}



.sidebar .nav-link.dropdown-toggle::after {
    width: .5rem;
    height: .5rem;
    right: 1.875rem;
    top: 48%;
    border-color: inherit;
    -webkit-transform: rotate(-225deg) translateY(-50%);
    transform: rotate(-225deg) translateY(-50%);
}

.sidebar .nav-link.dropdown-toggle::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-width: 2px 0 0 2px;
    border-style: solid;
    border-color: initial;
    right: 2em;
    -webkit-transform-origin: top;
    transform-origin: top;
    top: 50%;
    transition: all .3s ease-out;
    display: inline-block;
    color: #737373;
}

.sidebar .nav-link.dropdown-toggle::after {
    top: 19px;
}

.sidebar.open .nav-link.dropdown-toggle.active {
    font-size: 0;
    text-align: center;
}

.sidebar.open .nav-link.dropdown-toggle::after {
    display: none;
}

.sidebar.open.nav-link.dropdown-toggle.active:hover .dropdown-menu {
    display: block;
    background-color: #fff !important;
    position: absolute;
    top: 0;
    left: 0;
}

.sidebar.open .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute !important;
    background-color: #1D1D1B !important;
    top: 80px;
    left: 100px;
    width: 240px;
    padding: 16px 0 0;
    border: 1px solid #282828 !important;
    height: 100vh;
    border-radius: 0;
}

.sidebar.open .nav-item.dropdown .dropdown-menu .nav-item.nav-link {
    font-size: 15px !important;
    text-align: inherit;
    padding: 0;
    border: none;
    padding: 0 10px !important;
}

    .sidebar.open .nav-item.dropdown .dropdown-menu .nav-item.nav-link img {
        margin: 0 10px 0 0;
    }

.side-logo {
    display: none;
}

.sidebar.open .side-logo {
    display: inline-block;
    margin: 0 0 0 10px !important;
    width: auto !important;
}

.dashh {
    display: none;
}

.sidebar.open .nav-item.dropdown:hover .dropdown-menu .dashh {
    display: inline-block;
    color: #fff;
    margin: 0 0 0 0;
    padding: 0 11px 14px;
}

.select-dropdown__list-item:first-child {
    border-top: none;
}

.box-one-chart #figure {
    display: none;
}

#myChart {
    height: 318px !important;
}



ul li {
    line-height: 2;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-size: .85em;
    text-transform: uppercase;
    clear: both;
}

.wrap.top-rentl .bar {
    background: linear-gradient(-120deg, #EE7D07 0%, #fff 100%, #f00 100%);
    width: 0;
    margin: 0 0 30px 0;
    color: #fff;
    position: relative;
    transition: width 2s, background .2s;
    -webkit-transform: translate3d(0, 0, 0);
    clear: both;
    display: inline-block;
    height: 15px;
    text-align: left;
}

.wrap.top-rentl {
    display: inline-block;
    width: 100%;
}

    .wrap.top-rentl .holder {
        display: inline-block;
        width: 100%;
    }

.flsa {
    display: flex;
}

.wrap.top-rentl .bar:nth-of-type(2n) {
    background: #ed7669;
}

.wrap.top-rentl .bar .label {
    font-size: .75em;
    padding: 1em;
    width: 8em;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.wrap.top-rentl .count {
    position: absolute;
    right: -3.25em;
    font-size: 14px;
    font-weight: 700;
    top: -3px;
    color: #737373;
    display: inline-block;
    width: 100%;
    text-align: right;
}

.wrap.top-rentl .bar-bg {
    background-color: #dcdcdc;
    width: 83%;
    height: 15px;
    border-radius: 100px;
    display: inline-block;
    margin: 0 0 30px 0;
}
/*
.flsa .nort {
    width: 23%;
    margin: 0 0 0 6px;
    color: #737373;
    font-size: 14px;
    line-height: 13px;
}

.nort strong {
    background: #fbe8d4;
    color: #ef7f0b;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 30px;
    margin: 0 5px 0 0;
    display: inline-block;
}
*/
.nbr-cont-botom {
    display: inline-block;
    width: 79%;
    border-top: 1px solid #DEDEDE;
    padding: 8px 0 0;
}

    .nbr-cont-botom ul {
        padding: 0;
        margin: 0;
        display: flex;
    }

        .nbr-cont-botom ul li {
            display: inline-block;
            width: 20%;
            color: #737373;
            font-size: 14px;
            font-weight: 400;
        }




bar-graph .year {
    -webkit-animation: fade-in-text 2.2s 0.1s forwards;
    -moz-animation: fade-in-text 2.2s 0.1s forwards;
    animation: fade-in-text 2.2s 0.1s forwards;
}

.bar-graph-vertical {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 56px 0 20px 0;
}

    .bar-graph-vertical .bar-container {
        display: inline-block;
        height: 200px;
        position: relative;
        text-align: center;
        width: 80px;
    }

.bar-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    background-color: #F5F5F5;
    width: 12px;
    height: 100%;
    margin: 0 auto;
    z-index: 1;
    border-radius: 300px;
    bottom: 42px;
}

.bar-graph-vertical .bar {
    border-radius: 100px;
    position: absolute;
    width: 12px;
    z-index: 9;
    bottom: 42px;
}

.bar-graph-vertical .year {
    bottom: -20px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
}

.bar-graph-two .bar::after {
    -webkit-animation: fade-in-text 2.2s 0.1s forwards;
    -moz-animation: fade-in-text 2.2s 0.1s forwards;
    animation: fade-in-text 2.2s 0.1s forwards;
    color: #000;
    content: attr(data-percentage);
    font-weight: 700;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: left;
    top: -35px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    font-size: 14px;
    font-weight: 400;
}

.bar-graph-two .bar-one .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    /* -webkit-animation: show-bar-one-vertical 1.2s 0.1s forwards;
    -moz-animation: show-bar-one-vertical 1.2s 0.1s forwards;
    animation: show-bar-one-vertical 1.2s 0.1s forwards;*/
}

.bar-graph-two .bar-two .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-two-vertical 1.2s 0.2s forwards;
    -moz-animation: show-bar-two-vertical 1.2s 0.2s forwards;
    animation: show-bar-two-vertical 1.2s 0.2s forwards;
}

.bar-graph-two .bar-three .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-three-vertical 1.2s 0.3s forwards;
    -moz-animation: show-bar-three-vertical 1.2s 0.3s forwards;
    animation: show-bar-three-vertical 1.2s 0.3s forwards;
}

.bar-graph-two .bar-four .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    -moz-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    animation: show-bar-four-vertical 1.2s 0.4s forwards;
}

.bar-graph-two .bar-five .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    -moz-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    animation: show-bar-four-vertical 1.2s 0.4s forwards;
}

.bar-graph-two .bar-six .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    -moz-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    animation: show-bar-four-vertical 1.2s 0.4s forwards;
}

.bar-graph-two .bar-saven .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    -moz-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    animation: show-bar-four-vertical 1.2s 0.4s forwards;
}

.bar-graph-two .bar-eight .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    -moz-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    animation: show-bar-four-vertical 1.2s 0.4s forwards;
}

.bar-graph-two .bar-nine .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    -moz-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    animation: show-bar-four-vertical 1.2s 0.4s forwards;
}

.bar-graph-two .bar-ten .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    -moz-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    animation: show-bar-four-vertical 1.2s 0.4s forwards;
}

.bar-graph-two .bar-elavon .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    -moz-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    animation: show-bar-four-vertical 1.2s 0.4s forwards;
}

.bar-graph-two .bar-tawalb .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    -moz-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    animation: show-bar-four-vertical 1.2s 0.4s forwards;
}

.bar-graph-two .bar-tharten .bar {
    background: linear-gradient(180deg, #EE7D07 0%, #FFFFFF 100%);
    -webkit-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    -moz-animation: show-bar-four-vertical 1.2s 0.4s forwards;
    animation: show-bar-four-vertical 1.2s 0.4s forwards;
}

/* Bar Graph Vertical Animations */
@-webkit-keyframes show-bar-one-vertical {
    0% {
        height: 0;
    }

    100% {
        height: 40%;
    }
}

@-webkit-keyframes show-bar-two-vertical {
    0% {
        height: 0;
    }

    100% {
        height: 55%;
    }
}

@-webkit-keyframes show-bar-three-vertical {
    0% {
        height: 0;
    }

    100% {
        height: 68%;
    }
}

@-webkit-keyframes show-bar-four-vertical {
    0% {
        height: 0;
    }

    100% {
        height: 82%;
    }
}

@-webkit-keyframes fade-in-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




.dropup, .dropend, .dropdown, .dropstart {
    position: inherit !important;
}

.dropdown-menu[data-bs-popper] {
    margin-top: 0;
    position: absolute;
    background-color: #f5f5f5 !important;
    z-index: 999;
    border-radius: 0;
    border: 1px solid #cecece !important;
    padding: 0 0;
}

.nav-item.dropdown:nth-child(1) .dropdown-menu {
    width: 300px;
}

.dropdown-item.text-center {
    padding: 10px 0 18px;
}

.content .navbar .dropdown-item small {
    color: #a0a0a0;
}

/*.dropdown-menu[data-bs-popper] {
    margin-top: 0;
    position: absolute;
    background-color: #f5f5f5 !important;
    z-index: 999;
    border-radius: 0;
    border: 1px solid #cecece !important;
    padding: 0 0;
}*/

.dropdown-menu[data-bs-popper] .nav-item.nav-link {
    border: none;
}

.dropdown-menu[data-bs-popper] .nav-item.nav-link {
    font-size: 15px;
}

.highcharts-plot-border {
    stroke: inherit !important;
}



.sidebar.open .logobrand {
    padding: 28px 0 10px 0 !important;
}

.pie-chart {
    background: radial-gradient( circle closest-side, white 0, 0%, transparent 10%, transparent 85%, white 0 ), conic-gradient( #ee7d07 0, #ee7d07 60%, #ffc992 0, #ffc992 70%, #ffba72 0, #ffba72 80%, #ffa649 0, #ffa649 90%, #ff9526 0, #ff9526 90% );
    width: auto;
    min-height: 270px;
    margin: 0 0 0 100px;
    text-align: right;
}


    .pie-chart h4 {
        text-align: center;
        margin: 1rem;
    }

    .pie-chart cite {
        position: absolute;
        bottom: 0;
        font-size: .8rem;
        padding: 1rem;
        color: gray;
    }

    .pie-chart figcaption {
        text-align: left;
        display: inline-block;
        width: 100%;
    }

    .pie-chart span:after {
        display: inline-block;
        content: "";
        width: 0.8em;
        height: 0.8em;
        margin-left: 0.4em;
        height: 0.8em;
        border-radius: 0.2em;
        background: currentColor;
    }

.top-pay-box-pai figcaption i {
    display: inline-block;
    width: 100%;
    font-style: normal;
    color: #737373;
    font-size: 14px;
    font-weight: 400;
}

.top-pay-box-pai figcaption {
    position: absolute;
    left: 0;
    width: 100%;
    top: 15px;
}

.top-pay-box-pai {
    position: relative;
    left: 0;
    width: 100%;
    display: inline-block;
}

    .top-pay-box-pai figcaption img {
        margin: 0 10px 0 0;
    }

.card-one {
    margin-left: 4rem !important;
}

.card-tow {
    margin-left: 1rem !important;
    margin-top: 1.5rem !important;
}

.card-three {
    margin-left: 1rem !important;
    margin-top: 1.8rem !important;
}

.card-four {
    margin-left: 0.2rem !important;
    margin-top: 2rem !important;
}

.card-five {
    margin: 0 auto !important;
    position: absolute;
    bottom: -4px;
    width: 48% !important;
    text-align: center;
    right: 0;
}

    .card-five h6 {
        font-size: 14px;
        font-weight: 400;
        margin: 3px 0 0 0;
    }

    .card-five strong {
        width: 35px;
        height: 17px;
        border-radius: 3px;
        display: inline-block;
        background-color: #fff;
        color: #000;
        font-size: 12px;
        font-weight: 500;
        line-height: 17px;
        margin: 5px 0 0 0;
    }

.left-fix-baar {
    float: left;
    text-align: left;
    width: 70px;
    height: 100vh;
    position: relative;
}

    .left-fix-baar ul {
        padding: 0;
        margin: 0;
        display: inline-block;
        width: 100%;
        text-align: center;
    }

        .left-fix-baar ul li {
            display: inline-block;
            width: 100%;
            margin: 7px 0 0 0;
        }

            /* .left-fix-baar ul li:first-child {
                margin-top: 0;
            }*/

            .left-fix-baar ul li a {
                text-align: center;
                display: inline-block;
                padding: 10px 8px;
                width: 100%;
                color: #fff;
                font-size: 8px;
                font-weight: 600;
                line-height: 15px;
            }

.left-tow-baar {
    background-color: #F5F5F5 !important;
    height: 100vh;
    flex-wrap: inherit !important;
    float: left;
    width: 200px;
    align-items: inherit;
    margin: 0;
    padding: 0;
}
/*
.logobrand.tag-brd {
    padding: 13px 0 29px;
}

nav.navbar.bg-secondary a.logobrand img {
    width: 76%;
}

a.logobrand {
    padding: 25px 0 28px 0;
    text-align: center;
}
*/
.sidebar-toggler.flex-shrink-0 {
    margin: 0 0 0 10px;
    display: none;
}

.left-fix-baar a {
    display: inline-flex;
    padding: 28px 0 0;
}

.left-fix-baar ul li.active a {
    background-color: #EE7D07;
}
/*
.left-tow-baar .navbar-nav.w-100 {
    padding-top: 0px;
}*/

.left-tow-baar ul h3 {
    margin: 0px 0 12px 0;
    padding: 11px 10px 12px;
    font-size: 15px;
    color: #000;
    border-bottom: 1px solid #E1E1E1;
    border-top: 1px solid #E1E1E1;
}

.left-tow-baar ul {
    padding: 0;
    margin: 0;
    border-right: 1px solid #E1E1E1;
    height: 100vh;
}

    .left-tow-baar ul li {
        display: inline-block;
        width: 100%;
        margin: 0;
    }

        .left-tow-baar ul li a {
            padding: 8px 12px !important;
            font-size: 12px;
            font-weight: 400;
            text-transform: capitalize;
            position: relative;
            border-radius: 20px 0 0 20px;
            font-family: 'Inter', sans-serif;
            width: 97%;
            float: right;
            right: -1px;
            line-height: 26px;
        }
            /*
.navbar-dark .navbar-nav .nav-link {
    color: #000;
}*/

            .left-tow-baar ul li a img {
                width: 18px;
                margin: 5px 4px 0 0;
                float: left;
            }


.brudcrum {
    display: inline-block;
    width: 100%;
    margin: 0 0 -5px;
}

    .brudcrum ul {
        margin: 0 0 0 0;
        padding: 0;
        width: 100%;
    }

        .brudcrum ul li {
            display: inline-block;
            margin: 0 2px 0 0;
            width: auto;
        }

            .brudcrum ul li a {
                text-transform: capitalize;
                color: #585858;
                font-weight: 600;
                font-size: 13px;
            }

                .brudcrum ul li a.active {
                    color: #EE7D07;
                }

.butin-botom {
    bottom: 20px;
    margin: 0 auto;
    z-index: 99;
    left: 0;
    position: absolute;
    right: 0;
}

    .butin-botom ul li a {
        padding: 10px 0 !important;
    }

.select-dropdown__list {
    scrollbar-width: thin;
    scrollbar-color: #ff7f00 #dcdcdc;
}


    .select-dropdown__list::-webkit-scrollbar {
        width: 6px;
        height: 8px;
        border-radius: 50px;
    }

    .select-dropdown__list::-webkit-scrollbar-track {
        background-clip: content-box;
        border: 8px solid #E9E9E9;
        border-radius: 30px;
    }

    .select-dropdown__list::-webkit-scrollbar-thumb {
        background-color: #ff7f00;
    }

        .select-dropdown__list::-webkit-scrollbar-thumb:hover {
            background-color: #e67200;
        }

    .select-dropdown__list::-webkit-scrollbar-corner, .select-dropdown__list::-webkit-scrollbar-track {
        background-color: #b0b7c4;
    }

.left-fix-baar ul li a span {
    display: inline-block;
    width: 100%;
    line-height: 12px;
    margin: 9px 0 0 0;
}


.left-fix-baar ul li.active .gryy {
    display: none;
}

.left-fix-baar ul li a:hover {
    background-color: #EE7D07;
}

    .left-fix-baar ul li a:hover img {
        filter: brightness(0) invert(1);
    }

.left-tow-baar ul li a.active {
    content: '';
    right: -1px;
    background-color: #ee7d0724;
    border-radius: 20px 0 0 20px;
    z-index: 1;
}
/*.left-tow-baar ul li a.active img {
	filter: brightness(0) invert(1);
}*/
.left-tow-baar ul li a:hover {
    background-color: #ee7d0724;
}
/*.left-tow-baar ul li a:hover img {
	filter: brightness(0) invert(1);
}*/
.left-tow-baar ul li a.active::after {
    content: '';
    position: absolute;
    right: 0;
    width: 5px;
    height: 100%;
    background-color: #EE7D07;
    top: 0;
}

.left-fix-baar ul li:first-child {
    margin-top: 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: #000;
}

a.logobrand {
    padding: 25px 0 28px 0;
    text-align: center;
}

    a.logobrand.tag-brd span {
        color: #000;
        font-size: 15px;
        position: relative;
        top: 3px;
    }
/* width */

::-webkit-scrollbar {
    width: 10px;
}
/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
/* Handle */

::-webkit-scrollbar-thumb {
    background: #EE7D07;
    border-radius: 10px;
}
    /* Handle on hover */

    ::-webkit-scrollbar-thumb:hover {
        background: #EE7D07;
    }

.stbr-bg {
    background-color: #dcdcdc;
    width: 100%;
    height: 15px;
    position: relative;
    border-radius: 100px;
    display: inline-block;
    margin: 0 0 30px 0;
}

.stk-br-cld {
    background: linear-gradient(-120deg, #EE7D07 0%, #fff 100%, #f00 100%);
    width: 0;
    margin: 0 0 30px 0;
    color: #fff;
    border-radius: 100px;
    position: relative;
    transition: width 2s, background .2s;
    -webkit-transform: translate3d(0, 0, 0);
    clear: both;
    display: inline-block;
    height: 15px;
    text-align: right;
}

span.abkl {
    position: absolute;
    font-weight: 700;
    font-size: 13px;
    color: #737373;
    top: 0;
    width: 20%;
    margin: 0 0 0 13px;
    line-height: 14px;
}

.flsa .count {
    display: none !important;
}

.flsa {
    display: flex;
    height: 61px;
}

    .flsa .nort {
        width: 23%;
        margin: 0 0 0 6px;
        color: #737373;
        font-size: 14px;
        line-height: 13px;
    }

.nort strong {
    background: #fbe8d4;
    color: #ef7f0b;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 30px;
    margin: 0 5px 0 0;
    display: inline-block;
}

.chartn .x-axis li {
    width: 13.2%;
}

.chartn .bar-group {
    width: 8.5%;
}

.chrt-nv li {
    text-transform: inherit;
    margin: 0 5px;
}

    .chrt-nv li a {
        border: 1px solid #DEDEDE !important;
        color: #1D1D1B;
        font-size: 13px;
        font-weight: 600;
    }

    .chrt-nv li .active {
        background: #EE7D07 !important;
        border-color: #EE7D07 !important;
    }

    .chrt-nv li a:hover {
        background: #ee7d07;
        color: #fff;
    }

.chartn {
    margin: 7px 0 0 0;
}

.hours-graps #figure {
    overflow-x: scroll;
    padding: 0 0 5px;
}

.delete {
    border: none;
    padding: 0;
    background-color: transparent;
    color: #EE7D07;
    font-size: 13px;
    font-weight: 400;
}

.register-new-user {
    display: inline-block;
    width: 98.5%;
    background-color: #fff;
    border-radius: 21px;
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
    padding: 0;
    overflow: hidden;
    margin: 20px 14px;
}

    .register-new-user h2 {
        margin: 0;
        padding: 20px;
        border-bottom: 1px solid #F5F5F5;
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
        width: 100%;
        display: inline-block;
    }

.register-new-from {
    display: flex;
    width: 100%;
    padding: 20px;
}

    .register-new-from form {
        display: inline-block;
        margin: 0;
    }

    .register-new-from .fild-user {
        width: 32%;
        float: left;
        margin: 0 20px 20px 0;
    }

    .register-new-from label {
        display: inline-block;
        width: 100%;
        color: #737373;
        font-size: 14px;
        font-weight: 400;
        margin: 0 0 7px 0;
    }

    .register-new-from input {
        width: 100%;
        padding: 0 10px;
        border: 1px solid #C5C5C5;
        border-radius: 5px;
        height: 48px;
        color: #000;
    }


    .register-new-from .select-dropdown,
    .select-dropdown * {
        box-sizing: border-box;
    }

        .register-new-from .select-dropdown select {
            font-size: 1rem;
            font-weight: normal;
            width: 100%;
            padding: 8px 24px 8px 10px;
            border: none;
            background-color: transparent;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border: 1px solid #C5C5C5;
            border-radius: 5px;
            height: 48px;
            padding: 0 10px;
        }

.fild-user .select-dropdown {
    width: 100%;
}

.register-new-from .select-dropdown select:active, .select-dropdown select:focus {
    outline: none;
    box-shadow: none;
}

.register-new-from .select-dropdown:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 0;
    height: 0;
    margin-top: -2px;
    border-top: 5px solid #aaa;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.fild-user.adress {
    width: 98.6%;
}

    .fild-user.adress textarea {
        width: 100%;
        border-radius: 5px;
        border: 1px solid #C5C5C5;
        height: 48px;
        padding: 10px;
        color: #000;
    }

.crate-btn {
    display: inline-block;
    width: 100%;
    padding-bottom: 70px;
}

    .crate-btn button {
        height: 46px;
        width: 151px;
        border-radius: 8px;
        border: none;
        background-color: #EE7D07;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

.table-dtaa:hover .delete {
    color: #fff;
}

.create-new-branch .fild-user {
    width: 48%;
}

.create-new-branch {
    height: 800px;
}

.upload-docoment-page #msform {
    text-align: center;
    position: relative;
    margin-top: 0;
}

    .upload-docoment-page #msform fieldset {
        border: 0 none;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        position: relative
    }

        .upload-docoment-page #msform fieldset:not(:first-of-type) {
            display: none
        }

    .upload-docoment-page #msform .action-button {
        width: 100px;
        background: #EE7D07;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 8px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 0px 10px 5px;
        float: right;
        width: 151px;
        height: 45px;
        font-size: 14px;
        font-weight: 700;
        font-family: 'Inter', sans-serif;
    }

    .upload-docoment-page #msform .action-button-previous {
        width: 151px;
        background: transparent;
        font-weight: 700;
        color: #1D1D1B;
        border: 1px solid #E0E0E0;
        border-radius: 0px;
        cursor: pointer;
        margin: 10px 5px 10px 0px;
        float: right;
        font-size: 14px;
        height: 46px;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
    }

        .upload-docoment-page #msform .action-button-previous:hover,
        #msform .action-button-previous:focus {
            background-color: #000000
        }

.upload-docoment-page .card {
    z-index: 0;
    border: none;
    position: relative
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.upload-docoment-page .fieldlabels {
    color: gray;
    text-align: left
}

.upload-docoment-page #progressbar {
    margin-bottom: 0;
    padding: 0;
    display: flex;
    width: 100%;
    text-align: center;
}

    .upload-docoment-page #progressbar .active {
        color: #EE7D07;
    }

    .upload-docoment-page #progressbar li {
        list-style-type: none;
        font-size: 15px;
        width: 25%;
        float: left;
        position: relative;
        font-weight: 400
    }

        .upload-docoment-page #progressbar li strong {
            color: #000;
            font-size: 14px;
            font-weight: 600;
            text-transform: capitalize;
        }

    .upload-docoment-page #progressbar #account:before {
        font-family: FontAwesome;
        content: "1"
    }

    .upload-docoment-page #progressbar #personal:before {
        font-family: FontAwesome;
        content: "2"
    }

    .upload-docoment-page #progressbar #payment:before {
        font-family: FontAwesome;
        content: "3"
    }

    .upload-docoment-page #progressbar #confirm:before {
        font-family: FontAwesome;
        content: "4"
    }

    .upload-docoment-page #progressbar li::before {
        width: 43px;
        height: 43px;
        line-height: 43px;
        display: block;
        font-size: 20px;
        color: #000;
        background: #fff;
        border-radius: 50%;
        margin: 0 auto 15px auto;
        border: 1px solid #C4C4C4;
        z-index: 99;
        position: relative;
    }

    .upload-docoment-page #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1
    }

    .upload-docoment-page #progressbar li.active::before, #progressbar li.active::after {
        background: #EE7D07;
        border-color: #EE7D07;
        color: #fff;
    }

.upload-docoment-page .progress {
    height: 4px !important;
}

.upload-docoment-page .progress-bar {
    background-color: #EE7D07
}

.upload-docoment-page .fit-image {
    width: 100%;
    object-fit: cover
}

.upload-docoment-page {
    background-color: #fff;
    border-radius: 21px;
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
    padding: 40px 20px;
    height: auto;
}

    .upload-docoment-page .progress {
        display: flex;
        height: 1rem;
        overflow: hidden;
        font-size: .75rem;
        background-color: #e9ecef;
        border-radius: 5px;
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 72.4%;
        z-index: 1;
    }

.upload-area {
    width: 100%;
    background-color: var(--clr-white);
    border: 2px dashed #E7E7E7;
    border-radius: 21px;
    padding: 44px 40px 44px;
    margin: 0.625rem;
    text-align: center;
}

.upload-area--open { /* Slid Down Animation */
    animation: slidDown 500ms ease-in-out;
}

@keyframes slidDown {
    from {
        height: 28.125rem; /* 450px */
    }

    to {
        height: 35rem; /* 560px */
    }
}

/* Header */
.upload-area__header {
}

.upload-area__title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.3125rem;
}

.upload-area__paragraph {
    font-size: 24px;
    margin-top: 30px;
    color: #1D1D1B;
    font-weight: 600;
    line-height: 29px;
}

.or-box {
    display: inline-block;
    width: 20%;
    position: relative;
    color: #999999;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

    .or-box::after {
        content: '';
        position: absolute;
        right: 0;
        width: 103px;
        height: 2px;
        background-color: #999999;
        top: 13px;
    }

    .or-box::before {
        content: '';
        position: absolute;
        left: 0;
        width: 103px;
        height: 2px;
        background-color: #999999;
        top: 13px;
    }

.upload-area__tooltip {
    position: relative;
    color: var(--clr-light-blue);
    cursor: pointer;
    transition: color 300ms ease-in-out;
}

    .upload-area__tooltip:hover {
        color: var(--clr-blue);
    }

.upload-area__tooltip-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -125%);
    min-width: max-content;
    background-color: var(--clr-white);
    color: var(--clr-blue);
    border: 1px solid var(--clr-light-blue);
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: none 300ms ease-in-out;
    transition-property: opacity, visibility;
}

.upload-area__tooltip:hover .upload-area__tooltip-data {
    opacity: 1;
    visibility: visible;
}

/* Drop Zoon */
.upload-area__drop-zoon {
    position: relative;
    height: auto;
    display: inline-block;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin-top: 2.1875rem;
    cursor: pointer;
    transition: border-color 300ms ease-in-out;
    width: 100%;
}

    .upload-area__drop-zoon:hover {
        border-color: var(--clr-blue);
    }

.drop-zoon__icon {
    display: flex;
    font-size: 3.75rem;
    color: var(--clr-blue);
    transition: opacity 300ms ease-in-out;
}

.drop-zoon__paragraph {
    font-size: 0.9375rem;
    color: var(--clr-light-gray);
    margin: 0;
    margin-top: 0;
    transition: opacity 300ms ease-in-out;
    display: inline-block;
    width: 250px;
    height: 46px;
    background-color: #EE7D07;
    line-height: 46px;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.upload-area--open .upload-area__header {
    display: none;
}

.drop-zoon:hover .drop-zoon__icon,
.drop-zoon:hover .drop-zoon__paragraph {
    opacity: 0.7;
}

.drop-zoon__loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: var(--clr-light-blue);
    z-index: 10;
}

.drop-zoon__preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.3125rem;
    border-radius: 10px;
    display: none;
    z-index: 1000;
    transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__preview-image {
    opacity: 0.8;
}

.drop-zoon__file-input {
    display: none;
}

/* (drop-zoon--over) Modifier Class */
.drop-zoon--over {
    border-color: var(--clr-blue);
}

    .drop-zoon--over .drop-zoon__icon,
    .drop-zoon--over .drop-zoon__paragraph {
        opacity: 0.7;
    }

/* (drop-zoon--over) Modifier Class */
.drop-zoon--Uploaded {
}

    .drop-zoon--Uploaded .drop-zoon__icon,
    .drop-zoon--Uploaded .drop-zoon__paragraph {
        display: none;
    }

/* File Details Area */
.upload-area__file-details {
    height: 0;
    visibility: hidden;
    opacity: 0;
    text-align: left;
    transition: none 500ms ease-in-out;
    transition-property: opacity, visibility;
    transition-delay: 500ms;
}

.file-details--open {
    height: auto;
    visibility: visible;
    opacity: 1;
}

.buton-uplod {
    display: inline-block;
    width: 100%;
    margin: 20px 0 0 0;
}

    .buton-uplod .upload-file {
        width: 135px;
        height: 46px;
        background-color: #EE7D07;
        border-radius: 8px;
        border: none;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

    .buton-uplod .clear-file {
        width: 151px;
        height: 46px;
        border: 1px solid #E0E0E0;
        border-radius: 8px;
        color: #1D1D1B;
        font-size: 14px;
        font-weight: 700;
        margin: 0 0 0 15px;
    }

.file-details__title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--clr-light-gray);
}

.uploaded-file {
    display: inline-block;
    align-items: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    transition: none 500ms ease-in-out;
    transition-property: visibility, opacity;
    width: 100%;
    border: 2px dashed #E7E7E7;
    border-radius: 21px;
    position: relative;
}

.uploaded-file--open {
    visibility: visible;
    opacity: 1;
}

.uploaded-file__icon-container {
    position: relative;
    margin-right: 0.3125rem;
}

.uploaded-file__icon {
    font-size: 3.4375rem;
    color: var(--clr-blue);
}

.uploaded-file__icon-text {
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 700;
    color: #1D1D1B;
    text-transform: capitalize;
}

.uploaded-file__info {
    position: relative;
    top: -0.3125rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .uploaded-file__info::before, .uploaded-file__info::after {
        content: '';
        position: absolute;
        bottom: -7px;
        width: 0;
        height: 0.5rem;
        background-color: #EE7D07;
        border-radius: 0.625rem;
        left: 8px;
    }

    .uploaded-file__info::before {
        width: 100%;
    }

    .uploaded-file__info::after {
        width: 100%;
        background-color: var(--clr-blue);
    }

/* Progress Animation */
.uploaded-file__info--active::after {
    animation: progressMove 800ms ease-in-out;
    animation-delay: 300ms;
}

@keyframes progressMove {
    from {
        width: 0%;
        background-color: transparent;
    }

    to {
        width: 100%;
        background-color: var(--clr-blue);
    }
}

.uploaded-file__name {
    width: 100%;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #475569;
    margin: -13px 0 0 64px;
}

.uploaded-file__icon-container img {
    position: relative;
    top: 7px;
}

.uploaded-file__counter {
    font-size: 1rem;
    color: var(--clr-light-gray);
}

/*.close-btn {
    position: absolute;
    right: 38px;
    top: 40px;
}*/

.close-btn button {
    background-color: transparent;
    border: none;
    padding: 0;
}

.rental-agreements-from {
    width: 100%;
}

.rental-agreements-from {
    width: 100%;
    display: inline-block;
}

.from-div {
    display: inline-block;
    width: 100%;
}

.from-boxx-three {
    width: 32%;
    float: left;
    margin: 0 20px 10px 0;
    position: relative;
}

.rental-agreements-from label {
    float: left;
    width: 35%;
    text-align: left;
    color: #999999;
    font-size: 12px;
    font-weight: 400;
    margin: 8px 0 0 0;
}

.rental-agreements-from input {
    float: left;
    width: 65%;
    margin: 0 0 0 0;
    border: 1px solid #C5C5C5;
    height: 33px;
    padding: 0 9px;
    border-radius: 5px;
    font-size: 13px;
}

.full-bar-input {
    display: inline-block;
    width: 100%;
}

.from-boxx-tow {
    float: left;
    width: 65.3%;
    margin: 0 20px 10px 0;
    position: relative;
}

    .from-boxx-tow label {
        width: 14.4%;
    }

    .from-boxx-tow input {
        width: 85.6%;
    }

.from-row-tow {
    float: left;
    width: 48.6%;
    margin: 0 20px 10px 0;
    position: relative;
}

    .from-row-tow label {
        width: 19.3%;
    }

    .from-row-tow input {
        width: 80%;
        float: right;
    }

.sapce-row {
    margin-top: 30px;
}

.rental-table-from {
    display: inline-block;
    width: 100%;
    margin: 68px 0 0 0;
}

    .rental-table-from table {
        width: 100%;
        text-align: left;
    }

        .rental-table-from table th {
            background-color: #1C1C1A;
            padding: 10px 18px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            height: 40px;
        }

        .rental-table-from table tr:first-child th:nth-child(1) {
            border-top-left-radius: 8px;
        }

        .rental-table-from table tr:first-child th:last-child {
            border-top-right-radius: 8px;
        }

        .rental-table-from table td {
            border: 1px solid #F5F5F5;
            padding: 8px 18px;
            color: #1D1D1B;
            font-size: 13px;
            font-weight: 400;
        }

.bg-color-tble {
    background-color: #F0F0F0;
}

    .bg-color-tble td {
        font-weight: 700 !important;
    }

.tex-row-fild {
    display: inline-block;
    width: 100%;
    margin: 48px 0 0;
}

    .tex-row-fild .tex-iner-left {
        float: left;
        width: 30%;
        margin: 0 0 10px 0;
        position: relative;
    }

    .tex-row-fild .tex-iner-right {
        float: right;
        width: 60%;
        margin: 0 0 10px 0;
        position: relative;
    }

.notifaction-row {
    display: inline-block;
    width: 100%;
    text-align: left;
    margin: 40px 0 0 0;
}

    .notifaction-row input {
        width: 100%;
        margin: 0 0 10px 0;
    }

.step-from-3-row .edite-btn {
    padding: 0;
    background-color: transparent;
    border: none;
    height: auto;
    position: absolute;
    right: 7px;
    top: 3px;
}

.done-saction {
    display: inline-block;
    width: 100%;
    height: 700px;
}

.slect-invis {
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
    margin-top: 20px;
    text-align: center;
}

    .slect-invis .dropdown {
        width: 100%;
        display: inline-block;
        text-align: center;
    }

    .slect-invis .dropdown__switch:checked + .dropdown__options-filter .dropdown__select {
        transform: scaleY(1);
    }

    .slect-invis .dropdown__switch:checked + .dropdown__options-filter .dropdown__filter:after {
        transform: rotate(-135deg);
    }

    .slect-invis .dropdown__options-filter {
        width: 515px;
        cursor: pointer;
        border-radius: 5px;
        border: 1px solid #EE7D07;
        height: 48px;
    }

    .slect-invis .dropdown__filter {
        position: relative;
        display: inline-block;
        color: #1D1D1B;
        transition: 0.3s;
        height: 48px;
        width: 100%;
        text-align: left;
        padding: 11px 17px;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
        text-transform: capitalize;
    }

    .slect-invis .dropdown ul li {
        display: inline-block;
        text-transform: capitalize;
        font-weight: 600;
        font-size: 14px;
        width: 100%;
    }

    .slect-invis .dropdown__filter::after {
        position: absolute;
        top: 45%;
        right: 20px;
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid #595959;
        border-bottom: 2px solid #595959;
        transform: rotate(45deg) translateX(-45%);
        transition: 0.2s ease-in-out;
    }

    .slect-invis .dropdown__select {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin-top: 5px;
        overflow: scroll;
        box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
        transform: scaleY(0);
        transform-origin: top;
        font-weight: 300;
        transition: 0.2s ease-in-out;
        z-index: 99;
        background-color: #fff;
        padding: 0;
        border-radius: 8px;
        height: 494px;
        overflow-x: inherit;
    }

    .slect-invis .dropdown__select-option {
        padding: 8.5px 17.5px;
        background-color: #fff;
        border-bottom: 1px solid #d6d6d6;
        transition: 0.3s;
        color: #737373;
        font-size: 14px !important;
        font-weight: 300 !important;
    }

        .slect-invis .dropdown__select-option:last-of-type {
            border-bottom: 0;
        }

        .slect-invis .dropdown__select-option:hover {
            background-color: #EE7D07;
            color: #fff;
        }

.upload-docoment-page #progressbar .active strong {
    color: #EE7D07;
}




.slect-invis .dropdown__select {
    scrollbar-width: thin;
    scrollbar-color: #ff7f00 #b0b7c4;
}

    .slect-invis .dropdown__select::-webkit-scrollbar {
        width: 6px;
        height: 8px;
        border-radius: 50px;
    }

    .slect-invis .dropdown__select::-webkit-scrollbar-track {
        background-clip: content-box;
        border: 8px solid #E9E9E9;
        border-radius: 30px;
    }

    .slect-invis .dropdown__select::-webkit-scrollbar-thumb {
        background-color: #ff7f00;
    }

        .slect-invis .dropdown__select::-webkit-scrollbar-thumb:hover {
            background-color: #e67200;
        }

    .slect-invis .dropdown__select::-webkit-scrollbar-corner, ..slect-invis .dropdown__select::-webkit-scrollbar-track {
        background-color: #b0b7c4;
    }








.dropdown-menu.dropdown-menu-end.bg-secondary.border-0.rounded-0.rounded-bottom.m-0.show {
    min-width: 221px;
    margin: 0 0 0 23px !important;
}

.user-prf .dsw {
    align-items: center;
}

.dsw {
    display: flex;
    flex-wrap: wrap;
}

.icn-bt {
    background: #F4E9DD;
    width: 34px;
    height: 34px;
    text-align: center;
    border-radius: 5px;
    line-height: 29px;
    margin: 3px 9px 0 0;
}

a.dropdown-item.line-bder {
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
}

.select-branch.sert {
    margin: 9px 0 0 0;
}

.hours-graps #figure {
    overflow-x: scroll;
    padding: 0 0 5px;
}

.hours-graps #figure {
    overflow-x: scroll;
    padding: 0 0 0px;
}

#profile-1 .grabh.hours-graps .graph {
    height: 460px;
}

.hours-graps ul.x-axis li {
    min-width: 10.2%;
    text-align: center;
}

ul.legend {
    display: flex;
}


.hours-graps ul.x-axis {
    display: flex;
}

.hours-graps .bars {
    display: flex;
}

.hours-graps .bar-group {
    min-width: 5.5%;
}


.hours-graps ul.x-axis li {
    min-width: 10.2%;
    text-align: center;
}

.dropup, .dropend, .dropdown, .dropstart {
    position: inherit !important;
}

.notf-nav {
    height: 400px;
    overflow: auto;
}

    .notf-nav small {
        font-size: 12px;
    }

    .notf-nav h6 {
        margin: 0;
        font-size: 15px;
    }

    .notf-nav .dropdown-item {
        border-bottom: 1px solid #E1E1E1;
    }

.nav-item.dropdown:nth-child(1) .dropdown-menu {
    width: 300px;
}

.reslats .reuslt-bx .select {
    min-width: 75px;
    margin: 0 0 0 10px;
    height: 38px;
    text-align: center;
}

    .reslats .reuslt-bx .select .selectBtn {
        padding: 6px 0;
    }

.select {
    position: relative;
    margin: 0 12px 0 0;
    min-width: 190px;
    height: 44px;
    border: 1px solid #C5C5C5;
    border-radius: 8px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    background-color: #fff;
    display: inline-block;
}

    .select .selectBtn {
        background: var(--bg1);
        padding: 9px 12px;
        box-sizing: border-box;
        border-radius: 8px;
        width: 100%;
        cursor: pointer;
        position: relative;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background: #fff;
        font-size: 16px;
        font-weight: 400;
    }

        .select .selectBtn:after {
            content: "";
            position: absolute;
            top: 45%;
            right: 15px;
            width: 6px;
            height: 6px;
            -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
            border-right: 2px solid #666;
            border-bottom: 2px solid #666;
            transition: 0.2s ease;
        }

        .select .selectBtn.toggle {
            border-radius: 8px 8px 0 0;
        }

            .select .selectBtn.toggle:after {
                -webkit-transform: translateY(-50%) rotate(-135deg);
                transform: translateY(-50%) rotate(-135deg);
            }

    .select .selectDropdown {
        position: absolute;
        top: 100%;
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        background: var(--bg1);
        border-top: 1px solid #eee;
        z-index: 1;
        background: #fff;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
        -webkit-transform-origin: top center;
        transform-origin: top center;
        visibility: hidden;
        margin: 6px 0 0 0;
        transition: 0.2s ease;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    }

        .select .selectDropdown .option {
            padding: 10px;
            box-sizing: border-box;
            font-size: 13px;
            cursor: pointer;
            color: #737373;
            font-weight: 400;
            margin: 0 0 0;
            border-bottom: 1px solid #C5C5C5;
        }

            .select .selectDropdown .option:hover {
                background: #ee7d07;
                color: #fff;
            }

        .select .selectDropdown.toggle {
            visibility: visible;
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
        }

.my-nav ul a:hover {
    color: #fff;
    background: #ee7d07;
}

.my-nav ul a i {
    font-size: 15px;
    min-width: 26px;
    display: inline-block;
}

.user-prf .linsprt {
    border-bottom: 1px solid #E1E1E1;
}

.user-prf a:last-child {
    border-bottom: 0;
}

.top-saction .col-md-6 {
    margin: 0;
}

.select-branch.sert {
    margin: 9px 0 0 0;
}

.datestr-endd {
    border: 1px solid #cecece;
    width: 330px;
    background: #fff;
    border-radius: 8px;
    padding: 2px;
}

    .datestr-endd input {
        border: none;
        width: 49%;
        margin: 0;
        height: 44px;
    }

.dsw {
    display: flex;
    flex-wrap: wrap;
}

.icn-bt {
    background: #F4E9DD;
    width: 34px;
    height: 34px;
    text-align: center;
    border-radius: 5px;
    line-height: 29px;
    margin: 3px 9px 0 0;
}

.notf-nav h6 {
    margin: 0;
    font-size: 15px;
}

.notf-nav small {
    font-size: 12px;
}

.notf-nav a:hover .icn-bt {
    background: #fff;
}

.notf-nav .dropdown-item {
    border-bottom: 1px solid #E1E1E1;
}

    .notf-nav .dropdown-item:last-child {
        border-bottom: 0;
    }

.notf-nav {
    height: 400px;
    overflow: auto;
}

.user-prf .dsw {
    align-items: center;
}

a.dropdown-item.line-bder {
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
}

.user-prf .dropdown-item:hover .icn-bt {
    background: #fff;
}

#canvas {
    margin: 19px 0 0 0 !important;
    display: inline-block !important;
}


#profile-1 .grabh.hours-graps .graph {
    height: 460px;
}

#profile-1 .grabh.hours-graps {
    height: 430px;
}

.dropdown-menu .fw-normal.mb-0 {
    color: #616161;
}

.chrt-nv li {
    text-transform: inherit;
    margin: 0 5px;
}

    .chrt-nv li .active {
        background: #EE7D07 !important;
        border-color: #EE7D07 !important;
    }

    .chrt-nv li a {
        border: 1px solid #DEDEDE !important;
        color: #1D1D1B;
        font-size: 13px;
        font-weight: 600;
    }

        .chrt-nv li a:hover {
            background: #ee7d07;
            color: #fff;
        }

#profile-1 .grabh.hours-graps {
    height: 430px;
}

#canvas {
    margin: 19px 0 0 0 !important;
    display: inline-block !important;
}

.select .selectDropdown .option:hover {
    background: #ee7d07;
    color: #fff;
}


.vtn-payy-bx .search-bx {
    margin: 0 12px 0 0;
    display: inline-block;
}

/*-------------Added by rajeshri--------------*/

.dataTables_info {
    float: left;
    width: 50%;
    margin: 10px 0 0 0;
    font-size: 12px;
}

.dataTables_paginate {
    float: right;
    text-align: right;
    width: 50%;
    margin: 10px 0 0 0;
}

.paginate_button {
    display: inline-block;
    width: 29px;
    height: 28px;
    background-color: #fff;
    border: 1px solid #B8B8B8;
    border-radius: 3px;
    text-align: center;
    line-height: 28px;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 0 5px;
}

.dataTables_paginate .current {
    background-color: #EE7D07;
    color: #fff;
    font-weight: 700;
    border: none;
}

.paginate_button:hover {
    background-color: #EE7D07;
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
}



/*Wizard CSS Start*/

.form-wizard .nav-wizard li .nav-link span {
    border-radius: 50px;
    width: 3rem;
    height: 3rem;
    border: 2px solid #EE7D07;
    display: block;
    line-height: 3rem;
    color: #EE7D07;
    font-size: 18px;
    margin: auto;
    background-color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}


.form-wizard .nav-wizard li .nav-link:after {
    position: absolute;
    top: 37%;
    left: 50%;
    height: 3px;
    transform: translateY(-50%);
    background: #f1f1f1 !important;
    z-index: 0;
    width: 100%;
}

.sw-theme-default > .nav .nav-link::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: -1px;
    background: #999;
    transition: all .35s ease .15s;
}

.form-wizard .nav-wizard li .nav-link.active:after {
    background: #f1f1f1 !important;
}

.sw-theme-default > .nav .nav-link.active::after {
    background: #17a2b8 !important;
    width: 100%;
}

ul.nav.nav-wizard a.nav-link.inactive.active {
    color: #ee7d07 !important;
}

.form-wizard .nav-wizard li .nav-link.done:after {
    background: #EE7D07 !important;
}

.form-wizard .nav-wizard li .nav-link.done span {
    background-color: #EE7D07;
    color: #fff;
}

.upload-docoment-page {
    box-shadow: none !important;
}

    .upload-docoment-page .sw-theme-default > .nav {
        box-shadow: none !important;
        padding: 20px 0 !important;
    }

.form-wizard .nav-wizard li:last-child .nav-link:after {
    display: none !important;
}

.sw-theme-default {
    border: 0 !important;
}

.dropzone {
    border: 0 !important;
    padding: 0 !important;
}

    .dropzone .dz-message {
        margin: 0 !important;
    }

.btn-primary {
    width: 179px;
    background-color: #EE7D07;
    border: none;
    border-radius: 8px;
    color: #fff;
    height: 40px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #ee7d07;
        border-color: #ee7d07;
    }

.valid-input {
    border-color: #C5C5C5;
    border-width: 1px;
    border-style: solid;
}

.invalid-input {
    border-color: red !important;
    border-width: 1px;
    border-style: solid;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255,0,0,.3) !important;
}

    .invalid-input:focus {
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255,0,0,.3) !important;
    }

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #ffffff;
    background-color: #ee7d07;
    border-color: #ee7d07;
}

.table-dtaa:hover td img {
    filter: brightness(0) invert(1);
}

.row-table-all li a {
    font-size: 12px;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 1px solid #dcdcdc;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #fff;
    color: #ee7d07;
    padding: 5px;
    text-transform: capitalize;
}

.row-table-all li {
    margin: 0 5px 0 0;
}

.nav-tabs {
    border-bottom: none;
}

/*Added by Divya Starts -- Fixed Footer at bottom related changes */
.content {
    min-height: 100vh;
    position: relative;
}

#wrap {
    padding-bottom: 50px;
    flex: 1;
}

.top-saction {
    /*overflow: auto;*/
    padding-bottom: 50px;
    /* must be same height as the footer */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* negative value of footer height */
    height: 50px;
}

.row-table-all {
    margin: 20.3px 0 20px 0;
}

/*Added by Divya Ends -- Fixed Footer at bottom related changes */

/*Added by Manish -- Change Password Design*/

.password-change-class {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    padding: 51px 37px 0;
    border-radius: 21px;
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
    height: 833px;
}

    .password-change-class .login-form input {
        width: 515px;
        height: 48px;
        border: 1px solid #C5C5C5;
        border-radius: 5px;
        color: #1D1D1B;
        font-size: 16px;
        font-weight: 400;
        padding: 0 10px;
        margin: 0 0 20px 0;
    }

    .password-change-class .form-btn input {
        background-color: #EE7D07;
        border: none;
        height: 46px;
        border-radius: 8px;
        color: #fff !important;
        font-size: 16px;
        font-weight: 600;
    }

.change-pass {
    padding-bottom: 37px;
}

/*Added by Manish -- Change Password Design*/

/*Added by Divya Starts -- Remove margin and unwanted spaces from bar graph */
.grabh {
    height: 420px;
    margin: 0;
}

.graph {
    height: 440px;
}

.bars {
    height: 330px;
}
/*Added by Divya Ends --  Remove margin and unwanted spaces from bar graph */


/*new-add-css*/
.cart-bxx {
    margin-left: 0;
}

.selectDropdown img {
    margin: 0 9px 0 0;
}

.box-new-trhee .pay-icon {
    width: 41px;
    height: 41px;
    background-color: #EE7D07;
    border-radius: 5px;
    text-align: center;
    line-height: 37px;
}

.profile-saction {
    display: inline-block;
    width: 100%;
}

    .profile-saction .container {
        max-width: 98%;
    }

.profile-saction-inner {
    background-color: #fff;
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.15);
    border-radius: 21px;
    margin: 20px 0 0 0;
    padding: 30px 28px;
    display: inline-block;
    width: 100%;
}

    .profile-saction-inner form {
        width: 100%;
        margin: 20px 0 0 0;
        display: inline-block;
    }

    .profile-saction-inner .filde-input {
        float: left;
        width: 100%;
        margin: 0;
    }

    .profile-saction-inner form label {
        width: 100%;
        color: #737373;
        font-size: 14px;
        margin: 0 0 4px 0px;
    }

    .profile-saction-inner form input {
        width: 100%;
        height: 48px;
        border: 1px solid #C5C5C5;
        border-radius: 5px;
        color: #1D1D1B;
        font-size: 16px;
        font-weight: 400;
        padding: 0 10px;
        margin: 0 0 20px 0;
    }

.save-from-box {
    display: inline-block;
    width: 100%;
}

    .save-from-box button {
        display: inline-block;
        background-color: #EE7D07;
        width: 151px;
        height: 46px;
        border: none;
        border-radius: 8px;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

.daily-box-icon {
    float: left;
    width: 42px;
    height: 42px;
    background-color: #EE7D07;
    border-radius: 4px;
    text-align: center;
    line-height: 42px;
    margin: 8px 0 0 0;
}

.daily-box-content {
    float: left;
    padding: 0 0 0 17px;
}

.agree-edt {
    position: relative;
}

    .agree-edt button.edt-pn {
        position: absolute;
        border: none;
        background-color: transparent;
        padding: 2px 7px;
    }





.new-addbox label {
    float: right;
}

.new-addbox .from-boxx-three input {
    text-align: right;
    width: 58%;
}

.new-addbox button.edite-btn {
    left: 11px;
    right: inherit;
}

.full-bar-input label {
    width: 11%;
}

.parking {
    width: 100%;
}

    .parking label {
        width: 11%;
    }


.tr-hading .sorting {
    cursor: pointer;
}

/*new-css-box-icon*/
.box-six-row-top {
    display: inline-block;
    width: 100%;
    padding: 0 25px;
}

.box-six-row {
    display: inline-block;
    width: 100%;
    margin: 0;
    text-align: center;
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.15);
    border-radius: 21px;
    background-color: #fff;
    padding: 13px 0 0 0;
    overflow: hidden;
}

    .box-six-row h4 {
        margin: 10px 0 0 0;
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
        width: 100%;
    }

    .box-six-row p {
        margin: 6px 0 0 0;
        color: #585858;
        font-size: 14px;
        letter-spacing: -0.42px;
        width: 100%;
        display: inline-block;
        font-weight: 400;
    }

.orneg-box {
    display: inline-block;
    width: 100%;
    background-color: #EE7D07;
    height: 30px;
    margin: 14px 0 0 0;
    position: relative;
    top: 6px;
}
/*new-css-box-icon*/
.text-right {
    text-align: right;
}



/*Tool Tip Css*/



.tooltip {
    position: relative;
    display: inline-block;
    opacity: inherit !important;
    width: 100%;
    margin: 5px 0 0 0;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 251px;
        background-color: #fff;
        color: #000;
        text-align: left;
        padding: 14px 11px;
        position: absolute;
        z-index: 999;
        bottom: 125%;
        left: 50%;
        border: 1px solid #dcdcdc;
        margin-left: -47px;
        opacity: 0;
        transition: opacity 0.3s;
        border-radius: 8px;
    }

        .tooltip .tooltiptext h2 {
            margin: 0;
            color: #1D1D1B;
            font-size: 16px;
            font-weight: 600;
            background-color: transparent;
            box-shadow: inherit !important;
            width: 100%;
            padding: 0 !important;
        }

        .tooltip .tooltiptext p {
            margin: 5px 0 0 0;
            color: #737373;
            font-size: 13px;
            font-weight: 400;
            display: inline-block;
            width: 100%;
        }

    /*.tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 16px;
            margin-left: -8px;
            border-width: 7px;
            border-style: solid;
            border-color: #fff transparent transparent transparent;
        }*/

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

.tooltiptext.last-tool-tip {
    left: -64px;
}

.sec-last-tool-tip {
    left: -207px;
}

.result-page {
    float: left;
    width: auto;
    padding: 4px 0 0 0;
}



.table-new-vehicles .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.table-new-vehicles .form-group label {
    position: relative;
    cursor: pointer;
}

    .table-new-vehicles .form-group label::before {
        content: '';
        -webkit-appearance: none;
        background-color: #fff;
        border: 1px solid #fff;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
        padding: 8px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
        margin-right: 5px;
        border-radius: 4px;
    }

.table-new-vehicles .form-group input:checked + label::after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 14px;
    border: solid #EE7D07;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.table-new-vehicles {
    overflow: scroll;
    overflow-y: inherit;
    width: 100%;
    padding: 0 0 20px 1px;
}

    .table-new-vehicles .form-group {
        width: auto;
        float: left;
    }

    .table-new-vehicles table {
        width: 1600px;
    }

.my-nav .dropdown ul li a {
    text-align: left;
}

.table-new-vehicles td .form-group label::before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #B8B8B8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px;
}

.table-new-vehicles td .form-group input:checked + label::after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 14px;
    border: solid #EE7D07;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.table-new-vehicles td {
    padding: 17px 10px;
    border: 1px solid #DEDEDE;
    color: #737373;
    font-size: 13px;
    font-weight: 400;
}

.table-new-vehicles tr td:last-child {
    text-align: center;
}

.enter-vehicle-details {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.15);
    border-radius: 21px;
    margin: 23px 0 21px 0;
}

.enter-vehicle-details-inner {
    display: inline-block;
    width: 100%;
    margin: 0;
}

    .enter-vehicle-details-inner h3 {
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
        width: 100%;
        display: inline-block;
        margin: 0;
        border-bottom: 1px solid#F5F5F5;
        padding: 20px 28px;
    }

.enter-vehicle-form {
    display: inline-block;
    width: 100%;
    padding: 30px 28px;
}

    .enter-vehicle-form .input-left {
        float: left;
        width: 48%;
        margin: 0 0 20px 0;
    }

    .enter-vehicle-form .input-right {
        float: right;
        width: 48%;
        margin: 0 0 20px 0;
    }

    .enter-vehicle-form label {
        display: inline-block;
        width: 100%;
        color: #737373;
        font-size: 14px;
        font-weight: 400;
    }

    .enter-vehicle-form input {
        width: 100%;
        height: 48px;
        border-radius: 5px;
        border: 1px solid #C5C5C5;
        padding: 10px;
        margin: 5px 0 0 0;
    }

.upload-vehicle-photos {
    margin: 15px 0 0 0;
    width: 100%;
    display: inline-block;
}

    .upload-vehicle-photos h4 {
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
        width: 100%;
        display: inline-block;
        margin: 0;
        padding: 0;
    }

.upload-image-bx {
    display: inline-block;
    width: 100%;
    border: 2px dashed #E7E7E7;
    border-radius: 21px;
    margin: 18px 0 0 0;
    text-align: center;
    padding: 70px 0;
}

    .upload-image-bx h6 {
        width: 100%;
        color: #1D1D1B;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        display: inline-block;
        margin: 30px 0 0 0;
    }

    .upload-image-bx .or-box {
        margin: 15px 0 0 0;
        width: 18%;
    }


.upload-btn label input {
    display: none
}

.upload-btn label {
    padding: 1rem 1.5rem;
    background: #1f66fd;
    box-shadow: 2px 2px 2px #aaa;
    font: 1em Arial, sans-serif;
    color: #fff;
    position: relative;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.upload-btn {
    display: inline-block;
    margin: 54px auto 0;
    width: 100%;
    text-align: center;
}

    .upload-btn label {
        padding: 16px 24px;
        background: #EE7D07;
        color: #fff;
        position: relative;
        cursor: pointer;
        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        width: auto;
        border-radius: 8px;
        width: 250px;
        font-weight: 800;
    }

.button-save-cancal {
    display: inline-block;
    width: 100%;
    margin: 26px 0 0 0;
}

    .button-save-cancal .save-btn {
        width: 151px;
        padding: 15px 0;
        border-radius: 8px;
        background-color: #EE7D07;
        border: none;
        color: #fff;
        font-weight: 700;
    }

    .button-save-cancal .clear-btn {
        width: 151px;
        padding: 16px 24px;
        border-radius: 8px;
        border: 1px solid #E0E0E0;
        background-color: #fff;
        color: #000;
        font-weight: 700;
        margin: 0 0 0 5px;
    }

/*New-Css*/

.rental-text {
    font-style: normal;
    color: #EE7D07;
}

.bar-graph-vertical .bar-container {
    display: inline-block;
    height: 260px;
    position: relative;
    text-align: center;
    width: 83px;
}

.bar-graph-vertical .year {
    bottom: -5px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    color: #737373;
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
}

.right-new-bx {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    border-radius: 21px;
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.15);
    padding: 27px 12px;
}

.list-right {
    display: inline-block;
    width: 100%;
    border: 1px solid #DEDEDE;
    background-color: #F5F5F5;
    border-radius: 17px;
    margin: 0 0 13px 0;
    padding: 5.88px 0 5.88px 5.88px;
    position: relative;
}

    .list-right .icon-right {
        float: left;
        width: auto;
    }

    .list-right .content-right {
        float: left;
        width: auto;
        padding: 30px 0 0 20px;
    }

        .list-right .content-right span {
            width: 100%;
            display: inline-block;
            color: #1D1D1B;
            font-size: 24px;
            font-weight: 700;
            line-height: 24px;
        }

        .list-right .content-right em {
            width: 100%;
            display: inline-block;
            color: #737373;
            font-size: 11px;
            font-style: normal;
            font-weight: 600;
        }

.last-baar #spnTopBranchName {
    width: 50%;
    line-height: 14px;
    margin: 10px 0 0 0;
}

.day-box {
    float: right;
    position: absolute;
    right: 0;
    width: 124px;
    text-align: center;
    background-color: #EE7D07;
    border-radius: 300px 0px 0px 300px;
    color: #fff;
    padding: 6px 10px;
    top: 44px;
    font-size: 14px;
    font-weight: 700;
}

.right-new-bx .list-right:last-child {
    margin-bottom: 5px;
}

.cess span {
    font-weight: 300;
}

.css-score .year {
    bottom: 10px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    color: #737373;
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    transform: rotate(-44.338deg);
}

.button-list-ces {
    display: inline-block;
    width: 123px;
    margin: 0 10px 0 0;
}

    .button-list-ces button {
        width: 100%;
        height: 44px;
        border-radius: 8px;
        background-color: #EE7D07;
        border: none;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

        .button-list-ces button img {
            margin: 0 10px 0 0;
            position: relative;
            bottom: 1px;
        }

.new-chart {
    position: relative;
}

.ul-list-nbr {
    position: relative;
    left: 0;
    width: 3%;
    text-align: center;
    border-right: 1px solid #dcdcdcdc;
    bottom: 40px;
    float: left;
}

    .ul-list-nbr ul {
        padding: 0;
        margin: 0;
    }

        .ul-list-nbr ul li {
            display: inline-block;
            width: 100%;
            margin: 0 0 19px 0;
        }

            .ul-list-nbr ul li:last-child {
                margin-bottom: 0 !important;
            }

.new-chart .bar-one.bar-container {
    width: 46px;
}

.new-chart .year {
    font-size: 10px;
}

.new-chart::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 94%;
    height: 1px;
    background-color: #dcdcdc;
    bottom: 47px;
}

.new-chart .bar-container {
    left: 15px;
}

.spinner2:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 2px solid #EE7D07;
    border-top-color: #fff;
    animation: spinner2 .6s linear infinite;
}


@keyframes spinner2 {
    to {
        transform: rotate(360deg);
    }
}
/*[new1]*/

.table-payment-top.reslats .reuslt-bx {
    width: 27%;
}

.table-payment-top.reslats .vtn-payy-bx {
    width: 100%;
}

.cesd-dashboard div#date-picker-section {
    width: 200px;
}

.cesd-dashboard .select-dropdown {
    width: auto;
}

.cashdeposit #CashDepositStatus {
    max-width: 190px;
    margin: 0 20px 0 0;
}

.last-baar #spnTopBranchName {
    margin: 0 0 7px 0 !important;
}

#RAAdjustmentStatus {
    width: auto;
    margin: 0 12px 0 0;
}



/* View Vehicle new css */

.view-vehicle-new-saction {
    display: inline-block;
    width: 100%;
    padding: 20px;
}

.box-new-vehicle {
    display: inline-block;
    width: 100%;
    position: relative;
}

    .box-new-vehicle h3 {
        margin: 0 0 13px 0;
        display: inline-block;
        width: 100%;
        color: #1D1D1B;
        font-size: 20px;
        font-weight: 500;
    }

.flickity-enabled {
    position: relative;
}

    .flickity-enabled:focus {
        outline: none;
    }

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .flickity-enabled.is-draggable .flickity-viewport {
        cursor: move;
        cursor: -webkit-grab;
        cursor: grab;
    }

        .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
            cursor: -webkit-grabbing;
            cursor: grabbing;
        }

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
    position: absolute;
    top: 50%;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 5px;
    background: white;
    background: hsla(0, 0%, 100%, 0.75);
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .flickity-prev-next-button:hover {
        background: white;
    }

    .flickity-prev-next-button:focus {
        outline: none;
        box-shadow: 0 0 0 5px #09F;
    }

    .flickity-prev-next-button:active {
        opacity: 0.6;
    }

    .flickity-prev-next-button.previous {
        left: 10px;
    }

    .flickity-prev-next-button.next {
        right: 10px;
    }

    .flickity-prev-next-button:disabled {
        opacity: 0.3;
        cursor: auto;
    }

    .flickity-prev-next-button svg {
        position: absolute;
        left: 20%;
        top: 20%;
        width: 60%;
        height: 60%;
    }

    .flickity-prev-next-button .arrow {
        fill: #333;
    }

.carousel {
    background: #FAFAFA;
}

.carousel-main {
    margin-bottom: 8px;
}

.carousel-cell {
    width: 100%;
    height: 267px !important;
    margin-right: 0;
    border-radius: 5px;
    overflow: hidden;
}

.carousel-nav .carousel-cell {
    height: 90px;
    width: 125px;
    padding: 0 3px;
    display: inline-block;
}

.carousel-main img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.box-new-vehicle .flickity-viewport {
    height: 267px !important;
}

.carousel-nav .flickity-viewport {
    height: 67.475px !important;
}

    .carousel-nav .flickity-viewport .carousel-cell.is-selected.is-nav-selected {
        height: 67.475px !important;
    }

.carousel-nav img {
    width: 100%;
    border-radius: 5px;
}

.carousel-nav .flickity-button {
    display: none;
}

.map-loaction iframe {
    height: 342px;
    border-radius: 5px;
    width: 100%;
}

.qr-code-box {
    text-align: center;
    border: 1px solid #C5C5C5;
    border-radius: 5px;
    display: inline-block;
    width: 100%;
    height: 342px;
    background-color: #F6F6F6;
    padding: 36px 0;
}

    .qr-code-box img {
        display: inline-block;
    }

    .qr-code-box button {
        display: inline-block;
    }

.btn-qr {
    display: inline-block;
    width: 100%;
    margin: 20px 0 0 0;
}

.qr-code-box button {
    display: inline-block;
    background-color: #EE7D07;
    border: none;
    border-radius: 8px;
    padding: 11px 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.vehicle-details-new-saction {
    display: inline-block;
    width: 100%;
    margin: 35.52px 0 0 0;
}

    .vehicle-details-new-saction h3 {
        margin: 0;
        color: #1D1D1B;
        font-size: 20px;
        font-weight: 500;
        width: 100%;
    }

    .vehicle-details-new-saction .from-new-add {
        width: 100%;
        margin: 20px 0 0 0;
    }

.new-input-left {
    float: left;
    width: 48%;
    margin: 0 0 20px 0;
}

.new-input-right {
    float: right;
    width: 48%;
    margin: 0 0 20px 0;
}

.from-new-add label {
    display: inline-block;
    width: 100%;
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

.from-new-add input {
    width: 100%;
    height: 48px;
    border: 1px solid #C5C5C5;
    border-radius: 5px;
    background-color: #F6F6F6;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 10px;
}

.back-bt {
    display: inline-block;
    width: 100%;
    margin: 5px 0 20px 0;
}

    .back-bt button {
        height: 46px;
        width: 104px;
        border: 1px solid #E0E0E0;
        border-radius: 5px;
        background-color: #fff;
        color: #1D1D1B;
        font-size: 14px;
        font-weight: 700;
    }

.vicleimagedrop {
    position: absolute !important;
    top: 48px;
    right: 10px;
    z-index: 999;
    padding: 0 !important;
    width: 100%;
    text-align: right;
}

    .vicleimagedrop .nav-link.dropdown-toggle {
        padding: 0;
        text-align: center;
        display: inline-block;
    }

    .vicleimagedrop .shap-img {
        margin: 0 !important;
        border-radius: 1px;
    }

    .vicleimagedrop .dropdown-menu {
        margin: 0 0 0 17rem !important;
        background-color: #F5F5F5 !important;
        border-radius: 5px !important;
        border: 1px solid #DEDEDE !important;
        position: absolute !important;
        padding: 0;
        width: 210px;
        min-width: inherit !important;
        transform: inherit !important;
        top: 25px !important;
    }

        .vicleimagedrop .dropdown-menu ul li a img {
            margin: 0 10px 0 0;
        }

        .vicleimagedrop .dropdown-menu ul {
            padding: 0;
            margin: 0;
        }

            .vicleimagedrop .dropdown-menu ul li {
                display: inline-block;
                width: 100%;
            }

                .vicleimagedrop .dropdown-menu ul li a {
                    border-bottom: 1px solid #dcdcdc;
                    display: inline-block;
                    width: 100%;
                    padding: 10px 20px;
                    color: #737373;
                    font-size: 16px;
                    font-weight: 400;
                    text-transform: capitalize;
                }

.surveyreport select {
    max-width: 190px;
    margin: 0 20px 0 0;
}


.my-nav ul {
    margin: 0;
    padding: 0;
    position: absolute;
    background-color: #fff;
    top: 38px;
    box-shadow: 0 0 15px 0 #dcdcdc;
    width: 238px;
    right: 14px;
    float: right;
    border-radius: 5px;
    z-index: 99;
    text-align: left;
    display: none;
}

.red .dropdown-content {
    display: inline-block;
}

.form-check-inline input {
    margin: 0;
    width: 10px;
    background-color: transparent;
    height: 21px !important;
}

.form-check-inline .form-check-label {
    padding: 0 0 0 10px !important;
}

.form-check-input:checked[type="radio"] {
    background-image: inherit !important;
}

.table-dtaa td .my-nav {
    display: inline-block;
    width: auto;
}

.table-dtaa td a {
    display: inline-block;
    position: relative;
    bottom: 4px;
    margin: 0 7px 0 7px;
}

    .table-dtaa td a .fa.fa-sync {
        color: #EE7D07;
    }

.table-dtaa:hover td a .fa.fa-sync {
    color: #fff;
}

.table-dtaa td:last-child {
    text-align: center;
}

.upload-docoment-page #smartwizard .nav.nav-wizard {
    width: 60%;
    margin: 0 auto;
}

.tab-according .card {
    margin-bottom: 10px;
}

.collapsible-link::before {
    content: "\f107";
    position: absolute;
    top: 54px;
    right: 40px;
    transform: translateY(-50%);
    display: block;
    font-family: "FontAwesome";
    font-size: 35px;
}

.collapsible-link[aria-expanded="true"]::before {
    content: "\f106";
}

#accordionExample {
    box-shadow: inherit !important;
}

.tab-according .card .card-header {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0;
}

    .tab-according .card .card-header button {
        width: 100%;
        text-align: left;
        display: inline-block;
        color: #1D1D1B !important;
        font-size: 24px;
        font-weight: 700;
        text-transform: capitalize !important;
        padding: 0;
    }

.tab-according .card {
    margin: 0 !important;
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.15);
    border-radius: 21px;
    border: 1px solid #dcdcdc;
    background-color: #fff;
    padding: 33px 37px;
}

    .tab-according .card .card-body {
        padding: 10px 0px !important;
    }

.tab-according {
    padding: 12px 10px;
    display: inline-block;
    width: 100%;
}

.accordion .border-bottom.mb-4 {
    margin: 0 !important;
    border: none !important;
}

.accordion p {
    margin: 0;
}

.btn.btn-link.text-dark.font-weight-bold.text-uppercase.collapsible-link.collapsed:focus:focus-visible:focus-within {
    outline: none !important;
    box-shadow: inherit !important;
}

.btn.btn-link.text-dark.font-weight-bold.text-uppercase.collapsible-link.collapsed:focus:focus-visible {
    box-shadow: inherit !important;
}

.btn.btn-link.text-dark.font-weight-bold.text-uppercase.collapsible-link:focus {
    box-shadow: inherit !important;
}

.button-check-close {
    position: absolute;
    right: 90px;
    top: 31px;
}

    .button-check-close ul {
        display: inline-block;
        margin: 0;
        padding: 0;
    }

        .button-check-close ul li {
            margin: 0 0 0 4px;
            display: inline-block;
            width: auto;
            line-height: inherit;
            height: auto;
        }

            .button-check-close ul li img {
                width: 23px;
            }

    .button-check-close .close-icon img {
        width: 20px;
    }

.select2-container {
    margin: 0 0 20px 0 !important;
}

.counter {
    padding: 7px !important;
    padding-right: 25px !important;
    font-family: 'Inter', sans-serif;
    font-size: 16px !important;
    font-weight: 400 !important;
}

.select2-search--inline::after {
    content: '';
    position: absolute;
    right: 10px;
    background: url(../ReportTranslator/images/grey.png);
    width: 13px;
    height: 8px;
    background-size: cover;
    top: 18px;
}

.select2-selection--multiple {
    height: 48px !important;
    width: auto !important;
    margin: 0px !important;
    font-size: 16px;
    border: 1px solid #C5C5C5 !important;
    border-radius: 5px;
    color: #1D1D1B;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #ee7d07 !important;
    color: white;
}

.selection {
    margin: 0px !important;
}

.select2-results ul li {
    font-family: 'Inter', sans-serif;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1;
    text-transform: none;
    color: #1D1D1B;
}


/***view-ra-details-css***/

.view-ra-details-saction {
    display: inline-block;
    width: 100%;
}

    .view-ra-details-saction h2 {
        color: #1D1D1B;
        font-size: 20px;
        font-weight: 700;
        width: 100%;
        display: inline-block;
        margin: 0;
    }

.\31 2_box-saction {
    display: inline-block;
    width: 100%;
    margin: 20px 0 0 0;
    padding: 29px 0 0 0;
    border-top: 1px solid #E1E1E1;
}

.box_12_inner {
    display: inline-block;
    background-color: #fff;
    width: 100%;
    padding: 32px 10px;
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.10);
    border-radius: 11px;
    border-bottom: 5px solid #EE7D07;
    position: relative;
}

    .box_12_inner .icon-left-box {
        float: left;
        width: auto;
        margin: 0 10px 0 0;
    }

    .box_12_inner .text-left-box {
        float: left;
        width: 70%;
    }

        .box_12_inner .text-left-box span {
            color: #1D1D1B;
            font-size: 16px;
            font-weight: 700;
            width: 100%;
            display: inline-block;
        }

        .box_12_inner .text-left-box p {
            display: inline-block;
            width: 100%;
            margin: 0;
            color: #585858;
            font-size: 14px;
            font-weight: 400;
        }

.closed-text {
    position: absolute;
    right: 17px;
    top: 7px;
    color: #585858;
    font-size: 14px;
    font-weight: 400;
}

.rad-details-tab-saction {
    display: inline-block;
    width: 100%;
    margin: 25px 0 0 0;
}

    .rad-details-tab-saction ul#tabs-nav {
        list-style: none;
        margin: 0;
        padding: 0;
        background-color: #fff;
        border-radius: 10px 0 0 0;
    }

        .rad-details-tab-saction ul#tabs-nav li {
            display: inline-block;
            margin: 0;
        }

    .rad-details-tab-saction #tabs-nav li a {
        text-decoration: none;
        color: #1C1C1A;
        font-size: 12px;
        font-weight: 700;
        padding: 16px 6px;
        display: inline-block;
        border-bottom: 2px solid #fff;
        text-transform: capitalize;
    }
.search-new {
    float: right;
    width: 100%;
    text-align: right;
}
    .search-new .search-bx {
        float: right;
    }
    .rad-details-tab-saction ul#tabs-nav li.active a {
        color: #EE7D07;
        border-color: #EE7D07;
    }

    .rad-details-tab-saction .tab-content {
        padding: 0;
        background-color: transparent;
        display: inline-block;
        width: 100%;
        margin: 25px 0 70px 0;
    }

    .rad-details-tab-saction .tabs {
        width: 100%;
        display: inline-block;
    }

.first-tab-box_1 {
    display: inline-block;
    width: 100%;
}

.first-tab-box_1_inner {
    display: inline-block;
    background-color: #fff;
    width: 100%;
    border-radius: 11px;
    border: 1px solid #E0E0E0;
    box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
    padding: 12px;
}

    .first-tab-box_1_inner h3 {
        display: inline-block;
        width: 100%;
        margin: 0;
        color: #1C1C1A;
        font-size: 18px;
        font-weight: 700;
        border-bottom: 1px solid #E0E0E0;
        padding: 0 0 12px 0;
    }

    .first-tab-box_1_inner ul {
        margin: 0px 0 0 0;
        padding: 0;
        width: 100%;
    }

        .first-tab-box_1_inner ul li {
            display: inline-block;
            width: 100%;
            border-bottom: 1px dashed #E0E0E0;
            padding: 10px 0;
        }

            .first-tab-box_1_inner ul li .left-span {
                float: left;
                width: 60%;
                color: #585858;
                font-size: 13px;
                font-weight: 400;
                text-transform: capitalize;
            }

            .first-tab-box_1_inner ul li .right-span {
                float: right;
                width: 40%;
                text-align: right;
                font-size: 13px;
                font-weight: 600;
                color: #1C1C1A;
                text-transform: capitalize;
            }

            .first-tab-box_1_inner ul li:last-child {
                border-bottom: none;
            }

    .first-tab-box_1_inner h3 img {
        margin: 0 7px 0 0;
    }

.first-tab-box_2_inner {
    padding-bottom: 65px;
}

    .first-tab-box_2_inner .right-span {
        width: 60% !important;
    }

    .first-tab-box_2_inner .left-span {
        width: 40% !important;
    }

.car-box-image {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 8px 0 0 0;
}

.secend-tab-box_1 {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    border-radius: 11px;
    box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #E0E0E0;
    margin-bottom: 25px;
}

    .secend-tab-box_1 h3 {
        display: inline-block;
        width: 100%;
        margin: 0;
        color: #1C1C1A;
        font-size: 18px;
        font-weight: 700;
        padding: 12px;
    }

        .secend-tab-box_1 h3 img {
            margin: 0 5px 0 0;
        }

.table-tab {
    display: inline-block;
    width: 100%;
}

.table-scroll {
    display: inline-block;
    width: 100%;
    padding-bottom: 20px;
    overflow: scroll;
    overflow-y: inherit;
}

.table-tab table {
    width: 100%;
}

        .table-tab table th {
            background-color: #1C1C1A;
            padding: 15px 13px;
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
        }

        .table-tab table td {
            display:;
            border-bottom: 1px solid #DEDEDE;
            padding: 12px 12px;
            color: #737373;
            font-size: 13px;
            font-weight: 400;
            white-space: nowrap;
        }

            .table-tab table td .paid {
                display: inline-block;
                background-color: #BBFFCA;
                padding: 6px 10px;
                border-radius: 6px;
                color: #00BF08;
                font-size: 13px;
                font-weight: 600;
            }

            .table-tab table td .pending {
                display: inline-block;
                background-color: #FDD4D4;
                padding: 6px 10px;
                border-radius: 6px;
                color: #F64A4B;
                font-size: 13px;
                font-weight: 600;
            }

            .table-tab table td .refunded {
                display: inline-block;
                background-color: #FFE2CC;
                padding: 6px 10px;
                border-radius: 6px;
                color: #FF7A16;
                font-size: 13px;
                font-weight: 600;
            }

.paginaction-table {
    display: inline-block;
    width: 100%;
    margin: 20px 0 0 0;
}

    .paginaction-table p {
        margin: 0;
        color: #4A4A4F;
        font-size: 13px;
        font-weight: 400;
        width: 100%;
    }

.paginaction-table-right {
    display: inline-block;
    width: 100%;
    text-align: right;
}

    .paginaction-table-right ul {
        margin: 0;
        padding: 0;
    }

        .paginaction-table-right ul li {
            display: inline-block;
            width: auto;
            margin: 0 0 0 10px;
        }

            .paginaction-table-right ul li a {
                display: inline-block;
                border: 1px solid #B8B8B8;
                width: 28px;
                height: 28px;
                text-align: center;
                line-height: 28px;
                border-radius: 6px;
                color: #000000;
                font-size: 13px;
                font-weight: 500;
            }

.paginaction-table {
    display: inline-block;
    width: 100%;
    margin: 20px 0 23px 0;
    padding: 0 23px;
}

.paginaction-table-right ul li .erow-icon {
    background-color: #F6F6F6;
    border-color: #F6F6F6;
}

.table-tab table td .form-group {
    display: block;
    margin-bottom: 0;
    float: left;
}

    .table-tab table td .form-group input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .table-tab table td .form-group label {
        position: relative;
        cursor: pointer;
    }

        .table-tab table td .form-group label::before {
            content: '';
            -webkit-appearance: none;
            background-color: transparent;
            border: 1px solid #B8B8B8;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 9px;
            width: 18px;
            height: 18px;
            border-radius: 3px;
        }

    .table-tab table td .form-group input:checked + label::after {
        content: '';
        display: block;
        position: absolute;
        top: 3px;
        left: 7px;
        width: 5px;
        height: 12px;
        border: solid #FF7A16;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

.table-tab table th .form-group {
    display: block;
    margin-bottom: 0;
    float: left;
}

    .table-tab table th .form-group input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .table-tab table th .form-group label {
        position: relative;
        cursor: pointer;
    }

        .table-tab table th .form-group label::before {
            content: '';
            -webkit-appearance: none;
            background-color: #fff;
            border: 1px solid #fff;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 9px;
            width: 18px;
            height: 18px;
            border-radius: 3px;
        }

    .table-tab table th .form-group input:checked + label::after {
        content: '';
        display: block;
        position: absolute;
        top: 3px;
        left: 7px;
        width: 5px;
        height: 12px;
        border: solid #FF7A16;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

.d-saction-tow {
    display: inline-block;
    width: 100%;
    margin: 23px 0 0 0;
}

.green-box {
    background-color: #22CB1E;
    border-radius: 14px;
    box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
    display: inline-block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding: 0 33px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.name-ic-box {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
    margin: 21px 0 0 0;
    border-radius: 14px;
    border-left: 3px solid #EE7D07;
    padding: 15px;
}

    .name-ic-box .name-id-left {
        float: left;
        width: 50%;
        text-align: left;
    }

.name-id-right {
    float: right;
    text-align: right;
    width: 50%;
}

.name-ic-box .name-id-left ul {
    margin: 0;
    padding: 0;
}

.name-ic-box li {
    display: inline-block;
    width: 100%;
    margin: 0 0 7px 0;
}

    .name-ic-box li em {
        display: inline-block;
        font-style: normal;
        color: #1D1D1B;
        font-size: 18px;
        font-weight: 600;
        width: 80px;
    }

    .name-ic-box li span {
        color: #1D1D1B;
        font-size: 18px;
        font-weight: 600;
        width: auto;
        display: inline-block;
    }

    .name-ic-box li:last-child {
        margin: 0;
    }

.name-id-right span {
    display: inline-block;
    width: 88px;
    background-color: #F5F5F5;
    border-radius: 11px;
    text-align: center;
    color: #1D1D1B;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
}

.total-am-box-all {
    display: inline-block;
    width: 100%;
    margin: 21px 0 0 0;
    background: url(../img/bg-1.png);
    background-size: cover;
    background-position: 100%;
    border-radius: 21px;
    padding: 14px 18px;
}

.total-am-box {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    border-radius: 21px;
    padding: 6px 5px;
}

    .total-am-box .amount-icon-box {
        float: left;
        background-color: #EE7D07;
        width: 76px;
        height: 80px;
        border-radius: 13px;
        text-align: center;
        line-height: 80px;
    }

.amount-text-box {
    float: right;
    width: 68%;
    padding: 3px 0 0 0;
}

    .amount-text-box span {
        display: inline-block;
        width: 100%;
        color: #1D1D1B;
        font-size: 20px;
        font-weight: 700;
    }

    .amount-text-box p {
        margin: 5px 0 0 0;
        width: 100%;
        color: #585858;
        font-size: 14px;
        font-weight: 400;
        line-height: 15px;
    }

.rental-agreements-table {
    display: inline-block;
    width: 100%;
    margin: 20px 0 0 0;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
}

    .rental-agreements-table h2 {
        display: inline-block;
        width: 100%;
        color: #1D1D1B;
        font-size: 18px;
        font-weight: 600;
        padding: 13px 20px 0;
    }

.rental-table {
    display: inline-block;
    width: 100%;
    padding: 12px 5px;
}

    .rental-table table {
        width: 100%;
    }

    .rental-table th {
        background-color: #000;
        color: #EEEEEE;
        font-size: 13px;
        font-weight: 500;
        padding: 10px 16px;
    }

        .rental-table th:last-child {
            border-radius: 0px 3px 3px 0px;
        }

        .rental-table th:first-child {
            border-radius: 3px 0 0 3px;
        }

    .rental-table td {
        padding: 14px 16px;
        color: #737373;
        font-size: 13px;
        font-weight: 400;
    }

.favorite-vehicles {
    display: inline-block;
    width: 100%;
    margin: 21px 0 0 0;
}

.favorite-vehicles-box {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 17px 20px;
}

    .favorite-vehicles-box h2 {
        margin: 10px 0 0 0;
        width: 50%;
        color: #1D1D1B;
        font-size: 18px;
        font-weight: 600;
        float: left;
    }

.favorite-vehicles-inner {
    display: inline-block;
    width: 100%;
    border-top: 1px solid #DEDEDE;
    margin: 15px 0 0 0;
    padding: 16px 0 0 0;
}

.favorite-vehicles-inner-left {
    float: left;
    width: 50%;
}

    .favorite-vehicles-inner-left img {
        width: 100%;
        border-radius: 6px;
        height: 143px;
    }

.favorite-vehicles-inner-right {
    float: right;
    width: 50%;
    padding: 0 0 0 20px;
}

    .favorite-vehicles-inner-right span {
        display: inline-block;
        width: 100%;
        color: #737373;
        font-size: 14px;
        font-weight: 400;
        line-height: 14px;
    }

    .favorite-vehicles-inner-right h4 {
        color: #000000;
        font-size: 14px;
        font-weight: 700;
        margin: 4px 0;
    }

.das-line {
    border: 1px dashed #000;
    display: inline-block;
    width: 45px;
}

.favorite-box-left {
    float: left;
    width: 50%;
}

.favorite-box-right {
    float: right;
    width: 50%;
    padding: 48px 0 0 20px;
}

    .favorite-box-right span {
        display: inline-block;
        width: 100%;
        color: #737373;
        font-size: 14px;
        font-weight: 400;
    }

    .favorite-box-right h4 {
        width: 100%;
        display: inline-block;
        color: #000000;
        font-size: 14px;
        font-weight: 700;
        margin: 0;
    }

.favorite-right .selectDropdown.toggle {
    width: 405px !important;
    right: 0 !important;
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px !important;
    margin: 3px 0 0 0 !important;
    overflow: scroll !important;
    height: 260px !important;
    overflow-x: inherit !important;
}

    .favorite-right .selectDropdown.toggle .option:hover {
        background-color: #EE7D07;
        color: #fff;
    }

    .favorite-right .selectDropdown.toggle .option {
        color: #737373;
        font-size: 14px;
        font-weight: 400;
    }

.favorite-vehicles .select {
    position: relative;
    margin-bottom: 0;
    width: 36%;
    border: 1px solid #DEDEDE;
    float: right;
    border-radius: 5px;
}

    .favorite-vehicles .select .selectBtn {
        background: var(--bg1);
        padding: 10px;
        box-sizing: border-box;
        border-radius: 3px;
        width: 100%;
        cursor: pointer;
        position: relative;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background: #fff;
        color: #737373;
        font-size: 13px;
        font-weight: 500;
    }

        .favorite-vehicles .select .selectBtn:after {
            content: "";
            position: absolute;
            top: 45%;
            right: 15px;
            width: 6px;
            height: 6px;
            -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
            border-right: 2px solid #666;
            border-bottom: 2px solid #666;
            transition: 0.2s ease;
        }

        .favorite-vehicles .select .selectBtn.toggle {
            border-radius: 3px 3px 0 0;
        }

            .favorite-vehicles .select .selectBtn.toggle:after {
                -webkit-transform: translateY(-50%) rotate(-135deg);
                transform: translateY(-50%) rotate(-135deg);
            }

    .favorite-vehicles .select .selectDropdown {
        position: absolute;
        top: 100%;
        width: 100%;
        border-radius: 0 0 3px 3px;
        overflow: hidden;
        background: var(--bg1);
        border-top: 1px solid #eee;
        z-index: 1;
        background: #fff;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
        -webkit-transform-origin: top center;
        transform-origin: top center;
        visibility: hidden;
        transition: 0.2s ease;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    }

        .favorite-vehicles .select .selectDropdown .option {
            padding: 10px;
            box-sizing: border-box;
            cursor: pointer;
        }

        .favorite-vehicles .select .selectDropdown.toggle {
            visibility: visible;
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
        }

.select-dropdown__list {
    scrollbar-width: thin !important;
    scrollbar-color: #ff7f00 #b0b7c4 !important;
}

.list-box-all {
    display: inline-block;
    width: 100%;
    margin: 21px 0 0 0;
}

.list-inner-box {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
}

    .list-inner-box h2 {
        display: inline-block;
        width: 100%;
        margin: 0;
        color: #1D1D1B;
        font-size: 18px;
        font-weight: 600;
        padding: 12px 20px 0;
    }

.list-table {
    display: inline-block;
    width: 100%;
    margin: 12px 0 0 0;
    padding: 5px;
}

    .list-table table {
        width: 100%;
    }

        .list-table table th {
            background-color: #1D1D1B;
            color: #fff;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
        }

            .list-table table th:first-child {
                border-radius: 3px 0 0 3px;
            }

            .list-table table th:last-child {
                border-radius: 0px 3px 3px 0px;
            }

        .list-table table td {
            color: #737373;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 400;
            white-space: nowrap;
        }

.all-left-box {
    display: inline-block;
    background-color: #fff;
    box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 100%;
    border-radius: 14px;
}

.left-box-one {
    display: inline-block;
    width: 100%;
    position: relative;
    text-align: center;
}

    .left-box-one img {
        width: 100%;
        border-radius: 14px 14px 0 0;
    }

.profileuser-box {
    width: 140px;
    height: 140px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    margin: 36px auto 0;
    top: 0;
}

.left-box-one h2 {
    display: inline-block;
    color: #1D1D1B;
    width: 100%;
    margin: 85px 0 0 0;
    font-size: 20px;
    font-weight: 600;
}

.left-box-one p {
    margin: 0;
    display: inline-block;
    width: 100%;
    color: #737373;
    font-size: 16px;
    font-weight: 400;
}

.left-box-tow {
    padding: 25px 5px;
    display: inline-block;
    width: 100%;
}

    .left-box-tow span {
        display: inline-block;
        width: 100%;
        background-color: #F5F5F5;
        border-radius: 3px;
        padding: 10px;
        color: #1D1D1B;
        font-size: 16px;
        font-weight: 600;
    }

    .left-box-tow ul {
        margin: 20px 0;
        padding: 0 10px;
    }

        .left-box-tow ul li {
            display: inline-block;
            width: 100%;
            margin: 0 0 20px 0;
            color: #1D1D1B;
            font-size: 13px;
            font-weight: 500;
        }

            .left-box-tow ul li em {
                display: inline-block;
                width: 100%;
                font-style: normal;
                color: #737373;
                font-size: 14px;
                font-weight: 400;
            }

.name-ic-box-inner {
    border: 1px solid #DEDEDE;
    border-radius: 11px;
    padding: 10px;
    background-color: #F5F5F5;
    display: inline-block;
    width: 100%;
    position: relative;
}

    .name-ic-box-inner .icon-name-bx {
        float: left;
        background-color: #f5eee7;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        text-align: center;
        line-height: 54px;
    }

    .name-ic-box-inner .text-name-bx {
        float: right;
        width: 70%;
    }

        .name-ic-box-inner .text-name-bx span {
            color: #1D1D1B;
            font-size: 18px;
            font-weight: 600;
            width: 100%;
            display: inline-block;
        }

        .name-ic-box-inner .text-name-bx p {
            margin: 0;
            color: #585858;
            font-size: 14px;
            font-weight: 400;
            width: 100%;
            display: inline-block;
        }

.name-ic-box .col-md-3 {
    width: 22%;
}

    .name-ic-box .col-md-3:last-child {
        width: 12%;
    }

.last-box-repeated .icon-name-bx {
    width: 100%;
    height: auto;
    background-color: transparent;
    border-radius: 0;
    line-height: inherit;
}

.last-box-repeated .text-name-bx {
    width: 100%;
    text-align: center;
}

    .last-box-repeated .text-name-bx p {
        font-size: 12px;
        line-height: 12px;
        margin: 2px 0 0 0;
    }

.name-ic-box-inner .trigger.modal-pop {
    position: absolute;
    right: 15px;
    top: 2px;
    background-color: transparent;
    padding: 0;
    border: none;
}

.name-ic-box-inner .modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.popup-modle .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 0 0;
    width: 1257px;
    border-radius: 0.5rem;
}

.popup-header h1 {
    margin: 0;
    color: #1D1D1B;
    font-size: 18px;
    font-weight: 600;
}

.popup-header {
    padding: 13px 20px;
    position: relative;
    width: 100%;
    display: inline-block;
}

    .popup-header .close-button {
        float: right;
        width: 24px;
        text-align: center;
        cursor: pointer;
        border-radius: 50%;
        background-color: #fff !important;
        border: 1px solid #1D1D1B;
        height: 24px;
        color: #1D1D1B;
        font-family: inherit !important;
        line-height: 20px;
        font-size: 22px;
    }

.popup-modle .rental-table {
    padding: 0 5px;
}

.popup-body table td {
    border-bottom: 1px solid #dcdcdc;
}

.paginaction-table-right ul li a:hover {
    background-color: #EE7D07;
    color: #fff;
    border-color: #EE7D07;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.rental-agreements-popup h2 {
    float: left;
    width: 50%;
}

.rental-popup {
    float: right;
    width: 50%;
    text-align: right;
    padding: 11px 12px 0;
}

    .rental-popup .trigger2.modal-pop {
        padding: 0;
        background-color: transparent;
        border: none;
        color: #EE7D07;
        font-size: 13px;
        font-weight: 500;
    }



.sticky-top {
    position: sticky;
    top: 0;
    z-index: 999;
}

.modal2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 999;
}

.popup-modle .modal-content2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 0 0;
    width: 1257px;
    border-radius: 0.5rem;
}

.popup-header .close-button2 {
    float: right;
    width: 24px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    background-color: #fff !important;
    border: 1px solid #1D1D1B;
    height: 24px;
    color: #1D1D1B;
    font-family: inherit !important;
    line-height: 20px;
    font-size: 22px;
}


.show-modal2 {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.vehicles-drop {
    width: 360px !important;
    right: 0;
    margin: 7px 0 0 0 !important;
}

    .vehicles-drop table {
        width: 100%;
    }

        .vehicles-drop table th {
            background-color: #1D1D1B;
            padding: 10px;
            font-size: 13px;
            color: #fff;
            font-weight: 500;
        }

            .vehicles-drop table th:first-child {
                border-radius: 7px 0 0 7px;
            }

            .vehicles-drop table th:last-child {
                border-radius: 0px 7px 7px 0px;
            }

    .vehicles-drop a {
        color: #737373;
        font-size: 13px;
        font-weight: 400;
        padding: 10px 10px;
        display: inline-block;
        width: 100%;
    }

        .vehicles-drop a i {
            font-style: normal;
            float: right;
        }

        .vehicles-drop a em {
            font-style: normal;
        }

    .vehicles-drop ul {
        padding: 0;
        margin: 0;
        display: inline-block;
        width: 100%;
    }

        .vehicles-drop ul li {
            display: flex;
            width: 100%;
        }

    .vehicles-drop a span {
        width: 60%;
        display: inline-block;
    }

.first-tab-box_3_inner {
    padding-bottom: 40px;
}







.tab_block_main .tab_content {
    display: inline-block !important;
    width: 100%;
}

    .tab_block_main .tab_content .tab_block {
        display: none;
    }

        .tab_block_main .tab_content .tab_block.active {
            display: block;
        }

.tab_block_main .tab_options {
    display: inline-block;
    padding: 0;
    width: 100%;
}

    .tab_block_main .tab_options > li {
        display: inline-block;
        color: #333333;
        line-height: normal;
        list-style: none;
    }
.tabb-inner {
    background-color: #fff;
    border-radius: 7px;
    padding: 20px;
    box-shadow: 0 0 6px 0 #dcdcdcdc;
}

.tab_block_main .tab_options > li a {
    color: #333333;
    text-decoration: none;
    text-align: center;
    border-bottom: 0;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    display: block;
    font-size: 16px;
    padding: 10px 20px;
}
    .tab_block_main .tab_options > li a.active, .tab_block_main .tab_options > li a:hover {
        color: #EE7D07;
        background-color: #fff;
        border-bottom: 1px solid #EE7D07;
    }
