@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

:root {
    --dark-gray: #707070;
    --light-gray: #8e8e8e;
    --dark-white: #f2f3f4;
    --red: #ff0015;
    --blue: #2fb0ac;
    --green: #08a551;
    --orange: #fe8b00;
}

* {
    box-sizing: border-box;
    margin: 0 auto;
    font-family: "Cairo", sans-serif;
    font-weight: 600;
    font-style: normal;
}

body {
    width: 100%;
    min-height: 100vh;
    background: rgb(59, 65, 65);
    background: linear-gradient(180deg,
            rgba(59, 65, 65, 1) 0%,
            rgba(117, 129, 129, 1) 100%);
}

.all-content {
    width: 100%;
    position: relative;
    min-height: 100vh;
}

/* Start Side-bar */
.side-bar {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    width: 130px !important;
    height: 100vh;
    background: rgb(59, 65, 65);
    background: linear-gradient(180deg,
            rgba(59, 65, 65, 1) 0%,
            rgba(117, 129, 129, 1) 100%);
    /* overflow: scroll; */
    /* max-height: 100vh; */
    padding: 5px 0 0;

}

.side-logo {
    display: flex;
    justify-content: end;
    align-items: end;
    width: 120px;
}

.side-logo-img {
    width: 70px;
    height: 70px;
}

.side-menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    padding: 2px 0px;
    overflow-y: scroll;
    gap: 5px;
}

.side-bar ul {
    width: 100%;
}

.side-menu li a {
    text-align: center;
    color: white;
    text-decoration: none;
}

.side-menu li {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    color: white;
    height: 55px;
    padding: 10px 0px;
}

.side-bar li:hover {
    cursor: pointer;
}

.menu-text {
    text-align: center;
    font-weight: 300;
    font-size: 13px;
    width: 100%;
}

.active-sidebar {
    position: relative;
    height: 100px;
    width: 325px;
    background-color: #fff;
    color: var(--blue) !important;
    border-radius: 0px 25px 25px 0;
}

.active-sidebar::before {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: -50px;
    left: 0;
    height: 50px;
    width: 25px;
    border-top-left-radius: 25px;
    box-shadow: 0 -25px 0 0 #fff;
}

.active-sidebar::after {
    content: "";
    position: absolute;
    background-color: transparent;
    top: -50px;
    left: 0;
    height: 50px;
    width: 25px;
    border-bottom-left-radius: 25px;
    box-shadow: 0 25px 0 0 #fff;
}

/* End Side-bar */

.content {
    background-image: url(../assets/images/bg.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: calc(100% - 130px);
    margin: 0 auto;
    z-index: 98;
    min-height: 100%;
    position: absolute;
    padding-top: 20px;
    border-radius: 0px 30px 0px 0px;
}

/* Start Index */
.navbar {
    display: flex;
    width: 100%;
    position: relative;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    padding: 0px 10px 0px 10px;
}

.navbar-logout-settings {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
}

.logout-btn-box {
    width: 43px;
    height: 35px;
    border: 4px solid var(--blue);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-setting {
    height: 35px;
    background-color: #d3c5c583;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    width: 149px;
    overflow: hidden;
}

.navbar-setting-arrow {
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 20px;
}

.navbar-setting-branch {
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.number-of-branch {
    background-color: var(--blue);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.name-of-branch {
    color: var(--blue);
}

.navbar-company-details {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-direction: column;
    font-size: 10px;
}

.home-search-input-all {
    width: 100%;
}

.home-search-input-container {
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    border-radius: 12px;
    overflow: hidden;
}

.home-search-input {
    width: 250px;
    border: none;
    text-align: right;
    outline: none;
}

.home-search-input::placeholder {
    text-align: right;
}

.car-content-box {
    background: rgb(59, 65, 65);
    background: linear-gradient(0deg,
            rgba(59, 65, 65, 1) 0%,
            rgba(117, 129, 129, 1) 100%);
    max-width: 350px;
    border-radius: 25% 12% 12% 12%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    text-align: right;
    color: #fff;
    font-size: 10px;
    padding: 20px;
}

.car-content-box .div1 {
    width: 50%;
    height: 100%;
    padding-top: 10px;
}

.car-content-box .div2 {
    width: 50%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.car-content-box .div3 {
    width: 100%;
    height: 50%;
}

.car-content-box .div4 {
    width: 100%;
    height: 50%;
}

.car-active {
    background-color: #fff;
    color: #2fb0ac;
    border-radius: 20px;
    width: 80px;
    height: 30px;
    position: relative;
}

.car-active::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: #2fb0ac;
}

.car-active p {
    margin-right: 35px;
    padding-top: 7px;
}

.div3 {
    padding-top: 40px;
}

.div3 p {
    font-size: 15px;
}

.div3 span {
    display: flex;
    flex-direction: row-reverse;
}

.div3 i,
.ydyehe {
    width: 70px;
    height: 32px;
    background-color: #fff;
    color: #2fb0ac;
    border-radius: 0px 10px 0px 10px;
    font-size: 20px;
    text-align: center;
    padding-top: 5px;
    margin-left: 10px;
}

.ydyehe {
    font-size: 10px;
}

.div4 img {
    margin-top: 40px;
    width: 100%;
}

.buttons {
    margin-top: 10px;
    margin-left: 20%;
    margin-right: 20%;
    display: flex;
    justify-content: center;
}

.buttons a {
    background-color: #2fb0ac;
    color: #fff;
    padding: 10px 15px;
    border-radius: 9px;
}

.circle-square {
    width: 100px;
    height: 100px;
    background-color: #2fb0ac;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid white;
}

.fa-plus {
    font-size: 48px;
    color: white;
}

.un-active-container {
    background: #d3c5c548;
    color: #758181;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 5px 15px;
    border-radius: 5px;
    flex-direction: row-reverse;
}

.deactive-account {
    color: var(--blue);
}

/* End Index  */
/* Start Contact Us */
.contact-us-all-content {
    width: 100%;
    min-height: 98vh;
}

.contact-us-all-content h2 {
    color: var(--blue);
    text-align: center;
    margin: 60px;
}

.contact-us-min {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.contact-us-min-details {
    width: 60%;
    background: var(--blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    border-radius: 12px;
    padding: 20px 0px;
    text-align: right;
}

.contact-us-icon-container {
    background-color: #ffffff49;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 120px;
}

.contact-us-form-input::placeholder {
    color: var(--blue);
}

.contact-us-form-input {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    border-radius: 12px;
    padding: 20px 0px;
    border: 0px;
    outline: none;
    padding: 10px;
    text-align: right;
}

.contact-us-form-btn {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--blue);
    color: white;
    border-radius: 25px;
    padding: 10px 0px;
    border: 0px;
    outline: none;
    text-align: center;
}

/* End Contact Us */
/* Start Orders */
.order-all-content {
    width: 100%;
}

.order-all-content h2 {
    color: var(--blue);
    text-align: center;
    margin: 80px;
}

.order-min {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.contentt {
    width: 80%;
}

.order-min-details {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    border-radius: 12px;
    padding: 20px 0px;
    text-align: right;
}

.order-icon-container {
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 120px;
}

.order-type-btn {
    background-color: transparent;
    color: var(--blue);
    padding: 5px 20px;
    border-radius: 50px;
    border: 0px;
}

.clicked {
    background-color: var(--blue);
    color: #ffffff;
}

.order-card {
    background-color: #ffffff;
    border: 0px;
    border-radius: 12px;
    display: flex;
    width: 90%;
    padding: 40px 50px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.order-details {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.order-person-data {
    text-align: right;
    font-size: 12px;
    padding: 10px 0px;
}

.order-car-data {
    flex-direction: row-reverse;
    text-align: right;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid black;
}

.order-car-data-key-value {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 30px;
}

.order-car-data-key {
    color: var(--light-gray);
}

.order-price-details {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
}

.order-car-data-licen {
    width: 270px;
    height: 130px;
    border-radius: 12px;
    background-color: var(--light-gray);
}

.order-text-blue {
    color: var(--blue);
}

.order-actions-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.order-actions-btn {
    width: 150px;
    height: 40px;
    border-radius: 12px;
    border: 0px;
}

.order-actions-btn-chat {
    background-color: var(--blue);
    color: white;
}

.order-actions-btn-cancel {
    background-color: #758181;
    color: white;
}

.order-price-details-key-value {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-direction: row-reverse;
}

/* End Orders */
/* Start Dashboard */
.state-item {
    background-color: #fff;
    border-radius: 15px;
    text-align: right;
    width: 90%;
    max-width: 290px;
}

.state-body {
    display: flex;
    flex-direction: row-reverse;
}

.states-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 80%;
    gap: 10px;
}

.state-item-1 {
    width: 50%;
}

.state-item-1 h2 {
    font-size: 28px;
}

.red {
    color: red;
}

.green {
    color: #2fb0ac;
}

.state-item-2 {
    width: 50%;
    text-align: center;
}

.state-item h3 {
    font-size: 20px;
    color: #777777;
}

.charts {
    padding: 20px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    gap: 15px;
    width: 80%;
    flex-direction: row-reverse;
}

.chart1,
.chart2,
.rating,
.cars-table,
.trans-table {
    text-align: right;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.trans-table {
    margin: 0 auto;
    width: 90%;
}

.rating {
    padding-bottom: 5px;
}

.rating h4,
.cars-table h5 {
    margin-top: 8px;
    font-size: 20px;
    color: #777777;
}

.rate-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    padding: 5px;
    border-radius: 9px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.rate-data {
    padding: 0;
    width: 100%;
    margin-right: 9px;
}

.rate-data p {
    margin: 0;
    font-size: 12px;
    color: #777777;
}

.stars {
    color: #777;
}

.checked {
    color: gold;
}

.cars-table {
    padding: 10px;
}

.table {
    font-size: 13px;
    color: #777;
    margin: 5px;
}

.badge-success {
    background-color: #2fb0ac;

    border-radius: 10px;
}

/* End Dashboard */
/* Start Language  */
.language-all-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.lang-options-container {
    font-size: 40px;
    font-weight: 600;
}

.lang-options-container a {
    text-decoration: none;
}

.lang-option1 {
    color: var(--blue);
}

.lang-option2 {
    color: #fff;
}

/* End Language */
/* Start About us */

.about-us-all-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.about-us-container {
    width: 60%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-direction: column;
}

.about-us-sub-key-car {
    color: white;
    font-size: 30px;
}

.about-us-company-name {
    font-size: 25px;
    color: var(--blue);
}

.about-us-sub-head {
    font-size: 17px;
    font-weight: 500;
    color: white;
}

.about-us-sub-parag {
    font-size: 12px;
    color: white;
}

/* End About Us */

/* Start Message */
.message-all-content {
    width: 100%;
    height: 100%;
}

.message-all-content h2 {
    color: var(--blue);
    text-align: center;
    margin: 80px;
}

.message-min {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}

.message-min-details {
    width: 60%;
    background: white;
    display: flex;
    flex-direction: row-reverse;
    border-radius: 12px;
    padding: 10px 30px;
}

.message-min-img {
    margin-left: auto;
    align-self: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.message-min-time {
    text-align: left;
    width: 100px;
    margin-right: auto;
    align-self: center;
    color: var(--light-gray);
    flex-shrink: 0;
}

.message-min-user-name {
    color: var(--blue);
}

.delete-message {
    width: 50px;
    height: 50px;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 100px;
    right: 200px;
}

/* End Message */
/* Start Notifications */
.notification-all-content {
    width: 100%;
}

.notification-all-content h2 {
    color: var(--blue);
    text-align: center;
    margin: 80px;
}

.notification-min {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
}

.notification-min-details {
    width: 60%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    border-radius: 12px;
    padding: 10px 0px;
    text-align: right;
}

.notification-min-time {
    text-align: left;
    width: 50%;
    color: var(--light-gray);
}

.notification-min-user-name {
    color: var(--blue);
}

.delete-notification {
    width: 50px;
    height: 50px;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 100px;
    right: 200px;
}

/* End Notifications */

/**** ADD CAR PAGE ****/
.page-title {
    color: var(--blue);
}

.image-input {
    border-radius: 15px;
    padding: 20px;
    background: #fff;
    box-shadow: -3px -3px 7px rgba(94, 104, 121, 0.377),
        3px 3px 7px rgba(94, 104, 121, 0.377);
}

.image-input input {
    display: none;
}

.image-input label {
    display: block;
    width: 45%;
    height: 45px;
    line-height: 40px;
    text-align: center;
    background: #2fb0ac;
    color: #fff;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    text-transform: Uppercase;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
}

.image-input img {
    width: 100%;
    display: none;

    margin-bottom: 30px;
}

.image-input p {
    color: #858585;
}

.add-car-select {
    background: url(https://i.ibb.co/wNMGnMk/image.png) no-repeat left 20px center;
    background-size: 20px;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    appearance: none;
    outline-width: 0;
    direction: rtl;
    border-radius: 25px;
    padding: 15px 10px 15px 10px;
    background-color: #fff;
    color: var(--light-gray);
    font-weight: 600;
}

.add-car-input {
    border: 1px solid #000;
    width: 100%;
    outline-width: 0;
    direction: rtl;
    border-radius: 25px;
    padding: 15px 10px 15px 10px;
    background-color: #fff;
    color: var(--light-gray);
    font-weight: 600;
}

.add-car-div {
    border: none;
    width: 100%;
    outline-width: 0;
    direction: rtl;
    border-radius: 25px;
    padding: 15px 10px 15px 10px;
    background-color: #fff;
    color: var(--light-gray);
    font-weight: 600;
}

.add-car-button {
    background-color: var(--blue);
    border-radius: 10px;
    color: #fff;
    border: none;
    padding: 5px 50px;
}

.fet {
    padding: 5px;
}

.fet input {
    height: 50px;
}

.header img {
    margin: 5px;
    width: 50px;
}

.select-container {
    margin: auto;
    max-width: 700px;
}

/**** LOGIN PAGE *****/

.login-logo {
    width: 30%;
}

.login-box {
    margin: auto;
}

.login-box h3 {
    margin: auto;
    color: #fff;
    font-weight: 600;
}

.login-box a {
    text-decoration: none;
    color: #fff;
}

.login-inputs {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.reg-input,
.login-inputs input {
    border: none;
    align-items: center;
    width: 90%;
    outline-width: 0;
    direction: rtl;
    border-radius: 25px;
    padding: 13px 15px 13px 10px;
    background-color: #fff;
    color: #8e8e8e;
    font-weight: 600;
}

.login-inputs ::placeholder {
    font-size: 12px;
}

.login-btn {
    width: 60%;
    background-color: #2fb0ac;
    border-radius: 10px;
    color: #fff;
    border: none;
    padding: 10px 50px;
}

.form-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    line-height: 150px;
}

.form-logo i {
    color: #2fb0ac;
    font-size: 48px;
}

.bank-info input::placeholder,
.reg-info input::placeholder {
    font-size: 10px;
}

.bank-info {
    margin: auto;
    margin-top: 50px;
    width: 90%;
    max-width: 700px;
    border-radius: 20px;
    background-color: #fff;
}

.bank-info input {
    border: none;
    border-bottom: 1px solid #8e8e8e;
    align-items: center;
    width: 90%;
    outline-width: 0;
    direction: rtl;
    padding: 13px 15px 13px 10px;
    background-color: #fff;
    color: #8e8e8e;
    font-weight: 600;
}

.privacy {
    margin-top: 30px;
    margin-bottom: 10px;
    direction: rtl;
}

.privacy p {
    display: inline;
}

.privacy input[type="checkbox"] {
    margin-left: 5px;
    vertical-align: middle;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #2fb0ac;
    border-radius: 3px;
}

.privacy input[type="checkbox"]:checked {
    background-color: #2fb0ac;
    color: #fff;
}

.reg-footer p {
    color: #fff;
}

.add-branch {
    margin: auto;
    align-items: right;
    justify-content: center;
    color: #2fb0ac;
    float: left;
}

.add-branch p {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    font-size: 17px;
    background-color: #2fb0ac;
    color: #fff;
    margin: auto;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    .bank-info {
        max-width: 620px;
    }
}

@media screen and (min-width: 1200px) {
    .bank-info {
        max-width: 740px;
    }
}

@media (max-width: 576px) {
    .side-bar {
        width: 80px;
    }

    .side-menu {
        width: 80px;
    }

    .side-logo {
        width: 80px;
    }

    .side-logo img {
        width: 65.2px;
        height: 63px;
    }

    #chart1 {
        width: 200px;
    }

    #chart2 {
        width: 200px;
    }

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

    .contact-us-min-details {
        width: 90%;
    }

    .contact-us-form-input {
        width: 90%;
    }

    .menu-text {
        font-size: 10px;
    }

    .about-us-container {
        width: 90%;
    }

    .about-us-sub-head {
        font-size: 15px;
    }

    .about-us-sub-parag {
        font-size: 9px;
    }

    .message-min-details {
        width: 80%;
    }

    .notification-min-details {
        width: 90%;
        padding: 10px 15px;
    }

    .notification-min-time {
        text-align: left;
        width: 40%;
        color: var(--light-gray);
    }

    .delete-notification {
        bottom: 50px;
        right: 100px;
    }

    .order-details {
        flex-direction: column;
    }

    .order-car-data {
        flex-direction: column;
    }

    .order-price-details {
        flex-direction: column;
    }

    .order-min {
        width: 100%;
    }

    .order-min-details {
        width: 100%;
    }

    .charts {
        padding: 20px;
        display: flex;
        justify-content: center;
        /* align-items: center; */
        gap: 34px;
        width: 80%;
        flex-direction: column-reverse !important;
    }

    .order-card {
        width: 100%;
        padding: 0px 0px;
        text-align: center;
    }

    .contentt {
        width: 95%;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .side-bar {
        width: 100px;
    }

    .charts {
        padding: 20px;
        display: flex;
        justify-content: center;
        /* align-items: center; */
        gap: 34px;
        width: 80%;
        flex-direction: column-reverse !important;
    }

    #chart1 {
        width: 300px;
    }

    #chart2 {
        width: 300px;
    }

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

    .contact-us-min-details {
        width: 90%;
    }

    .contact-us-form-input {
        width: 90%;
    }

    .about-us-container {
        width: 90%;
    }

    .about-us-sub-head {
        font-size: 15px;
    }

    .about-us-sub-parag {
        font-size: 10px;
    }

    .delete-message {
        bottom: 50px;
        right: 100px;
    }

    .notification-min-details {
        width: 90%;
        padding: 10px 15px;
    }

    .notification-min-time {
        text-align: left;
        width: 40%;
        color: var(--light-gray);
    }

    .delete-notification {
        bottom: 50px;
        right: 100px;
    }

    .order-details {
        flex-direction: column;
    }

    .order-car-data {
        flex-direction: column;
    }

    .order-price-details {
        flex-direction: column;
    }

    .order-min-details {
        width: 100%;
    }

    .order-card {
        width: 95%;
        padding: 10px 0px;
        text-align: center;
    }

    .contentt {
        width: 95%;
    }
}

@media (min-width: 992px) and (max-width: 1119px) {
    .side-bar {
        width: 100px;
    }

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

    .contact-us-min-details {
        width: 90%;
    }

    .contact-us-form-input {
        width: 90%;
    }

    .about-us-container {
        width: 90%;
    }

    .charts {
        padding: 20px;
        display: flex;
        justify-content: center;
        /* align-items: center; */
        gap: 34px;
        width: 80%;
        flex-direction: column-reverse !important;
    }

    .about-us-sub-head {
        font-size: 16px;
    }

    .about-us-sub-parag {
        font-size: 11px;
    }

    .delete-message {
        bottom: 50px;
        right: 100px;
    }

    .notification-min-details {
        width: 80%;
        padding: 10px 15px;
    }

    .notification-min-time {
        text-align: left;
        width: 40%;
        color: var(--light-gray);
    }

    .delete-notification {
        bottom: 50px;
        right: 100px;
    }

    .order-details {
        flex-direction: column;
    }

    .order-car-data {
        flex-direction: column;
    }

    .order-price-details {
        flex-direction: column;
    }

    .order-min {
        width: 60%;
    }

    .order-min-details {
        width: 90%;
    }

    .order-card {
        width: 95%;
        padding: 10px 0px;
        text-align: center;
    }

    .contentt {
        width: 90%;
    }
}

@media (min-width: 1400px) {
    .contact-us-min-details {
        padding: 35px 0px;
    }

    .contact-us-form-input {
        padding: 20px 20px;
    }

    .contact-us-form-btn {
        width: 400px;
    }

    .about-us-sub-head {
        font-size: 20px;
    }

    .about-us-sub-parag {
        font-size: 17px;
    }

    .notification-min-details {
        width: 60%;
        padding: 10px 0px;
    }

    .tables {
        width: 80%;
        margin: 0 auto;
    }

    .charts {
        display: flex;
        justify-content: center;
        gap: 34px;
        width: 80%;
        flex-direction: row-reverse;
    }

    #chart1 {
        width: 350px;
    }

    #chart2 {
        width: 350px;
    }
}

.dateAvailability {
    margin-bottom: 10px;
    position: relative !important;
}

.daterangepicker {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    right: unset !important;
}

.dateAvailability p {
    font-size: 13px;
    margin-bottom: 0;
}

.dateAvailability button {
    all: unset;
    cursor: pointer;
    font-size: 13px;
    margin-right: 1rem;
    transition: 0.3s;
    margin-bottom: 5px;
}

.dateAvailability button:active {
    scale: 0.9;
}


.dashboardPage {
    direction: rtl;
}

.statisticsCard {
    box-shadow: 0px 15px 20px #00000014;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem 10px;
    margin-bottom: 1.5rem;
}

.statisticsCard span {
    margin-bottom: 5px;
    display: block;
    color: #8E8E8E;
    font-weight: 400;
}

.statisticsCard h3 {
    color: var(--blue);
    margin-bottom: 5px;
    direction: ltr;
    text-align: right;
}

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

.statisticsCard .cardFoot span {
    margin: unset;
}

.statisticsCard .cardFoot span:last-child {
    direction: ltr;
}

.echartChar {
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.echartChar * {
    margin: unset;
}

#carsChart {
    width: 100%;
    aspect-ratio: 2/1;
}

#lineChart {
    width: 100%;
    aspect-ratio: 2/1;
}

.comments {
    width: 100%;
    aspect-ratio: 2/1;
    overflow: scroll;
    margin-top: 10px;
}

.comments::-webkit-scrollbar {
    display: none;

}

.comments .comment {
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 6px 6px 26px #EFEFF7;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 1rem;
}

.comments .comment .icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    background: #2c3e50;
    border-radius: 8px;
    display: grid;
    place-items: center;
}

.comments .comment .icon svg {
    color: #fff;
    width: 22px;
    height: 22px;
}

.comments .comment .data {
    width: 100%;
}

.comments .comment .data .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.comments .comment .data .top h6 {
    font-size: 16px;
    font-weight: 300;
    color: #8E8E8E;
}

.comments .comment .data .top span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 300;
    color: #8E8E8E;
}

.comments .comment .data .stars {
    display: flex;
    align-items: center;
    margin: 4px 0 1px;
}

.comments .comment .data .stars i {
    font-size: 12px;
}

.comments .comment .data p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    color: #8E8E8E;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ordersTable {
    width: 100%;
    margin-top: 10px;
    font-weight: 300;
}

.ordersTable thead {
    background-color: #fff;
    color: #8E8E8E;
    font-weight: 300;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1;

}

.table-body-wrapper {
    width: 100%;
    aspect-ratio: 2/1;
    overflow: scroll;
    margin-top: 10px;
}

.table-body-wrapper::-webkit-scrollbar {
    display: none;

}



.ordersTable tbody tr td {
    font-size: 14px;
    padding: 10px 0;

}

.badge {
    font-weight: 400;
}

.badge-pending {
    color: #212529;
    background-color: #ffc107;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
}

.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 111;
    background-color: #fff;
    padding: 10px;
    display: flex;
    direction: rtl;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #00000014;
    text-align: right;
    opacity: 0;
    animation: showNotification 0.5s ease forwards;
    animation-fill-mode: forwards;
}

@keyframes showNotification {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
    
}

.notification .icon {
    width: 40px;
    min-width: 40px;
    height: 40px;

    background: #ccc;
    border-radius: 6px;
    display: grid;
    place-items: center;
    margin-left: 10px;
}

.notification .icon svg {
    width: 20px;
    height: 20px;
}

.notification .data {
    width: 100%;
}

.notification .data h6 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.notification .data p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
}


.authBg{
    background-image: url('/assets/images/bg-flip.jpg');    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    background-attachment: fixed;
}

.regDataInfo {
    margin-top: 3rem;
}

.inputBox{
    margin-bottom: 1rem;
    text-align: right;
}
.inputBox label {
    margin-bottom: 10px;
}

.inputBox input, .inputBox select{
    width: 100% !important;
    box-sizing: border-box !important;
}
.inputBox .add-car-select{
    margin-right: unset !important;
}

.add-branch-view{
    display: grid;
    place-items: center;

}