html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Rubik";
    src: url("../Site_Fonts/Rubik-VariableFont_wght.ttf") format("truetype");
    src: url("../Site_Fonts/Rubik-VariableFont_wght.ttf") format("truetype");
}

body {
    font-family: 'Rubik';
    font-size: 15.5px;
    margin: 0;
    background-color: #F6F6F6;
    overflow-x: hidden;
}

.spinner,
.spinnerNew {
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: center;
    top: 0;
    height: 100%;
    z-index: 99999999;
    background-color: rgb(0 0 0 / 50%);
}

.spinnerNew {
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, #1b27356b 0%, #090a0f6b 100%);
}

.spinnerNew .wrapper {
    width: 100%;
}

.spinner img,
.spinnerNew img {
    width: auto;
    height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -70%);
    top: 50%;
    left: 50%;
    position: absolute;
}

.spinnerNew img {
    border-radius: 25px
}

.overMenu {
    overflow: hidden;
}


/* .overMenu::before {
    background-color: #33333359;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1001;
} */

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background-color: rgb(232 232 232);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #05885b;
    border-radius: 10px;
}

img {
    width: 100%;
    height: auto;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="time"],
textarea,
input,
select {
    display: block;
    height: 35px;
    width: 100%;
    background-color: #fbfbfb;
    outline: none;
    transition: all 0.1s ease-in-out 0s;
    appearance: none;
    border: 1px solid #e4e4e4;
    padding: 0 10px;
    color: #000;
    font-size: 15px;
    border-radius: 5px;
    font-family: inherit;
}

select {
    appearance: none;
    background-image: url('../Site_Images/arrowMenu.svg');
    background-position-y: 50%;
    background-position-x: 98%;
    background-repeat: no-repeat;
    background-size: 14px;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input:focus,
textarea:focus,
select:focus {
    border: 2px solid #f3f3f3;
    background-color: rgb(255, 255, 255);
    transition: all 0.1s ease-in-out 0s;
}

input[type="text"]::placeholder,
input[type="number"]::placeholder,
input[type="date"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input::placeholder,
select::placeholder,
textarea::placeholder {
    text-transform: capitalize;
    color: #213544;
    font-family: sans-serif;
}

input[type="checkbox"],
input[type="checkbox"]:checked {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border: 0px;
    width: 17px;
    background-color: transparent;
    outline: none;
    margin: 0px;
    margin-right: 5px;
    padding: 0;
    display: initial;
}

input[type="checkbox"]:before {
    content: "";
    width: 17px;
    height: 17px;
    border-radius: 5px;
    border: solid 3px #056946;
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
    display: flex;
}

input[type="checkbox"]:checked:before {
    background-color: #056946;
    background-image: url("../Site_Images/done.svg");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    border: solid 3px #056946;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

textarea {
    resize: none;
    height: 110px;
    padding: 10px;
}

form {
    width: 100%;
}

.input_group {
    margin-bottom: 10px;
    margin-top: 8px;
    position: relative;
    padding: 0 10px;
    height: fit-content;
}

.input_group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    text-align: left;
    text-transform: capitalize;
}

.requi#ff0000 {
    color: #ff0000;
    font-size: 13px;
    position: absolute;
}

.requi#ff0000_input input,
.requi#ff0000_input .select {
    border: 1px solid #ff0000 !important;
}

.required {
    color: #ff0000;
    font-size: 13px;
    margin-top: 0px;
    display: block;
    position: absolute;
}

.custom-file {
    width: 100%;
    height: 35px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    background-color: #fbfbfb;
}

.custom-file::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 0px;
    right: 0;
    height: 35px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px 10px 10px 5px;
    background: #056946;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 35px;
    color: #FFF;
    font-weight: 600;
    /* font-family: inherit; */
}

.custom-file span {
    padding: 0 10px;
    display: block;
    font-size: 14px;
    height: 35px;
    display: flex;
    align-items: center;
}

.custom-file p {
    position: absolute;
    top: 10px;
    right: 15px;
    margin: 0;
    color: #FFF;
    font-size: 14px;
    text-align: center;
}

.custom-file input[type="file"] {
    width: 100%;
    height: 35px;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    font-family: inherit;
}

.custom-file img {
    position: absolute;
    width: auto;
    height: 23px;
    top: 6px;
    right: 70px;
}

.containerInput {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #FFF;
    width: 100%;
    border-radius: 20px 20px 20px 20px;
    padding: 10px;
    box-shadow: 0 5px 21px rgb(131 131 131 / 14%);
    margin-bottom: 15px;
    border-radius: 10px;
}

.inputsGroupContainer {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
}

.content_tap .containerInput {
    border-radius: 0px 20px 20px 20px;
}

.sliderProgres .swiper-slide {
    background-color: transparent;
}

.button_group {
    width: 100%;
    margin: 20px auto 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.button_group button {
    width: 25%;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    text-transform: capitalize;
    transition: 0.2s ease-in-out;
    position: relative;
    font-family: inherit;
    margin-bottom: 10px;
}

.button_group button:last-child {
    margin-right: 0px;
}

.subTitle h2 {
    padding: 5px 0 0px 0;
    padding-left: 10px;
    margin: 0;
    color: #056946;
}

.map {
    width: 100% !important;
    height: 100vh;
    border-radius: 30px;
    margin: 10px 0;
    overflow: hidden;
}

.map img {
    position: absolute;
}

.mapVideo {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}

.mapVideo img {
    position: absolute;
}

.mapVideo .btn {
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 900;
    right: 10px;
    top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #056946;
}

.mapVideo .btn img {
    position: relative;
    height: 20px;
    left: initial;
    right: initial;
}

.mapVideo .containerItem_Code {
    max-height: 160px;
    overflow: auto;
    position: absolute;
    bottom: 70px;
    z-index: 1000;
    right: 70px;
    width: 300px;
}

.mapVideo .containerItem_Code .itemList {
    display: flex;
    align-items: center;
    background: #FFF;
    border-radius: 15px;
    padding: 0 8px;
    cursor: pointer;
    box-shadow: 0 7px 30px rgb(120 120 120 / 13%);
}

.mapVideo .containerItem_Code .itemList ul {
    padding: 10px 5px;
    list-style: none;
    margin: 0;
}

.mapVideo .containerItem_Code .itemList ul li {
    display: flex;
    flex-wrap: wrap;
}

.mapVideo .containerItem_Code .itemList li .typeVehicle {
    font-size: 13px;
    font-weight: 500;
    margin-right: 5px;
}

.mapVideo .containerItem_Code .itemList li span {
    font-size: 14px;
    font-weight: 700;
    word-break: break-all;
}

.mapVideo .containerItem_Code .itemList p {
    margin: 2px 0;
    font-size: 14px;
}

.mapVideo .containerItem_Code .itemList p span {
    margin-left: 8px;
}

.map iframe {
    border-radius: 20px;
    border: 1px solid #d1d1d1;
}

.mapVideo .button_group,
.popup_maptracking .button_group {
    padding: 10px 0 0 0;
}

.mapVideo .button_group input,
.popup_maptracking .button_group input {
    top: inherit;
    right: inherit;
    width: 30%;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    text-transform: capitalize;
    transition: 0.2s ease-in-out;
    position: relative;
    font-family: inherit;
}

.mapVideo .container_statusTrucking .open_description {
    width: 30px;
    height: 30px;
    background-color: #056946;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    transform: rotate(270deg);
    position: absolute;
    right: 30px;
    bottom: 22px;
    cursor: pointer;
    transition: 0.3s ease-in-out all;
    z-index: 401;
}

.mapVideo .container_statusTrucking .open_description .one {
    width: 13px;
    display: block;
    height: 3px;
    border-radius: 5px;
    background: white;
    transform: rotate(45deg);
    position: relative;
    left: 4px;
    top: 0px;
    transition: 0.3s ease-in-out all;
}

.mapVideo .container_statusTrucking .open_description .two {
    width: 13px;
    display: block;
    height: 3px;
    border-radius: 5px;
    background: white;
    transform: rotate(135deg);
    position: absolute;
    left: 5px;
    transition: 0.3s ease-in-out all;
    top: 13px;
}

.mapVideo .container_statusTrucking .open_description.active .one {
    top: 0px;
    left: 0px;
}

.mapVideo .container_statusTrucking .open_description.active .two {
    position: absolute;
    top: 14px;
    left: 9px;
}

.mapVideo .container_statusTrucking .open_description img {
    width: auto;
    height: 9px;
    filter: brightness(10);
}

@media (max-width:992px) {
    .input_group {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .mapVideo .containerItem_Code {
        left: 10px;
        width: auto;
    }

    .button_group {
        flex-direction: column;
    }

    .button_group button {
        width: 100% !important;
        margin-bottom: 10px;
    }

    .button_group button:last-child {
        margin-bottom: 0px;
    }
}

.back_primary {
    color: #FFF;
    background: #056946;
}

.back_secoundary {
    background-color: transparent;
    border: 2px solid #056946 !important;
    color: #056946;
}

button.back_secoundary img {
    width: auto;
    height: 15px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.button_group button:hover {
    transition: 0.2s ease-in-out;
    opacity: 0.8;
}

.btn {
    min-height: 35px;
    line-height: 33px;
    border-radius: 5px;
    border: 0px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
}

.btn:hover {
    opacity: 0.8;
}


/* Start Header  */

.FullMainContent {
    display: block;
    margin: 0 0;
}

.headerPage {
    background-color: #FFF;
    border-radius: 0;
    margin: 0;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: absolute;
    width: calc(100% - 230px);
    right: 0;
    transition: 0.2s ease-in-out;
}

.headerPage .logo {
    width: 25%;
    display: none;
}

.headerPage .logo a {
    display: flex;
    align-items: center;
}

.headerPage .logo a img {
    width: auto;
    height: 50px;
}

.headerPage .logo a .smallLogo {
    display: none;
}

.headerPage .searhInput {
    width: 35%;
    position: relative;
}

.searchHead {
    position: relative;
}

.searchMap .searhInput {
    position: relative;
    z-index: 1002;
    /* Higher than Leaflet (usually around 400-1000) */
}


.clear-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
    color: #888;
    font-size: 28px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.searchMap .list_search {
    position: absolute;
    top: 100%;
    /* right below the input */
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    left: 0px;
    background-color: #FFF;
    z-index: 1002;
    /* Must be higher than map and .searhInput */
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 7px 30px rgb(120 120 120 / 13%);
}


.searchHead .list_search {
    position: absolute;
    background-color: #FFF;
    border-radius: 10px;
    padding: 10px;
    right: 0px;
    width: 300px;
    box-shadow: 0 7px 30px rgb(120 120 120 / 13%);
    max-height: 200px;
    overflow: auto;
    z-index: 1;
    margin: 10px;
    /* display: none; */
}

.searchMap .list_search {
    position: absolute;
    top: 100%;
    /* right below the input */
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    left: 0px;
    background-color: #FFF;
    z-index: 1002;
    /* Must be higher than map and .searhInput */
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 7px 30px rgb(120 120 120 / 13%);
}

.titlePage {
    width: 35%;
    position: relative;
    padding-left: 30px;
}

.titlePage h2 {
    margin: 0;
    font-weight: 500;
}

.arrowDash {
    z-index: 1;
    display: flex;
    padding: 5px;
    border: 2px solid #bfd9d0;
    border-radius: 50px;
    position: absolute;
    left: 14px;
    cursor: pointer;
}

.arrowDash img {
    width: auto;
    height: 22px;
}

.arrowDash.activeMenu {
    transform: rotate(180deg);
}

.logo {
    padding-bottom: 20px;
    padding-left: 3px;
}

.logo img {
    width: auto;
    height: 55px;
    display: flex;
}

.logo .smallLogo {
    display: none;
    height: 45px;
}

.headerPage .searchHead .list_search p,
.searchMap .list_search p {
    margin: 0 0 0 0;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}

.headerPage .searchHead .list_search p:hover,
.searchMap .searhInput .list_search p:hover,
.searchMap .searhInput .list_search p:hover {
    background-color: #E5F3EE;
    color: #14ab6b;
}

.headerPage .searhInput input {
    background-image: url('../Site_Images/search.svg');
    background-repeat: no-repeat;
    background-position: 7px 50%;
    background-size: 30px;
    padding-left: 40px;
}

.information {
    display: flex;
    align-items: center;
    width: 40%;
    justify-content: end;
    position: relative;
}

.information .notfHead,
.information .changeLangHead,
.information .logoutHead,
.information .listItemMenu,
.information .searchHead a {
    display: flex;
    margin-right: 15px;
    position: relative;
    border: 2px solid #bfd9d0;
    padding: 5px;
    border-radius: 60px;
    cursor: pointer;
    background: #FFF;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.information .changeLangHead {
    margin-right: 0;
    transition: all 0.2s ease-in-out;
}

.information .notfHead img,
.information .changeLangHead img,
.information .logoutHead img,
.information .listItemMenu img,
.information .searchHead img {
    width: auto;
    height: 22px
}

.information .listItemMenu {
    display: none;
}

.searchWidth {
    position: absolute;
    top: 0px;
    height: 100%;
    right: 15px;
    visibility: hidden;
    opacity: 0;
    width: auto;
    transition: 0.3s ease-in-out all;
    border-radius: 7px 20px 20px 7px;
}

.searchWidth.withInput {
    width: 300px;
    border-radius: 50px;
    padding-right: 30px;
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease-in-out all;
}

.information .notfHead .notf {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    right: 6px;
}

.information .profileHead {
    display: flex;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
    position: relative;
    display: none;
}

.profileHead .imageProfile {
    width: 30px;
    display: flex;
}

.profileHead .imageProfile img {
    border-radius: 40px;
}

.profileHead .dataInformation {
    margin-left: 10px;
}

.profileHead .dataInformation p {
    margin: 0;
    text-transform: capitalize;
    font-size: 14px;
}

.profileHead .dataInformation h3 {
    margin: 0;
    font-size: 16px;
}

.popNotf {
    position: absolute;
    background-color: #FFF;
    width: 290px;
    right: -10px;
    top: 90px;
    padding: 10px 15px;
    border-radius: 20px;
    z-index: -1;
    border: 1px solid #ebebeb;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out all;
    box-shadow: 0 10px 80px rgb(215 215 215);
}

.popNotf.toggleItemClass {
    opacity: 1;
    visibility: visible;
    top: 50px;
    transition: 0.3s ease-in-out all;
    z-index: 1;
}

.popNotf .itemPro_Cont,
.popNotf .itemPro_logOut {
    padding: 0px 0 0 0;
}

.popNotf .itemPro_Cont p {
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding: 5px;
    border-radius: 9px;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    text-decoration: auto;
    color: #000;
}

.popNotf .itemPro_logOut {
    border-top: 1.5px solid #e5e5e5;
    padding-top: 5px;
}

.popNotf .itemPro_Cont .itemPro,
.popNotf .itemPro_logOut .itemPro {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 9px;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    text-decoration: auto;
    color: #000;
}

.popNotf .itemPro_Cont .itemPro.notf_pop {
    display: none;
}

.popNotf .itemPro_Cont .itemPro:hover,
.popNotf .itemPro_logOut .itemPro:hover {
    background-color: #dbdbdb61;
}

.popNotf .itemPro_logOut .itemPro {
    margin-bottom: 0px;
}

.popNotf .itemPro_Cont .itemPro img,
.popNotf .itemPro_logOut .itemPro img {
    display: flex;
    align-items: center;
    width: auto;
    height: 25px;
    margin-right: 10px;
}

.information .profileHead {
    display: flex;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
    position: relative;
}

.profileHead .imageProfile {
    width: 30px;
    display: flex;
}

.profileHead .imageProfile img {
    border-radius: 40px;
}

.profileHead .dataInformation {
    margin-left: 10px;
}

.profileHead .dataInformation p {
    margin: 0 0 -10px 0;
    text-transform: capitalize;
    font-size: 14px;
}

.profileHead .dataInformation h3 {
    margin: 0;
    font-size: 16px;
}

.popProfile {
    position: absolute;
    background-color: #FFF;
    width: 290px;
    right: -10px;
    top: 90px;
    padding: 10px 15px;
    border-radius: 20px;
    z-index: -1;
    border: 1px solid #ebebeb;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out all;
    box-shadow: 0 10px 80px rgb(215 215 215);
}

.popProfile.toggleItemClass {
    opacity: 1;
    visibility: visible;
    top: 70px;
    transition: 0.3s ease-in-out all;
    z-index: 1;
}

.pro_Menu {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #e5e5e5;
}

.pro_Menu .imgprofile_menu {
    margin-right: 10px;
}

.pro_Menu .imgprofile_menu img {
    width: auto;
    height: 50px;
    display: flex;
    border-radius: 50%;
}

.pro_Menu .dataprofile_menu p {
    margin: 0 0 -5px 0;
    text-transform: capitalize;
}

.pro_Menu .dataprofile_menu h3 {
    margin: 0;
    font-size: 16px;
}

.popProfile .itemPro_Cont,
.popProfile .itemPro_logOut {
    padding: 10px 0 0 0;
}

.popProfile .itemPro_logOut {
    border-top: 1.5px solid #e5e5e5;
    padding-top: 5px;
}

.popProfile .itemPro_Cont .itemPro,
.popProfile .itemPro_logOut .itemPro {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 9px;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    text-decoration: auto;
    color: #000;
}

.popProfile .itemPro_Cont .itemPro.notf_pop {
    display: none;
}

.popProfile .itemPro_Cont .itemPro:hover,
.popProfile .itemPro_logOut .itemPro:hover {
    background-color: #dbdbdb61;
}

.popProfile .itemPro_logOut .itemPro {
    margin-bottom: 0px;
}

.popProfile .itemPro_Cont .itemPro img,
.popProfile .itemPro_logOut .itemPro img {
    display: flex;
    align-items: center;
    width: auto;
    height: 25px;
    margin-right: 10px;
}


/* Start btn Menu */

.menuBtn {
    display: none;
}

@media (max-width:992px) {
    .menuBtn {
        display: flex;
    }
}

.cta {
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: flex;
}

.toggle-btn {
    height: 3px;
    width: 35px;
    background-color: #056946;
    position: relative;
    top: 0;
    left: 0;
    border-radius: 5px;
    margin: auto;
    transition: all 0.2s ease-in-out;
}

.toggle-btn:before {
    content: "";
    height: 3px;
    width: 25px;
    box-shadow: 0 -10px 0 0 #056946;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.2s ease-in-out;
}

.toggle-btn:after {
    content: "";
    height: 3px;
    width: 25px;
    box-shadow: 0 10px 0 0 #056946;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.2s ease-in-out;
}

.animateBtnMenu:before {
    width: 22px;
    border-radius: 5px;
}

.animateBtnMenu:after {
    width: 22px;
    box-shadow: 13px 10px 0 0 #056946;
    border-radius: 5px;
}

.active .toggle-btn {
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.active .toggle-btn:before {
    top: 0;
    transition: all 0.2s ease-in-out;
}

.active .toggle-btn:after {
    top: 0;
    transition: all 0.2s ease-in-out;
}

.active .animateBtnMenu {
    transform: rotate(45deg);
    background-color: #056946;
    transition: all 0.2s ease-in-out;
}

.active .animateBtnMenu:before {
    transform: translate(-4px, -6px) rotate(90deg);
}

.active .animateBtnMenu:after {
    transform: translate(16px, -7px) rotate(90deg);
}


/* End btn menu*/

@media (max-width:992px) {
    .menuBtn {
        display: flex;
    }

    .arrowDash {
        display: none;
    }

    .information {
        position: relative;
    }

    .information .notfHead,
    .information .changeLangHead,
    .information .searchHead {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        top: 50px;
        margin: 0;
        transition: all 0.2s ease-in-out;
    }

    .information .listItemMenu {
        display: flex;
    }

    .listItemMenu {
        margin-right: 0 !important;
    }

    .information .searchHead a {
        margin: 0
    }

    .information .searchHead.top1 {
        opacity: 1;
        visibility: visible;
        transition: all 0.2s ease-in-out;
    }

    .information .changeLangHead.top3 {
        top: 130px;
        opacity: 1;
        visibility: visible;
        transition: all 0.2s ease-in-out;
    }

    .information .notfHead.top2 {
        top: 90px;
        opacity: 1;
        visibility: visible;
        transition: all 0.2s ease-in-out;
    }

    .headerPage {
        width: 100% !important;
    }

    .searchWidth {
        right: 0;
    }

    .titlePage {
        width: 100%;
        padding: 0;
    }

    .titlePage h2 {
        font-size: 20px;
        text-align: center;
    }

    .logo img {
        width: auto;
        height: 80px;
    }

    .profileHead .dataInformation {
        display: none;
    }

    .itemPro.notf_pop {
        display: flex !important;
    }

    .itemPro.notf_pop .notf {
        position: absolute;
        width: 13px;
        height: 13px;
        background-color: #ff0000;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        right: 0;
    }

    .menu .menuHead .containerLink .linkItem:not() .imgLink {
        background-color: transparent;
    }

    .headerPage .logo,
    .menuBtn,
    .information {
        width: 33%;
    }

    .headerPage .logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .FullMainContent {
        position: relative;
    }
}


/* End Header  */


/**######################### Start swiper  #########################**/

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    font-size: 18px;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/**######################### end swiper  #########################**/

.FullMainContent {
    display: flex;
    align-items: start;
}


/* start menu  */

.menu {
    display: flex;
    align-items: start;
    transition: 0.2s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    height: 100vh;
}

.topShow {
    top: 20px;
    transition: 0.2s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    height: calc(100vh - 35px);
}


/* start menu head  */


/* 
.menu .menuHead {
    z-index: 1;
}

.menu .menuHead .containerLink {
    width: 95px;
    background-color: #14AB6B;
    border-radius: 30px;
    padding: 15px 8px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu .menuHead .containerLink .linkItem {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
    border-radius: 10px;
    margin: 2px 0;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.menu.topShow .menuHead .containerLink .linkItem {
    transition: 0.2s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.menu .menuHead .containerLink .linkItem:first-child {
    margin-top: 0;
}

.menu .menuHead .containerLink .linkItem:last-child {
    margin-bottom: 0;
}

.menu .menuHead .containerLink .linkItem .imgLink {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    width: 45px;
    height: 45px;
    border-radius: 10px;
}

.menu .menuHead .containerLink .linkItem:hover .imgLink,
.menu .menuHead .containerLink .linkItem.activeM .imgLink {
    background-color: #EAC66B;
}

.menu .menuHead .containerLink .linkItem .imgLink img {
    width: auto;
    height: 28px;
}

.menu .menuHead .containerLink .linkItem p {
    margin: 0px 0 0px 0;
    text-align: center;
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
} */


/* end menu head  */


/* Start menu body  */

.menu .menuBody {
    height: inherit;
    position: relative;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
    overflow-x: hidden;
}

.menu .menuBody .container_list {
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 0;
    padding: 15px 5px;
    border-right: 1px solid #e7e7e7;
    transition: 0.2s ease-in-out;
}


/* .menu .menuBody .container_list {
    display: none;
} */

.menu .menuBody .container_list .titleMenu {
    margin: 22px 12px 10px;
    color: #a4a4a4;
    font-weight: 500;
}

.menu .menuBody .container_list .titleMenu p {
    padding: 5px 0;
    margin: 0;
    transition: 0.2s ease-in-out;
}

.menu .menuBody .container_list .list_item .menu_item_link {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    padding: 2px 12px;
    margin-bottom: 5px;
    position: relative;
    border-radius: 5px;
    text-transform: capitalize;
    cursor: pointer;
    height: 40px;
}

.menu .menuBody .container_list .list_item .menu_item_link .itemImg {
    width: auto;
    height: 22px;
}

.menu .menuBody .container_list .list_item .menu_item_link p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    margin-left: 15px;
    transition: 0.2s ease-in-out;
}

.menu .menuBody .container_list .list_item .menu_item_link:hover {
    background: #f7f7f7;
}

.menu .menuBody .container_list .list_item .menu_item_link:hover p {
    color: #056946
}

.menu .menuBody .container_list .list_item .menu_item_link:hover::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #05885b;
    left: -5px;
    border-radius: 0 5px 5px 0;
}

.menu .menuBody .container_list .list_item .menu_item_link .arrowleft {
    width: auto;
    height: 6px;
    position: absolute;
    right: 10px;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.menu .menuBody .container_list .list_item .menu_item_link.activeMenu {
    background: #eef5ef;
}

.menu .menuBody .container_list .list_item .menu_item_link.activeMenu::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #05885b;
    left: -5px;
    border-radius: 0 5px 5px 0;
}

.menu .menuBody .container_list .list_item .menu_item_link.activeMenu .arrowleft {
    transform: rotate(180deg);
}

.menu .menuBody .container_list .list_item .submenu {
    list-style: none;
    width: auto;
    padding: 0;
    border-radius: 5px;
    margin: 0 0 5px 0px;
    display: none;
    position: relative;
    background: #a6f4cb;
}

.menu .menuBody .container_list .list_item .submenu .submenu_item:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: 2px;
    top: 17px;
    z-index: 0;
    background: #056040;
}

.menu .menuBody .container_list .list_item .submenu .submenu_item:after {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    left: 0px;
    z-index: 0;
    top: 12px;
    border-radius: 50%;
    background: #056040;
}

.menu .menuBody .container_list .list_item .submenu .submenu_item:last-of-type:before {
    content: none;
}

.side_menu.smallMenu .menu_section .list_item .submenu {
    display: none !important;
}

.menu .menuBody .container_list .list_item .submenu .submenu_item {
    cursor: pointer;
    position: relative;
    margin: 0px 0px 0px 15px;
}

.menu .menuBody .container_list .list_item .submenu .submenu_item a:hover {
    background-color: #eef5ef;
}

.menu .menuBody .container_list .list_item .submenu .submenu_item p {
    margin: 0;
}

.menu .menuBody .container_list .list_item .submenu .submenu_item a {
    width: 100%;
    text-decoration: none;
    color: #000;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: 5px;
    word-break: auto-phrase;
}

.menu .menuBody .container_list .list_item .submenu .submenu_item a img {
    width: auto;
    height: 6px;
    transform: rotate(0deg);
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.menu .menuBody .container_list.showMenu {
    transform-origin: 0% 0%;
    transform: translate(0%, 0);
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.subsubmenu_item,
.subsubsubmenu_item {
    list-style: none;
    width: auto;
    padding: 1px 0;
    border-radius: 10px;
    display: none;
    background: #d0fbe2;
    margin: 2px 0;
}

.subsubmenu_item li,
.subsubsubmenu_item li {
    padding: 0px 10px;
    cursor: pointer;
    position: relative;
}

.sssM_item {
    padding-right: 0 !important;
}

.menu .menuBody .container_list .list_item .submenu .submenu_item a.activeMenu img {
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transform: rotate(180deg);
}

.menu.smallMenu .menuBody .container_list .list_item .menu_item_link p {
    display: none;
    transition: 0.3s ease-in-out;
}

.menu.smallMenu .menuBody .container_list .list_item .menu_item_link .arrowleft {
    display: none;
    transition: 0.2s ease-in-out;
}

.menu.smallMenu .logo img {
    display: none;
    transition: 0.2s ease-in-out;
}

.menu.smallMenu .logo .smallLogo {
    display: block;
    transition: 0.2s ease-in-out;
}

.menu.smallMenu .menuBody .container_list .list_item .submenu {
    display: none !important;
}

.menu.smallMenu .titleMenu p {
    opacity: 0;
    visibility: visible;
    font-size: 8px;
    transition: 0.2s ease-in-out;
}

.menu.smallMenu .container_list {
    width: 60px;
    transition: 0.2s ease-in-out;
}

.headerPage.smallHeader {
    width: calc(100% - 60px);
    transition: 0.2s ease-in-out;
}


/* end menu body  */

@media (max-width:992px) {
    .menu {
        width: 100%;
        margin: auto;
        position: absolute;
        height: calc(100vh - 60px);
        display: block;
        top: 61px;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out all;
    }

    .menu.showMenuMob {
        opacity: 1;
        visibility: visible;
        transform-origin: 0% 0%;
        transition: 0.3s ease-in-out all;
    }

    .menu .menuHead {
        display: flex;
        overflow: auto;
    }

    .menu .menuHead .containerLink {
        display: flex;
        box-shadow: none;
        background-color: transparent;
        border-radius: 0;
        padding: 0 0 15px 0;
        width: auto;
        flex-direction: row;
    }

    .menu .menuHead .containerLink .linkItem {
        margin: 0;
        width: 100px;
    }

    .menu ::-webkit-scrollbar {
        height: 10px;
    }

    .menu ::-webkit-scrollbar-thumb {
        background-color: #ebc66b;
        border-radius: 10px;
    }

    .topShow {
        top: inherit;
    }

    .menu.topShow .menuHead .containerLink .linkItem {
        margin: 0;
    }

    .menu .menuBody .container_list {
        position: relative;
        /* display: none; */
        transform: none;
        transition: none;
        width: 100%;
        /* margin: 10px 0 0 0; */
    }

    .menu .menuBody .container_list.showMenu {
        display: block;
        transform: none;
        transition: none;
        height: 380px;
    }

    .menu .menuBody {
        overflow: auto;
    }
}


/* end menu  */


/* Start contentBody  */

.contentBody {
    padding: 20px 15px 0 20px;
    width: 100%;
    margin-top: 60px;
    transition: 0.2s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    height: calc(100vh - 70px);
    overflow: auto;
}

.section_header h2 {
    margin: 0 0 15px 0;
    color: #253745;
}

.section_body {
    height: calc(100vh - 160px);
}

@media (max-width:992px) {
    .contentBody {
        padding: 0px 15px;
        width: 100%;
        margin-top: 90px;
    }

    .section_body {
        margin-bottom: 40px;
        height: 100%;
    }
}


/* end contentBody  */


/* ############ Start main taps ############ */

.content_tap>div:not(:first-child) {
    display: none;
}

.main_tap {
    display: flex;
    flex-wrap: wrap;
    background: #FFF;
    z-index: 2;
    position: relative;
    border-bottom: 2px solid #f5f5f5;
    border-radius: 20px 20px 0 0;
}

.main_tap .tap_item {
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    margin-left: 5px;
    /* width: 250px; */
    text-align: center;
}

.main_tap .tap_item p {
    margin: 0;
    color: #bcbcbc;
    font-size: 17px;
}

.main_tap .tap_item.tap_item_active {
    border-bottom: 2px solid #056946;
}

.main_tap .tap_item.tap_item_active p {
    color: #056946;
}

.spaceFormenu {
    padding-right: 430px;
    transition: 0.2s cubic-bezier(0.77, 0.2, 0.05, 1);
}

@media (max-width: 992px) {
    .main_tap .tap_item {
        width: 170px;
    }

    .main_tap .tap_item p {
        font-size: 15px;
    }

    .spaceFormenu {
        padding-right: 0px;
    }
}


/* ############ end main taps ############ */


/* ############ STartresultsFilter ############ */

.totalResualt {
    width: 200px;
    background-color: #EAC66B;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.totalResualt p {
    margin: 0;
    font-size: 20px;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
}

.containerFilter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.containerFilter .itemFilter {
    width: 48%;
    background-color: #FFF;
    border-radius: 20px;
    border: 2px solid #f4f4f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
}

.itemFilter .dataFilter {
    display: flex;
    align-items: center;
}

.itemFilter .dataFilter .imgFilter {
    display: flex;
    width: auto;
    height: 40px;
    margin-right: 20px;
}

.itemFilter .contactFilter p {
    margin: 0;
    font-size: 15px;
    margin-bottom: 4px;
    color: #B6B6B6;
}

.itemFilter .contactFilter h3 {
    margin: 0;
    font-size: 22px;
}

.detailsFilter {
    width: 25%;
    border: none;
    text-transform: capitalize;
    height: fit-content;
    transition: 0.2s ease-in-out;
}

@media (max-width:992px) {
    .containerFilter {
        flex-direction: column;
    }

    .containerFilter .itemFilter {
        width: 100%;
    }

    .totalResualt {
        width: 100%;
    }
}


/* ############ End results Filter ############ */


/* ############ start sliderProgres ############ */

.sliderProgres {
    margin: 20px 0;
}

.progresItem {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #FFF;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
}

.progresItem .imgProduct {
    padding: 15px;
    border-radius: 12px;
    margin-right: 15px;
}

.progresItem .imgProduct img {
    height: 30px;
    width: auto;
}

.progresItem .prog_contact span {
    margin-bottom: 0;
    display: block;
    text-transform: capitalize;
    font-size: 16px;
    color: #7a7a7a;
}

.progresItem .prog_contact p {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.progresItem .total {
    background-color: #D0EEE1;
}

.progresItem .closed {
    background-color: #DEF1DE;
}

.progresItem .resolved {
    background-color: #DBEFF6;
}

.progresItem .InProgress {
    background-color: #EAE5F6;
}

.progresItem .NotResolved {
    background-color: #FCEFDB;
}

.progresItem .total {
    background-color: #D0EEE1;
}

.progresItem .Delayed {
    background-color: #F8DCDC;
}

.progresItem .Delayed_Closed {
    background-color: #EFDDF9;
}

.progresItem .Non_Specialist {
    background-color: #D4E7E4;
}


/* ############ end sliderProgres ############ */


/* ############ Start Login Page ############ */

.loginPage {
    height: 100vh;
    background-image: url("../Site_Images/patternalriyadh.png");
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.loginPage .patternLogin {
    width: 50%;
    position: relative;
    background-color: #DAFCEE;
    display: flex;
}

.patternLogin .logindata {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 30%;
    left: 50%;
    width: 80%;
    text-align: center;
    z-index: 1;
}

.patternLogin .logindata h2 {
    margin: 0 0 20px 0;
    font-size: 40px;
}

.patternLogin .logindata p {
    margin: 0;
    font-size: 17px;
}

.loginPage .patternLogin img {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: absolute;
    bottom: 0;
}

.inputLogin {
    width: 430px;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #fffffff0;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo_language {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 38px;
}

.logo_language .imgLog img {
    width: auto;
    height: 50px;
}

.logo_language .changeLanguage {
    display: flex;
    cursor: pointer;
}

.logo_language .changeLanguage img {
    width: auto;
    height: 25px;
}

.inputLogin .input_group {
    flex: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
    padding: 0;
}

.input_group.calender_in img {
    position: absolute;
    bottom: 8px;
    width: auto;
    height: 20px;
    right: 21px;
    pointer-events: none;
    cursor: pointer;
    background: #e5f3ee;
}

.input_group.time_in img {
    position: absolute;
    bottom: 9px;
    width: auto;
    height: 20px;
    right: 21px;
    pointer-events: none;
    cursor: pointer;
    background: #e5f3ee;
}

.twoInputs_group .twoInputs {
    display: flex;
    justify-content: space-between;
}

.calander,
.time {
    position: relative;
    width: 100%;
}

.twoInputs_group .twoInputs .calander,
.twoInputs_group .twoInputs .time {
    position: relative;
    width: 48%;
}

.calander img,
.time img .twoInputs_group .twoInputs .calander img,
.twoInputs_group .twoInputs .time img {
    position: absolute;
    bottom: 7px;
    width: auto;
    height: 20px;
    right: 10px;
    pointer-events: none;
    cursor: pointer;
    background: #e5f3ee;
}

.twoInputs_group .twoInputs .time img {
    border-radius: 50%;
}


/*##### Start Radio and CheckBox #####*/

.checkBox,
.radioBox {
    margin-bottom: 10px;
    margin-top: 10px;
    position: relative;
    padding: 0 10px;
}

.checkBox {
    display: flex;
    align-items: end;
}

.checkBox .checkInput,
.radioBox .radioInput {
    background: #f0f0f0;
    border-radius: 10px;
    padding: 5px 10px;
    width: 100%;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

.checkBox .checkInput.checked,
.radioBox .radioInput.checked {
    border: 2px solid #056946;
}

.checkBox .labelCheck,
.radioBox .labelradio {
    display: block;
    margin-bottom: 5px;
    font-weight: 100;
    font-size: 15px;
    color: #333;
    text-align: left;
    text-transform: capitalize;
}

.checkBox .checkInput input,
.radioBox .radioInput input {
    display: flex;
    height: 17px;
}

.checkBoxContainer,
.radioBoxContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkBoxContainer .checkInput,
.radioBoxContainer .radioInput {
    width: 48%;
}


/** Start Radio **/

.inputRadio {
    flex: 0 0 100%;
    max-width: 100%;
    z-index: 0;
    position: relative;
    display: flex;
    align-items: center;
    color: #636363;
    font-size: 16px;
    line-height: 1.5;
    margin: 16px 0 0;
    height: 45px;
    width: 100%;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 5px 10px;
}

.inputRadio>input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}

.inputRadio>span {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding-left: 40px;
}

.inputRadio>span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 2px 10px 2px 0;
    border: solid 2px;
    border-color: #bebebe;
    position: absolute;
    left: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    vertical-align: top;
    transition: border-color 0.2s;
}

.inputRadio>input:checked+span::before {
    border-color: #056946;
}

.inputRadio>span::after {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    left: 20px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #056946;
    transform: translate(5px, 5px) scale(0);
    transition: transform 0.2s;
}

.inputRadio>input:checked+span::after {
    transform: translate(5px, 5px) scale(1);
}

.radioBox label {
    font-size: 14px;
}

.radioGroup {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radioGroup .inputRadio>span::after {
    top: 9px;
}

.radioGroup .inputRadio {
    flex: auto;
    min-width: max-content;
    margin: 0;
    margin-left: 2px;
    margin-right: 2px;
    height: 35px;
    padding-top: 0;
    padding-bottom: 0;
}


/** end Radio **/


/*##### end Radio and CheckBox #####*/

.inputLogin .titleLogin {
    margin: 10px 0;
    text-align: center;
}

.inputLogin .titleLogin h2 {
    margin-bottom: 0;
    font-size: 25px;
    margin-top: 0;
    color: #07224D;
    font-weight: 500;
}

.inputLogin .titleLogin p {
    margin: 0;
    font-size: 17px;
    color: #949494;
}

.btnLogin button {
    width: 100%;
    padding: 10px 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 10px;
    text-transform: capitalize;
    transition: 0.2s ease-in-out;
    font-size: 16px;
    font-family: inherit;
}

.btnLogin button:nth-last-child(2) {
    margin-bottom: 10px;
}

.Remember_Forget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    /* margin-bottom: 40px; */
}

.Remember_Forget label {
    text-align: start;
    word-break: break-word;
    display: flex;
    align-items: center;
}

.Remember_Forget label input[type="checkbox"] {
    height: auto;
}

.Remember_Forget a {
    text-decoration: none;
    color: #056946;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
}

.loginLogo {
    display: flex;
}

.loginLogo img {
    width: auto;
    height: 60px;
    margin: 0 auto;
}

.copyRight {
    width: 100%;
    font-size: 14px;
    color: #109c62;
    text-align: center;
    display: block;
    height: 100%;
    margin-top: 20px;
    font-weight: 500;
}

@media (max-width:992px) {
    .loginPage .patternLogin {
        display: none;
    }

    .inputLogin {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        background: #FFF;
        padding: 4pc 2pc;
    }

    .loginLogo img {
        margin: 0 auto 0 0;
    }

    .logo_language {
        right: 30px;
        top: 80px;
    }

    .logo_language .imgLog img {
        height: 40px;
    }
}


/* ############ end Login Page ############ */

.conatinerPag_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.conatinerPag_btn .Pag {
    display: flex;
    align-items: center;
}

.conatinerPag_btn .Pag .resultPages {
    margin-right: 15px;
}

.conatinerPag_btn .Pag .resultPages p {
    margin: 0;
    color: #ababab;
}

.conatinerPag_btn .pagnagtion {
    display: flex;
    align-items: center;
}

.conatinerPag_btn .arrowPagination {
    margin: 0 10px;
    display: flex;
}

.conatinerPag_btn .arrowPagination img {
    width: auto;
    height: 20px;
}

.conatinerPag_btn .pagnagtion .numberPage {
    display: flex;
    align-items: center;
}

.conatinerPag_btn .pagnagtion .numberPage .page {
    background-color: #fff;
    min-width: 30px;
    height: 30px;
    padding: 5px;
    max-width: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    cursor: pointer;
}

.conatinerPag_btn .pagnagtion .numberPage .page.activePage {
    background-color: #056946;
    color: #FFF;
}

.conatinerPag_btn .pagnagtion .numberPage .page:last-of-type {
    margin-right: 0px;
}

.conatinerPag_btn .pagnagtion .numberPage .dots {
    display: flex;
    align-items: center;
}

.conatinerPag_btn .pagnagtion .numberPage .dots span {
    background-color: #999999;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
}

.conatinerPag_btn .pagnagtion .numberPage .dots span:last-of-type {
    margin-right: 10px;
}

.conatinerPag_btn .btnExport {
    display: flex;
    align-items: center;
}

.conatinerPag_btn .btnExport .btn {
    width: 200px;
    margin-right: 10px;
}

.conatinerPag_btn .btnExport .btn:last-of-type {
    margin-right: 0;
}

.conatinerPag_btn .searchTabel {
    width: 400px;
}

.conatinerPag_btn .searchTabel input {
    background-image: url('../Site_Images/search.svg');
    background-repeat: no-repeat;
    background-position: 7px 50%;
    background-size: 30px;
    padding-left: 40px;
    border: 1px solid #d8d8d8;
}

@media (max-width:992px) {
    .conatinerPag_btn .searchTabel {
        width: 100%;
        margin: 10px 0 0 0;
    }

    .conatinerPag_btn .searchTabel input {
        width: 100%;
    }

    .conatinerPag_btn {
        flex-direction: column;
    }

    .conatinerPag_btn .btnExport {
        margin-top: 10px;
        width: 100%;
        flex-direction: column;
    }

    .conatinerPag_btn .btnExport .btn {
        width: 100%;
        margin: 0;
        margin-top: 10px;
    }

    .edit img {
        width: 100px;
        height: 30px;
    }
}


/*################### Start Table  ###################*/

.tableContainer {
    background: #FFF;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 21px rgb(131 131 131 / 14%);
    margin-top: 0;
}

.containerItemsTable {
    flex-flow: nowrap;
    /* display: grid; */
    overflow: auto;
}

.headTable {
    display: flex;
    align-items: center;
    padding: 12px;
    border-top: 2px solid gainsboro;
    margin-top: 10px;
    height: 50px;
    width: max-content;
    min-width: 100%;
}

.headTable .itemHeadTable {
    width: 200px;
    padding: 0 5px;
}

.headTable .itemHeadTable p {
    margin: 0;
    color: #727272;
}

.bodyTable {
    max-height: calc(100vh - 240px);
    overflow: auto;
    width: max-content;
    min-width: 100%;
}

@media (max-width:992px) {
    .bodyTable {
        max-height: calc(100vh - 240px);
        overflow: auto;
        width: min-content;
    }
}

.itemContainerBodyTable {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 10px;
    height: 70px;
    border: 1px solid #ededed;
    justify-content: space-between;
}

.itemContainerBodyTable .itemBodyTable {
    width: 200px;
    height: 30px;
    overflow: auto;
    padding: 0 5px;
    overflow-x: hidden;
    overflow-y: auto;
    word-break: break-word;
}

.itemContainerBodyTable .itemBodyTable p {
    font-size: 15px;
    margin: 0;
}

.itemContainerBodyTable .itemBodyTable p img {
    width: auto;
    height: 30px;
    display: flex;
}

.itemContainerBodyTable .cont_Data {
    display: flex;
    align-items: center;
}

.itemContainerBodyTable .delete_Edit {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.itemContainerBodyTable .itemBodyTable.btnEdit,
.itemContainerBodyTable .itemBodyTable.btndelete {
    display: flex;
    justify-content: center;
    width: 120px;
    cursor: pointer;
    margin-right: 5px;
}

.itemContainerBodyTable .itemBodyTable.btndelete img {
    width: auto;
    height: 25px;
}

.itemContainerBodyTable .itemBodyTable.btnEdit .btn {
    width: 100px;
    min-height: 28px;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.itemContainerBodyTable .itemBodyTable.btnEdit .btn img {
    position: relative;
    transform: none;
    top: auto;
    left: inherit;
}

.itemBodyTable .statusTable.working {
    color: #00cc00;
    background: transparent !important;
}

.itemBodyTable .statusTable.notworking {
    color: #ff0000;
    background: transparent !important;
}


/*################### End Table  ###################*/


/*################### Start Table  ###################*/

.containerDataBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.containerDataBox .dataBox {
    display: flex;
    background: #FFF;
    width: 32%;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
}

.containerDataBox .dataBox .imgData {
    width: 150px;
    height: 130px;
    background: #F9F9F9;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e1e1;
    margin-right: 10px;
}

.containerDataBox .dataBox .imgData img {
    width: auto;
    height: 92px;
}

.containerDataBox .container_data {
    width: 70%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.containerDataBox .container_data .headData {
    width: 100%;
}

.containerDataBox .container_data .headData h3 {
    margin: 0;
}

.containerDataBox .container_data .bodyData {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
}

.containerDataBox .container_data .bodyData .itemData p {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.containerDataBox .container_data .bodyData .itemData span {
    font-size: 19px;
    font-weight: 700;
    display: block;
    text-align: center;
}

.containerDataBox .container_data .footerData {
    width: 100%;
}

@media (max-width:992px) {
    .containerDataBox {
        flex-direction: column;
    }

    .containerDataBox .dataBox {
        width: 100%;
    }
}


/*################### End Table  ###################*/


/* ############ Start popup ############ */

.popup .popup_overlay {
    position: fixed;
    width: 100%;
    height: inherit;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999
}

.popup_container {
    width: 50%;
    border-radius: 10px;
    background: #FFF;
}

.popup_container .popup_header {
    padding: 10px;
    border-radius: 10px 10px 0 0;
    background: #FFF;
    position: relative;
    border-bottom: 1px solid #c4c4c4;
    text-align: left;
    color: #056946;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup_container.wrong .popup_header {
    color: #FF4040;
}

.popup_container .popup_header .closepopup {
    display: block;
    height: 15px;
    width: auto;
    cursor: pointer;
}

.popup_container .popup_header .closepopup img {
    display: flex;
}

.popup_container .popup_header h3 {
    margin: -7px 0;
    text-align: left;
}

.popup_container .popup_content {
    padding: 16px;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 100px;
    max-height: 500px;
    overflow: auto;
    /* background-image: url('./assets/Site_Images/pop.png'); */
}

.popup_container .popup_content .contentdata_popup {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 20px 0;
    color: #6e6e6e;
}

.popup_container .popup_content .contentdata_popup p {
    margin: 0;
}

.popup_container .popup_content .contentdata_popup .testarea_group {
    flex: 0 0 90%;
    max-width: 90%;
}

.popup_container .popup_content .button_group {
    margin: 0;
}

.popup_container .popup_content .button_group button {
    width: 200px;
}

.flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_end {
    display: flex;
    align-items: end;
    justify-content: center;
}

@media (max-width:992px) {
    .popup_container {
        width: 90%;
    }

    .popup_container .popup_content .button_group button {
        margin: 0px auto 10px auto;
        width: 100%;
    }

    .popup_container .popup_content .button_group button:last-of-type {
        margin-bottom: 0;
    }
}


/* ############ end popup ############ */

.passwordEyes {
    position: absolute;
    width: auto;
    height: 28px;
    bottom: 3px;
    right: 10px;
    cursor: pointer;
}


/*#### Start Map  ####*/

.headMap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headMap .searchMap,
.headMap .dateMap,
.headMap .timeDate {
    width: 32%;
}

.headMap .searchMap .searhInput input {
    height: 35px;
    background-image: url(../Site_Images/search.svg);
    background-repeat: no-repeat;
    background-position: 7px 50%;
    background-size: 30px;
    padding-left: 40px;
    font-size: 12px;
    font-style: oblique;
    border-radius: 10px;
}

.headMap .searchMap .searhInput input::placeholder {
    font-size: 12px;
    font-style: oblique;
    border-radius: 10px;
}

.headMap .dateMap p {
    margin: 0;
    text-align: center;
    font-weight: bold;
    color: #989898ee;
}

.headMap .dateMap p span {
    color: #333;
}

.headMap .timeDate {
    text-align: end;
    font-weight: bold;
}

.headMap .timeDate span {
    color: #989898ee;
    font-size: 12px;
    margin-bottom: 0;
    display: block;
}

.headMap .timeDate p {
    margin: 0;
    font-size: 16px;
    color: #333;
    margin-top: 0;
}

.containermap {
    background: #FFF;
    border-radius: 30px;
    padding: 15px;
    overflow: hidden;
    height: 100%;
}

.containermap .flexMap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    /* height: 100%; */
}

.map_Trucking {
    position: relative;
    width: 100%;
    height: calc(100vh - 245px);
    border-radius: 30px;
    margin: 10px 0;
    overflow: hidden;
    z-index: 1;
}

.flexMap .map_Trucking .btn {
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 900;
    right: 5%;
    top: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #056946;
}

.flexMap .map_Trucking .btn img {
    position: relative;
    height: 20px;
}

.fullScreen {
    position: fixed;
    /* width: 100%; */
    z-index: 99999999;
    top: 0%;
    margin: 0;
    left: 0;
    height: 100%;
    border-radius: 0;
}

.containerItem_Code_screen {
    bottom: 150px !important;
}

.rangeScreen {
    position: fixed;
    z-index: 99999999;
    bottom: 0;
    left: 0;
    background: #FFF;
    padding: 10px;
}

.map_Trucking img {
    position: absolute;
}

.map_Trucking .leaflet-marker-pane img {
    width: auto !important;
    height: 50px !important;
}

.containermap .map_Trucking .status {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    z-index: 1000;
}

.containermap .map_Trucking .itemStatus {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.containermap .map_Trucking .itemStatus span {
    width: 15px;
    height: 15px;
    display: block;
    background: rgb(107, 107, 107);
    border-radius: 5px;
    margin-right: 10px;
}

.containermap .map_Trucking .itemStatus p {
    margin: 0;
    font-size: 13px;
}

.NotContecting {
    background-color: #FF4040 !important;
}

.notworking {
    background-color: #3d3d3d !important;
}

.working {
    background-color: #056946 !important;
}

.maintainance {
    background-color: #009B9D !important;
}

.accident {
    background-color: #0843A0 !important;
}

.notactivated {
    background-color: #D7810A !important;
}

.containermap .map_Trucking iframe {
    width: 100%;
    border-radius: 25px;
}

.detailsMap {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    position: relative;
    transition: 0.3s ease-in-out all;
}

.container_detailsMap {
    border-radius: 29px;
    padding: 10px;
    height: 100%;
    position: relative;
}

.container_detailsMap .twoBtns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container_detailsMap.scroll_Block {
    height: 400px;
    overflow: auto;
}

.main_tap_map {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.main_tap_map .item_tap_map {
    min-height: 38px;
    line-height: 38px;
    border-radius: 50px;
    border: 0px;
    cursor: pointer;
    width: 48%;
    background: #FFF;
    box-shadow: 0 7px 30px rgb(120 120 120 / 13%);
    color: #056946;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_tap_map .item_tap_map p {
    margin: 0;
}

.main_tap_map .item_tap_map.activebtn {
    background: #056946;
    color: #FFF;
}

.container_detailsMap .twoBtns .btnMap {
    width: 48%;
    background: #FFF;
    box-shadow: 0 7px 30px rgb(120 120 120 / 13%);
    color: #056946;
    font-weight: 700;
}

.container_detailsMap .twoBtns .btnMap.activebtn {
    background: #056946;
    color: #FFF;
}

.container_detailsMap .statusMap p {
    margin: 5px 0 0 0;
    font-size: 20px;
    text-transform: capitalize;
}

.container_detailsMap .statusMap .checkBox {
    padding: 0;
}

.container_detailsMap .checkBox .checkInput {
    font-size: 14px;
}

.container_inputs .button_group .btn {
    width: 50%;
}

.map_Trucking .container_statusTrucking {
    position: absolute;
    bottom: 70px;
    right: 20px;
    z-index: 1000;
}

.map_Trucking .container_statusTrucking .open_description {
    width: 30px;
    height: 30px;
    background-color: #056946;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    transform: rotate(270deg);
    position: absolute;
    right: -14px;
    bottom: -18px;
    cursor: pointer;
    transition: 0.3s ease-in-out all;
    z-index: 2;
}

.map_Trucking .container_statusTrucking .open_description .one {
    width: 13px;
    display: block;
    height: 3px;
    border-radius: 5px;
    background: white;
    transform: rotate(45deg);
    position: relative;
    left: 4px;
    top: 0px;
    transition: 0.3s ease-in-out all;
}

.map_Trucking .container_statusTrucking .open_description .two {
    width: 13px;
    display: block;
    height: 3px;
    border-radius: 5px;
    background: white;
    transform: rotate(135deg);
    position: absolute;
    left: 5px;
    transition: 0.3s ease-in-out all;
    top: 13px;
}

.map_Trucking .container_statusTrucking .open_description.active .one {
    top: 0px;
    left: 0px;
}

.map_Trucking .container_statusTrucking .open_description.active .two {
    position: absolute;
    top: 14px;
    left: 9px;
}

.map_Trucking .container_statusTrucking .open_description img {
    width: auto;
    height: 9px;
    filter: brightness(10);
}

.map_Trucking .container_statusTrucking .totalContainer {
    background: #FFF;
    padding: 6px;
    border-radius: 15px;
    width: 250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hidetotalContainer {
    display: flex !important;
}

.map_Trucking .container_statusTrucking .totalContainer .totalItem {
    background: #5a79e9;
    padding: 5px 10px;
    border-radius: 10px;
    width: 45%;
    margin: 4px;
}

.map_Trucking .container_statusTrucking .totalContainer .totalItem .img_p {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.map_Trucking .container_statusTrucking .totalContainer .totalItem .img_p img {
    width: auto;
    height: 20px;
    position: relative;
    filter: brightness(1) invert(1);
}

.map_Trucking .container_statusTrucking .totalContainer .totalItem .img_p p {
    margin: 0;
    font-weight: 600;
    color: #FFF;
}

.map_Trucking .container_statusTrucking .totalContainer .totalItem h3 {
    margin: 0;
    font-size: 10px;
    text-align: center;
    color: #FFF;
}

.codeCars {
    display: flex;
    width: 40px;
    height: 40px;
    border: 2px solid #056946;
    box-shadow: 0 1px 6px rgb(71 71 71 / 19%);
    background-color: #FFF;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
    position: absolute;
    left: inherit;
    right: -10px;
    bottom: 30px;
}

.codeCars img {
    left: 0 !important;
    position: relative;
}

@media (max-width:992px) {
    .map_Trucking {
        height: 100%;
        min-height: 50%;
    }

    .containermap {
        flex-direction: column;
        height: 100%;
    }

    .container_detailsMap {
        margin-top: 20px;
        height: 100%;
    }

    .detailsMap {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
        order: 2;
        min-height: 50%;
        height: 100%;
        margin: 0 !important;
    }

    .containerBattery {
        height: 150px;
    }

    .fullScreen {
        top: -90px;
        border-radius: 0;
        height: 100vh !important;
        left: -20px;
        width: 100dvw;
    }

    .rangeScreen {
        bottom: -80px;
        border-radius: 15px;
    }

    .containerItem_Code_screen {
        bottom: 120px !important;
        left: 20px !important;
    }
}

@media (max-width: 768px) {
    .container_detailsMap {
        margin-top: 20px;
        height: calc(100% - 60%);
        overflow: auto;
    }
}

.cont_collapse .collapse-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    background-color: #056946;
    margin-bottom: 10px;
    color: #FFF;
    border-radius: 9px;
    cursor: pointer;
}

.cont_collapse .collapse-trigger h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.status_collapse {
    width: 15px;
    display: block;
    height: 15px;
    margin-right: 5px;
    border-radius: 4px;
    border: 2px solid white;
    box-shadow: 0 3px 14px rgb(0 0 0 / 45%);
}

.cont_collapse .collapse-trigger img {
    width: auto;
    transform: rotate(360deg);
    height: 9px;
    transition: 0.3s ease-in-out all;
    filter: invert(0) brightness(31);
}

.cont_collapse .collapse-trigger.activeCollapse img {
    transform: rotate(180deg);
    transition: 0.3s ease-in-out all;
}

.cont_collapse .collapse-container .containerItem_Code .itemList {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 0 8px;
    margin-bottom: 5px;
    cursor: pointer;
}

.cont_collapse .collapse-container .containerItem_Code .itemList ul {
    padding: 10px 5px;
    list-style: none;
    margin: 0;
}

.cont_collapse .collapse-container .containerItem_Code .itemList ul li {
    display: flex;
    flex-wrap: wrap;
}

.cont_collapse .collapse-container .containerItem_Code .itemList li .typeVehicle {
    font-size: 13px;
    font-weight: 500;
    margin-right: 5px;
}

.cont_collapse .collapse-container .containerItem_Code .itemList li span {
    font-size: 14px;
    font-weight: 700;
    word-break: break-all;
}

.cont_collapse .collapse-container .containerItem_Code .itemList p {
    margin: 2px 0;
    font-size: 14px;
}

.cont_collapse .collapse-container .containerItem_Code .itemList p span {
    margin-left: 8px;
}

.cont_collapse .collapse-container .containerItem_Code {
    max-height: 230px;
    overflow: auto;
}

.cont_collapse .collapse-container .containerItem_Code .itemList .typeTruck {
    display: block;
    width: 15px;
    height: 15px;
    background: red;
    margin-right: 10px;
    border-radius: 5px;
}

.cont_collapse .collapse-container .containerItem_Code .itemList .typeTruck p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 10px 0;
}

.scrollCollapse {
    height: calc(100vh - 430px);
    overflow: auto;
}

.detailsMap .container_inputs {
    margin: 10px 0;
}

.detailsMap .container_inputs .input_group {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

.detailsMap .closeMenu {
    width: 30px;
    height: 30px;
    background-color: #056946;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    transform: rotate(90deg);
    position: absolute;
    right: -20px;
    top: 50px;
    cursor: pointer;
    transition: 0.3s ease-in-out all;
    z-index: 1001;
}

.detailsMap .closeMenu img {
    width: auto;
    height: 9px;
    filter: brightness(10);
}

.detailsMap.toggleMenu {
    margin-left: -25%;
    transition: 0.3s ease-in-out all;
}

.stretch_map {
    transition: 0.3s ease-in-out all;
    flex: 0 0 100%;
    max-width: 100%;
}

.rotateImg {
    transform: rotate(270deg) !important;
}

@media (max-width:992px) {
    .headMap {
        width: 100%;
        flex-wrap: wrap;
    }

    .headMap .searchMap .searhInput {
        display: block !important;
    }

    .headMap .searchMap {
        width: 100%;
    }

    .containermap .flexMap {
        flex-direction: column;
        /* overflow: auto; */
        height: calc(100vh - 20%);
    }

    .detailsMap .closeMenu {
        display: none;
    }

    .scrollCollapse {
        height: 230px;
    }

    .map_Trucking {
        height: 60vh;
        /* max-height: 100%; */
    }
}

@media (max-width:768px) {
    .detailsMap {
        overflow: auto;
    }
}


/*#### end Map  ####*/

.erorr {
    display: block;
    text-align: center;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 50%);
}

.erorr img {
    width: auto;
    height: 150px;
}

.erorr p {
    font-size: 20px;
}

.disabled {
    cursor: not-allowed;
    background-color: #c3c3c3 !important;
    border-color: #c3c3c3 !important;
}

.progresItem.disabled .imgProduct {
    background-color: #e5e5e5;
}

.progresItem.disabled .imgProduct img {
    filter: brightness(0) invert(30);
}

.progresItem.disabled .prog_contact span,
.progresItem.disabled .prog_contact p {
    color: #a9a9a9;
}


/* ############ start tree ############ */

.tree {
    height: 300px;
    overflow: auto;
}

.container_tree li {
    list-style: none;
}

.tree .container_tree {
    padding: 0;
    margin: 0 5px 0 0;
}

.container_tree .firstItem,
.sub_tree .container_branchsubhead {
    margin: 0;
    position: relative;
}

.container_tree .firstItem:before,
.sub_tree .container_branchsubhead:before {
    content: '';
    position: absolute;
    left: 57px;
    top: 20px;
    width: 4px;
    height: 100%;
    background-color: #056946;
    z-index: 1;
}

.container_tree .firstItem:last-child:before,
.sub_tree .container_branchsubhead:last-child:before {
    content: none;
}

.tree .container_tree .sub_tree {
    padding-top: 10px;
    padding-left: 5pc;
}

.tree .container_tree .sub_sub_tree {
    padding-top: 10px;
    padding-left: 4.5pc;
}

.container_tree .firstItem .branchHead,
.container_tree .branchsubhead {
    background: #f2f2f2;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.container_tree input[type="checkbox"] {
    padding: 0px;
    height: auto;
    margin: 0;
    margin-right: 10px;
    width: auto;
    border-radius: 5px;
    border: none;
    display: flex;
    /* background: #6df9bf; */
}

.container_tree input[type="checkbox"]::before {
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: solid 3px #056946;
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
}

.container_tree input[type="checkbox"]:checked::before {
    background-image: url("../Site_Images/done.svg");
    background-size: 70%;
    background-position: center center;
    background-repeat: no-repeat;
}

.plus_muins {
    position: relative;
    width: 27px;
    height: 27px;
    background-color: #056946;
    cursor: pointer;
    border-radius: 6px;
    margin-right: 10px;
    z-index: 2;
}

.plus_muins .minus {
    position: absolute;
    width: 19px;
    height: 3px;
    background: #FFF;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.plus_muins .plus {
    position: absolute;
    width: 19px;
    height: 3px;
    background: #FFF;
    border-radius: 2px;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%) rotate(90deg);
}

.Leaf {
    display: flex;
    margin-bottom: 10px;
    background: #f2f2f2;
    padding: 7px;
    border-radius: 5px;
    align-items: center;
}


/* ############ end tree ############ */


/* ############ start Data Box ############ */

.container_dataBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.container_dataBox .dataBox {
    background: #FFF;
    padding: 10px;
    border-radius: 10px;
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    box-shadow: 0 4px 19px rgb(120 120 120 / 7%);
    margin-bottom: 16px;
}

.container_dataBox .dataBox img {
    width: auto;
    height: 40px;
}

.container_dataBox .dataBox p {
    margin: -5px 0 0 0;
}


/* ############ end Data Box ############ */


/* ############ start playList ############ */

.playList {
    display: flex;
    align-items: center;
    width: auto;
}

.playItem {
    display: flex;
    width: 40px;
    height: 40px;
    border: 2px solid #056946;
    box-shadow: 0 1px 6px rgb(71 71 71 / 19%);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    cursor: pointer;
}

.playItem img {
    width: auto;
    height: 30px;
}

.result_speed_kilmiter {
    margin: 0;
    color: #056946;
    font-weight: 700;
    margin-right: 10px;
}

.result_speed_kilmiter span {
    font-size: 20px;
    color: #333;
}

.astrix::after {
    content: "*";
    color: #c91e1e;
    margin-left: 3px;
}

.range_play {
    display: flex;
    align-items: center;
    width: 100%;
}

.range_play .range {
    width: -webkit-fill-available;
}

@media (max-width:768px) {
    .range_play {
        flex-direction: column-reverse;
    }

    .playList {
        justify-content: space-between;
    }

    .range_play .range,
    .range_play .playList {
        width: 100%;
    }

    .range_play .range {
        margin-bottom: 10px;
    }

    .playItem:last-child {
        margin-right: 0;
    }
    .chart_container .chartDetails .header {
        flex-direction: column; /* العناصر تنزل تحت بعض */
        align-items: flex-start;
    }

    .chart_container .chartDetails .header p {
        font-size: 14px;
    }

    .chart_container .chartDetails .header .totalService {
        font-size: 14px;
    }

    .chart_container .chartDetails .header .action-btn svg {
        width: 14px;
        height: 14px;
    }
}


/* === range theme and appearance === */

input[type="range"] {
    font-size: 0;
    width: 100%;
}

input[type="range"] {
    color: #056946;
    --thumb-height: 20px;
    --track-height: 9px;
    --track-color: rgba(0, 0, 0, 0.2);
    --brightness-down: 80%;
    --clip-edges: 0.125em;
    padding: 0;
    margin: 0;
}


/* === range commons === */

input[type="range"] {
    position: relative;
    background-color: transparent;
    overflow: hidden;
    border: none;
}

input[type="range"]:active {
    cursor: grabbing;
}


/* === WebKit specific styles === */

input[type="range"],
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    transition: all ease 100ms;
    height: var(--thumb-height);
}

input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
    position: relative;
}

input[type="range"]::-webkit-slider-thumb {
    --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
    --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
    --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
    --clip-further: calc(100% + 1px);
    --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0 100vmax currentColor;
    width: var(--thumb-width, var(--thumb-height));
    background: linear-gradient(currentColor 0 0) scroll no-repeat left center / 50% calc(var(--track-height) + 1px);
    background-color: currentColor;
    box-shadow: var(--box-fill);
    border-radius: var(--thumb-width, var(--thumb-height));
    filter: brightness(100%);
    clip-path: polygon(100% -1px, var(--clip-edges) -1px, 0 var(--clip-top), -100vmax var(--clip-top), -100vmax var(--clip-bottom), 0 var(--clip-bottom), var(--clip-edges) 100%, var(--clip-further) var(--clip-further));
}

input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center / 100% calc(var(--track-height) + 1px);
}


/* === Firefox specific styles === */

input[type="range"],
input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb {
    appearance: none;
    transition: all ease 100ms;
    height: var(--thumb-height);
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
    background: #fff0;
}

input[type="range"]::-moz-range-thumb {
    background: currentColor;
    border: 0;
    width: var(--thumb-width, var(--thumb-height));
    border-radius: var(--thumb-width, var(--thumb-height));
    cursor: grab;
}

input[type="range"]:active::-moz-range-thumb {
    cursor: grabbing;
}

input[type="range"]::-moz-range-track {
    width: 100%;
    background: var(--track-color);
}

input[type="range"]::-moz-range-progress {
    appearance: none;
    background: currentColor;
    transition-delay: 30ms;
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-progress {
    height: calc(var(--track-height) + 1px);
    border-radius: var(--track-height);
}

input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
    filter: brightness(100%);
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:hover::-moz-range-progress {
    filter: brightness(var(--brightness-hover));
}

input[type="range"]:active::-moz-range-thumb,
input[type="range"]:active::-moz-range-progress {
    filter: brightness(var(--brightness-down));
}


/* ############ end playList ############ */

.popup_map {
    position: absolute;
    z-index: 100000092;
    width: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.popup_map .popup_container {
    width: 100%;
    box-shadow: 0 7px 30px rgb(120 120 120 / 13%);
}

.popup_map .popup_container .closepopup img {
    position: relative;
}

.popup_map .container_tree .firstItem:before {
    content: none;
}

.popup_map .branchHead {
    justify-content: space-between;
}

.popup_map .chooesColor input[type="color"] {
    margin: 0;
    height: 30px;
    width: 55px;
    background: white;
    padding: 2px;
    border: 2px solid #056946;
}

.popup_map .Leaf {
    justify-content: space-between;
}

.popup_map .tree .container_tree .sub_sub_tree {
    padding-top: 0px;
    padding-left: 1pc;
}

.popup_map .tree {
    height: 240px;
}

.popup_map .container_tree input[type="checkbox"]::before {
    width: 20px;
    height: 20px;
}

.popup_map .container_tree .firstItem .branchHead .labCheck,
.popup_map .container_tree .branchsubhead .labCheck {
    height: 20px;
}

.vehicle_information {
    display: flex;
    align-items: center;
    width: 100%;
    background: #f7f7f7;
    border-radius: 10px;
}

.vehicle_information .itemVehicle {
    padding: 10px;
    margin-right: 10px;
    width: 33%;
}

.vehicle_information .itemVehicle h2 {
    margin: 0;
    color: #056946;
    font-weight: 500;
}

.vehicle_information .itemVehicle p {
    margin: 0;
}

.container_vehicle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
}

.container_vehicle .item_vehicle {
    position: relative;
    background: #FAFAFA;
    border: 2px solid #f1f1f1;
    display: flex;
    align-items: center;
    border-radius: 15px;
    margin-right: 10px;
    padding: 10px;
    flex: 0 0 24%;
    max-width: 24%;
    margin-bottom: 10px;
}

.container_vehicle .item_vehicle .imgItem {
    display: flex;
    margin-right: 18px;
}

.container_vehicle .item_vehicle .imgItem img {
    width: auto;
    height: 70px;
}

.container_vehicle .contentItem h3 {
    margin: 0 0 -12px 0;
    font-size: 19px;
    font-weight: 600;
    color: #4F4F4F;
}

.container_vehicle .contentItem p {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
}

.container_vehicle .detailsItem {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #056946;
    width: 40px;
    height: 30px;
    border-radius: 10px 0;
    cursor: pointer;
}

.container_vehicle .detailsItem img {
    width: auto;
    height: 15px;
}

@media (max-width:992px) {
    .container_vehicle .item_vehicle {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/** end vehicle  **/


/** Start service managment **/

.dataBox_service {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
}

.dataBox_service .itemService {
    background-color: #FFF;
    width: 32.5%;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 5px 21px rgb(131 131 131 / 14%);
    margin-bottom: 15px;
}

.dataBox_service .headItem {
    display: flex;
    align-items: center;
}

.dataBox_service .headItem .imgItem {
    background: #F8F8F8;
    border: 2px solid #056946;
    border-radius: 15px;
    margin-right: 10px;
    padding: 3px;
}

.dataBox_service .headItem .imgItem img {
    width: auto;
    display: flex;
    height: 55px;
}

.dataBox_service .contentItem h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.dataBox_service .footerItem {
    margin: 5px 0 0 0;
    width: 100%;
}

.dataBox_service .footerItem a {
    color: #056946;
    text-align: right;
    display: block;
    font-weight: 400;
    cursor: pointer;
}

.bodyItem {
    margin-top: 10px;
}

.bodyItem .chart_tracking_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.bodyItem .chart_tracking_item {
    width: 27%;
    text-align: center;
}

.bodyItem .chart_tracking_item h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.bodyItem .chart_tracking_item p {
    margin: 0;
    font-size: 14px;
    font-weight: 700
}

@media (max-width:1080px) {
    .dataBox_service .itemService {
        width: 100%;
    }
}

@media (max-width:992px) {
    .dataBox_service {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .dataBox_service .itemService {
        width: 100%;
    }
}


/** end service managment **/


/** Start chart **/

.chart_container {
    /* display: flex; */
    /* align-items: start; */
    width: 100%;
    /* justify-content: space-between; */
    /* height: 100%; */
}

.chart_container .chart_item {
    width: 32%;
    padding: 0px 15px 15px 15px;
    background-color: #FFF;
    border: 3px solid #f5f5f5;
    border-radius: 20px;
    margin: 10px 0;
    display: block;
}

.chart_container .chart_item h2 {
    margin: 10px 0;
    font-size: 20px;
    border-radius: 10px;
    color: #5c5c5c;
    text-align: start;
    font-weight: 500;
}

.chart_container .chart_item h4 {
    margin: 0;
    font-weight: 400;
}


/* .spaceFormenu .ChartOne app-doughnut-chart,
.spaceFormenu .ChartTwo app-doughnut-chart,
.spaceFormenu .ChartThree app-doughnut-chart {
    width: 100%;
    display: flex;
} */

.ChartOne .chartBody::-webkit-scrollbar-thumb {
    background-color: #05885b;
}

.ChartTwo .chartBody::-webkit-scrollbar-thumb {
    background: #333;
}

.ChartThree .chartBody::-webkit-scrollbar-thumb {
    background: #b22828;
}

.maintainanceScroll::-webkit-scrollbar-thumb {
    background: #009B9D;
}

.accidentScroll::-webkit-scrollbar-thumb {
    background: #0843A0;
}

.notactivatedScroll::-webkit-scrollbar-thumb {
    background: #D7810A;
}

.chart_container .chart_item .working {
    color: #056946;
    background-color: transparent !important;
}

.chart_container .chart_item .notWorking {
    color: #b22828;
    background-color: transparent !important;
}

.chart_container .chart_item .notConnected {
    color: #333;
    background-color: transparent !important;
}

.chart_container .chart_item .maintainance {
    color: #009B9D;
    background-color: transparent !important;
}

.chart_container .chart_item .accident {
    color: #0843A0;
    background-color: transparent !important;
}

.chart_container .chart_item .notactivated {
    color: #D7810A;
    background-color: transparent !important;
}

.chart_container .chart_item .chartHead p.working {
    background-color: #056946 !important;
}

.chart_container .chart_item .chartHead p.notWorking {
    background-color: #b22828 !important;
}

.chart_container .chart_item .chartHead p.notConnected {
    background-color: #333 !important;
}

.chart_container .chart_item .chartHead p.maintainance {
    background-color: #009B9D !important;
}

.chart_container .chart_item .chartHead p.accident {
    background-color: #0843A0 !important;
}

.chart_container .chart_item .chartHead p.notactivated {
    background-color: #D7810A !important;
}

.chart_container .chart_item .chart_item_flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart_container .chart_item .chartHead,
.chart_container .chart_item .chartBody {
    width: 50%;
}

.chart_container .chart_item .chartHead h2 {
    margin: 0;
}


/* .chart_container .chart_item .chartHead app-doughnut-chart {
    width: 50%;
    display: block;
} */


/* .chart_container .chart_item .chartBody .progress_bar {
    width: 60%;
    display: block;
} */

.chart_container .chart_item .chartHead p {
    margin: 0 auto;
    width: 90%;
    font-size: 11px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    border-radius: 10px;
    color: #FFF;
}

.chart_container .chart_item .chartBody p {
    margin: 0;
    width: 100%;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: -12px;
    color: #6d6d6d;
}

.chart_container .chart_item .chartBody p b {
    font-weight: 600;
}

.chart_container .chart_item .chartBody {
    height: 220px;
    overflow: auto;
    padding: 5px;
}

.chartFooter {
    width: 150px;
    margin-top: 10px;
    border: 2px solid;
    display: flex;
    border-radius: 10px;
    padding: 4px;
    text-align: center;
    justify-content: center;
    margin-left: auto;
    cursor: pointer;
}

.footer_working {
    border-color: #056946;
}

.footer_working a {
    color: #056946;
}

.footer_notWorking {
    border-color: #b22828;
}

.footer_notWorking a {
    color: #b22828;
}

.footer_notConnected {
    border-color: #333;
}

.footer_notConnected a {
    color: #333;
}

.chartFooter a {
    font-weight: bold;
}

.chart_container.chartSmalls {
    margin-top: 20px;
}

.chart_container.chartSmalls .chartsmall_items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.chart_container.chartSmalls .chartsmall_items p {
    margin: 0;
    padding: 5px 0 0 0;
    text-align: center;
    font-weight: bold;
    width: 50%;
}

.chart_container.chartSmalls .chart_item {
    width: 24%;
}

.chart_container.chartSmalls .chart_item .chartSmall_O {
    width: 40%;
    margin: 0 auto;
    display: flex;
}

.chart_container.chartSmalls .chart_item h2 {
    margin: 0;
    font-size: 16px;
    background: transparent;
    border-radius: 10px;
    color: #5c5c5c;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.chart_container .chart_item.fullChart {
    width: 100%;
    display: block;
}

.chart_container .chart_item.fullChart h2 {
    color: #5c5c5c;
}

.chart_container .chart_item.fullChart .chart_row canvas {
    display: block;
    width: 100% !important;
}

.headChart {
    margin: 0;
}

.chart_W_bar {
    padding: 0px 15px 15px 15px;
    background-color: #FFF;
    border: 3px solid #f5f5f5;
    border-radius: 20px;
    margin: 10px 0;
    display: block;
}

.chart_W_bar .headChart {
    font-weight: 500;
    color: #5c5c5c;
    font-size: 20px;
}

.chart_W_bar .chart_item {
    width: 15%;
}

.chart_W_bar .chart_item h2 {
    font-size: 16px;
    padding: 3px;
    color: #056946;
    background: transparent;
    text-align: center;
}

.chart_W_bar .chartsmall_items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.chart_W_bar .chartsmall_items .chartSmall_O {
    width: 80%;
    margin: 0 auto;
    display: flex;
}

.chart_W_bar .chartsmall_items p {
    margin: 5px 0 0 0;
}

.chart_W_bar .flexContainerChart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart_W_bar .flexContainerChart .dec_cont_charts {
    width: 15%;
    text-align: center;
}

.chart_W_bar .flexContainerChart .dec_cont_charts img {
    width: auto;
    height: 50px;
}

.chart_W_bar .flexContainerChart .dec_cont_charts p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.chartLine {
    width: 35%;
}

.chartLine .chart_L {
    width: 100%;
    margin: 0 auto;
    display: flex;
}

.container_complain {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.complanItems {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 5px;
    width: 48%;
    border: 1px solid #dedede;
}

.complanItems h2 {
    font-size: 16px !important;
    text-align: center !important;
}

.complanItems h1 {
    font-size: 20px;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.cont_cont_Com {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
    height: 250px;
    overflow: auto;
}

.cont_cont_item {
    width: 45%;
}

.coMun_container {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px
}

.coMun_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
}

.coMun_item p {
    margin: 0;
}

@media (max-width:992px) {
    .chart_container {
        flex-direction: column;
    }

    .chart_container .chart_item {
        width: 100% !important;
        margin-bottom: 15px;
    }

    .chart_container .chart_item .chartBody {
        height: 190px;
    }

    .chart_W_bar .flexContainerChart {
        flex-direction: column;
    }

    .chart_W_bar .chartsmall_items {
        flex-direction: row;
    }

    .chartLine {
        width: 100%;
    }

    .chart_W_bar .flexContainerChart .dec_cont_charts {
        width: 100%;
    }

    .chart_W_bar .chartsmall_items .chartSmall_O {
        width: 50%;
    }

    .chart_W_bar .chartsmall_items p {
        width: 50%;
        text-align: center;
    }
}


/** end chart **/

.listUser {
    list-style: none;
    padding: 0;
    width: 100%;
    margin: 10px 0;
}

.listUser li {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    margin-bottom: 10px;
}

.listUser li img {
    width: auto;
    height: 25px;
    margin-right: 10px;
}

.listUser li div {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

.listUser li div p {
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.listUser li div p span:last-child {
    color: #056946;
    font-weight: 700;
}

.seeMore {
    width: 100%;
    display: block;
    text-align: end;
    color: #056946;
    text-decoration: underline;
}

.cdk-overlay-container {
    z-index: 1009 !important;
}

.container_image {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.item_Image {
    width: 150px;
    height: 150px;
    padding: 10px;
    border: 1px solid #056946;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
    overflow: hidden;
}

.item_Image img {
    width: auto;
    height: 100%;
    border-radius: 5px;
}

@media(max-width:992px) {
    .container_image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .item_Image {
        width: 100px;
        height: 100px;
    }
}

.container_complainAdd {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.complainAdd {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #cbcbcb;
    width: 47%;
    border-radius: 20px;
    margin: 10px 0;
    padding: 20px;
}

.complainAdd img {
    width: auto;
    height: 50px;
}

.complainAdd p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.container_itemComplainProcces {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.itemComplainProcces {
    background: #eaeaea;
    border-radius: 10px;
    width: 190px;
    padding: 0 0 10px 0;
    margin-right: 10px;
}

.itemComplainProcces * {
    margin: 0;
}

.itemComplainProcces h4 {
    background: #056946;
    color: #FFF;
    border-radius: 10px 10px 0 0;
    padding: 5px 15px;
    margin-bottom: 5px;
}

.itemComplainProcces p {
    padding: 0 10px;
}

.fullScreen .PlayBackMap {
    height: 100vh !important;
}


/* .fullScreen .PlayBackMap img,
.fullScreen .PlayBackMap svg:not(.full) { */


/* top: 15pc; */


/* } */


/* start  map*/

.leaflet-popup-content-wrapper {
    padding: 10px;
    border: 2px solid #056946;
}

.leaflet-popup-content {
    margin: 0 !important;
    width: 250px !important;
}

.containerPopup_map {
    padding: 27px 10px 10px 10px;
}

.containerPopup_map p {
    display: flex;
    direction: ltr;
    margin: 0 !important;
    margin-bottom: 5px !important;
    font-family: 'cairo';
    font-size: 14px;
}

.containerPopup_map p span {
    margin-left: 5px;
    font-weight: 900;
}

.btnContainer_map {
    width: 100%;
    margin: 20px auto 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.btnContainer_map button,
.btnContainer_map a {
    width: 45%;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    transition: 0.2s ease-in-out;
    position: relative;
    min-height: 30px;
    line-height: 30px;
    border-radius: 50px;
    text-align: center;
    font-family: 'cairo';
    text-decoration: none;
}

.btnContainer_map a {
    color: #056946 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnContainer_map a img {
    position: relative;
    height: 20px;
    left: inherit !important;
    width: auto;
    margin-right: 5px;
}


/* end map*/

#cmsv6flash {
    background-color: #e2e2e2 !important;
    padding: 10px !important;
    border-radius: 10px !important;
}

.spinnerNew svg {
    z-index: 1;
    width: 100vw;
    max-width: 100rem;
    height: 100vh;
}

.sparkles path {
    transform-box: fill-box;
}

.sparkles path#One,
.sparkles path#two,
.sparkles path#three,
.sparkles path#four,
.sparkles path#five {
    animation-name: rotate;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.sparkles path#six,
.sparkles path#seven,
.sparkles path#eight,
.sparkles path#nine,
.sparkles path#ten,
.sparkles path#eleven {
    animation-name: rotate;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

.resualtAttachment .removeAttach {
    display: flex;
    cursor: pointer;
}

.resualtAttachment .removeAttach img {
    width: auto;
    height: 25px;
    filter: invert(1);
}

.DriverImage {
    width: 100px;
    height: 100px;
    border-radius: 10%;
    left: 45%;
    right: 10%;
    position: relative;
    object-fit: cover;
}

.PopUpImage {
    width: 30px;
    height: 30px;
}

@keyframes rotate {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 25%;
    }

    40% {
        opacity: 65%;
    }

    60% {
        opacity: 75%;
    }

    80% {
        opacity: 90%;
    }

    100% {
        opacity: 0;
    }
}


/*############ Start multiple ############*/

.ng-trigger {
    direction: ltr;
}

.ng-trigger .mat-pseudo-checkbox {
    margin-left: 0 !important;
    margin-right: 10px;
}

.mdc-list-item__primary-text {
    margin-left: inherit !important;
    margin-right: auto;
}

.mat-mdc-select {
    display: block;
    height: 35px;
    width: 100%;
    background-color: #fbfbfb;
    outline: none;
    transition: all 0.1s ease-in-out 0s;
    appearance: none;
    border: 1px solid #e4e4e4;
    padding: 0 10px;
    color: #000;
    font-size: 15px;
    border-radius: 5px;
    font-family: inherit;
}

.mat-mdc-select-arrow img {
    fill: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -0%);
    width: auto;
    height: 8px;
}

.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
    background: #056946 !important;
}

.mat-mdc-select-arrow {
    appearance: none;
    background-image: url("../Site_Images/arrowMenu.svg");
    background-position-y: 100%;
    background-position-x: 98%;
    background-repeat: no-repeat;
    background-size: 14px;
    width: 15px !important;
    height: 15px !important;
}

.mat-mdc-select-arrow svg {
    display: none;
}


/*############ End multiple ############*/


/* Start Charts View */

.toggleService {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    width: 100%;
}

.toggleService .btn {
    width: 200px;
    color: #aeaeae;
}

.toggleService .current_wardaya {
    border-radius: 10px 0 0 10px;
}

.toggleService .previous_wardaya {
    border-radius: 0 10px 10px 0;
}

.continerBoxservice {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
    height: auto;
}

.BoxserviceData {
    background: #fff;
    width: 30%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 20px;
    margin: 10px;
    height: auto;
}

.toggleService .current_wardaya.activeToggle,
.toggleService .previous_wardaya.activeToggle {
    color: #fff;
    background: #056946;
}

.BoxserviceData img {
    width: auto;
    height: 70px
}

.BoxserviceData h2 {
    margin: 0;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
}

.BoxserviceData.widerCard {
    width: 45%;
}

.chart_container .chartDetails {
    background-color: #fff;
    border: 3px solid #f5f5f5;
    border-radius: 20px;
    margin: 10px 0;
    display: block;
    width: 49%;
    height: auto;
}

.chart_container .chartDetails.md-4 {
    width: 32%;
}

.chart_container .chartDetails.md-4 .chart-container .chartcanvas {
    width: 270px !important;
    height: 140px !important;
}

.chart_container .chartDetails.md-4 .chart-container .chartcanvas canvas {
    width: 100% !important;
    height: auto !important;
    margin-top: -15px;
}

.chart_container .chartDetails.md-6 {
    width: 67%;
}

.chart_container .chartDetails.md-12 {
    width: 100%;
}

.chart_container .chartDetails.md-6 .chart-container {
    width: 100%;
}

.chart_container .chartDetails .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f5f5f5;
    padding: 10px 15px 10px 15px;
}

.chart_container .chartDetails .header p {
    margin: 0;
    font-size: 15px;
}

.chart_container .chartDetails .totalService {
    display: flex;
    align-items: center;
    background: #D0E2DC;
    padding: 5px;
    border-radius: 10px;
}

.chart_container .chartDetails .totalService p {
    margin: 0;
    font-size: 14px;
}
/* 
.chart_container .chartDetails .totalService span {
    width: auto;
    min-width: 40px;
    display: flex;
    justify-content: center;
    border-radius: 6px;
    margin-left: 10px;
    font-size: 14px;
    height: 30px;
    align-items: center;
} */
.chart_container .chartDetails .totalService span {
    width: auto;
    /* min-width: 40px; */
    display: flex;
    justify-content: center;
    border-radius: 6px;
    margin-left: 2px;
    font-size: 14px;
    padding: 4px 8px; /* ✅ Add this line */
}

.chart_container .chartDetails .chartColors {
    display: flex;
    align-items: center;
}

.chart_container .chartDetails .chartColors .chartItem {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.chart_container .chartDetails .chartColors .chartItem .boxColor {
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 5px;
    margin-right: 5px;
}

.chart_container .chartDetails .chartColors .chartItem .boxColor.green {
    background-color: #056946;
}

.chart_container .chartDetails .chartColors .chartItem .boxColor.black {
    background-color: #000;
}

.chart_container .chartDetails .chartColors .chartItem .boxColor.orange {
    background-color: #D7810A;
}

.chart_container .chartDetails .chartColors .chartItem .boxColor.red {
    background-color: #EC1010;
}

.chart_container .chartDetails .chartColors .chartItem .boxColor.lightgray {
    background-color: lightgray;
}

.chart_container .chartDetails .chartColors .chartItem .boxColor.white {
    background-color: #FFFFFF;
    border: 1px solid;
    border-color: #000;
}

.chart_container .chartDetails .chartColors .chartItem .boxColor p {
    margin: 0;
}

.headPage {
    display: flex;
    align-items: center;
    margin: 20px 0;
    cursor: pointer;
}

.headPage .arrowHead {
    display: flex;
    margin-right: 10px;
}

.headPage .arrowHead img {
    transform: rotate(90deg);
    width: auto;
    height: 10px;
    display: block;
}

.headPage p {
    margin: 0;
}


/* Start */

.chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-container .chartcanvas {
    width: 180px !important;
    height: 90px !important;
    display: block;
    position: relative;
}

.chart-container .chartcanvas canvas {
    width: 170px !important;
    height: auto !important;
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bigContainerCharts {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 20px 15px 48px 15px;
}

.chart_container .chartDetails.md-4 .bigContainerCharts {
    height: 100%;
}

.dataChart {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: -10px;
}

.dataChart p {
    margin: 0;
    font-size: 25px;
    margin-bottom: 5px;
}

.dataChart .chartColors {
    margin-bottom: -20px;
    margin-top: 20px;
    width: 100%;
}

.dataChart .chartColors .chartItem {
    margin-right: 0 !important;
    align-items: center;
}

.dataChart .chartColors .chartItem:first-of-type {
    margin-right: 40px;
}

.dataChart .chartColors p {
    font-size: 15px;
}

.dataChart .chartColors span {
    margin-right: 5px;
}

.bigContainerCharts canvas {
    width: 100% !important;
    height: auto !important;
}

.chart-container .numberChart {
    position: absolute;
    left: 10px;
    top: -15px;
    margin: 0;
}

.small-font {
    font-size: small;
}

@media (max-width:768px) {
    .dataChart .chartColors p {
        font-size: 12px;
        flex-wrap: nowrap;
        display: flex;
    }

    .dataChart .chartColors .chartItem:first-of-type {
        margin-left: 10px;
    }

    .continerBoxservice {
        flex-direction: column;
    }

    .BoxserviceData {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .chart_container .chartDetails {
        width: 100%;
    }

    .chart-container .chartcanvas {
        width: 180px !important;
        height: 90px !important;
    }

    .chart_container .chartDetails.md-4 .chart-container .chartcanvas {
        width: 220px !important;
        height: 110px !important;
    }

    .chart_container .chartDetails.md-4 {
        width: 100%;
    }

    .chart_container .chartDetails.md-6 {
        width: 100%;
    }

    .chart-container {
        margin-bottom: 60px;
    }

    .bigContainerCharts {
        flex-direction: column;
        padding-bottom: 0;
    }

    .dataChart p {
        font-size: 23px;
        margin-bottom: -3px;
    }

    .chart_container .chartDetails .totalService p {
        font-size: 12px;
    }
}


/* End Charts View */


/* Playback speed*/
.speed-container {
    position: relative;
    display: inline-block;
}

.speed-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    width: 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.speed-menu li {
    padding: 8px;
    cursor: pointer;
    text-align: center;
}

.speed-menu li:hover {
    background-color: #f0f0f0;
}

.check-icon {
    width: 12px;
    height: 12px;
    margin-left: 5px;
}

.speed-button {
    font-weight: bold;
    font-size: 14px;
    color: #056946;
    background-color: #fff;
    padding: 5px;
    min-width: 40px;
    justify-content: center;
    align-items: center;
}


/* End of playback speed*/

.containerPopup_map_hover {
    padding: 27px 10px 10px 10px;
}

.containerPopup_map_hover p {
    display: flex;
    direction: ltr;
    margin: 0 !important;
    margin-bottom: 5px !important;
    font-family: 'cairo';
    font-size: 14px;
}

.containerPopup_map_hover p span {
    margin-left: 5px;
    font-weight: 900;
}


/* Anchor direction tweaks */
.markerPopupClass.popup-top .leaflet-popup-content-wrapper {
    transform: translateY(-10%);
}

.markerPopupClass.popup-bottom .leaflet-popup-content-wrapper {
    transform: translateY(120%);
}

.markerPopupClass.popup-left .leaflet-popup-content-wrapper {
    transform: translateX(-70%);
}

.markerPopupClass.popup-right .leaflet-popup-content-wrapper {
    transform: translateX(70%);
}

/* كلاس مركب يجمع بين الأعلى واليسار */
.markerPopupClass.popup-top-left .leaflet-popup-content-wrapper {
    transform: translateY(-10%) translateX(-70%);
}

/* كلاس مركب يجمع بين الأعلى واليمين */
.markerPopupClass.popup-top-right .leaflet-popup-content-wrapper {
    transform: translateY(-10%) translateX(70%);
}

/* كلاس مركب يجمع بين الأسفل واليسار */
.markerPopupClass.popup-bottom-left .leaflet-popup-content-wrapper {
    transform: translateY(120%) translateX(-70%);
}

/* كلاس مركب يجمع بين الأسفل واليمين */
.markerPopupClass.popup-bottom-right .leaflet-popup-content-wrapper {
    transform: translateY(120%) translateX(70%);
}


.timeDate {
    text-align: end;
    font-weight: bold;
}

.timeDate span {
    color: #989898ee;
    font-size: 12px;
    margin-bottom: 4px;
    display: block;
}

.timeDate .timeRow {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
}

.timeDate .timeRow p {
    margin: 0;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}

.toggleTimeWrapper {
    width: 32%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.toggleTimeWrapper .toggleBox {
    width: 50%;
}

.toggleTimeWrapper .timeDate {
    width: 50%;
}

.toggleTimeWrapper:has(.timeDate):not(:has(.toggleBox)) .timeDate {
    width: 100%;
}


@media (max-width: 992px) {
    .headMap {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 10px;
    }

    .headMap .searchMap {
        width: 100%;
        order: 1;
    }

    .headMap .dateMap,
    .headMap .toggleTimeWrapper {
        width: 100%;
    }

    .headMap .toggleBox,
    .headMap .toggleTimeWrapper {
        direction: inherit;
        order: 2;
    }

    .headMap .searchMap .searchInput {
        display: block !important;
    }

    /* Place toggleBox and timeDate side by side */
    .toggleTimeWrapper {
        display: ruby;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 0 10px;
        width: 100%;
    }

    .toggleTimeWrapper .toggleBox,
    .toggleTimeWrapper .timeDate {
        width: 48%;
    }

    .toggleTimeWrapper .toggleBox {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .toggleTimeWrapper .toggleBox .toggleLabel {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        font-size: clamp(10px, 2vw, 14px);
        display: inline-block;
    }

    .timeDate {
        text-align: end;
    }

    .timeDate span {
        margin-left: 0;
        display: block;
        font-size: 12px;
    }

    .timeDate p,
    .timeDate .timeRow p {
        margin: 0;
        margin-right: 0;
        font-size: 12px;
    }

    .timeDate .timeRow {
        flex-wrap: wrap;
        /* allow wrapping if screen too narrow */
    }

    .containermap .flexMap {
        flex-direction: column;
        height: calc(100vh - 20%);
    }

    .detailsMap .closeMenu {
        display: none;
    }

    .scrollCollapse {
        height: 230px;
    }
}


@media (max-width:768px) {
    .detailsMap {
        overflow: auto;
    }
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
}

.left-section {
    display: flex;
    align-items: center;
    padding: 5px;
    font-size: small;
}

.label-box {
    margin: 0px 5px 0px 5px;
}

.time-box {
    padding: 5px;
    text-align: center;
}

.dataChartNumbers {
    bottom: -40px !important;
}

.shiftTranDateTime {
    font-size: small;
    display: flex;
    justify-content: left;
    width: 100%;
    padding-left: 25px;
    margin-top: 1rem !important;
}

.shiftTranDateTime-twoShifts {
    font-size: small;
    display: flex;
    justify-content: left;
    width: 100%;
    padding-left: 25px;
    margin-top: 1rem !important;
    /* position: absolute; */
}

.shiftTranDateTime span {
    margin: 3px;
}

.NoDataExist {
    font-size: x-large;
}

.chart-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30vh;
    width: 100%;
    padding: 0;
    margin: 0;
}

.bigContainerCharts .chart-card {
    height: 55vh !important;
}

.actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.action-btn:hover {
    background: #e0e0e0;
}

.action-btn svg {
    color: #056946;
    transform: scaleX(-1);
}

.actions.actionsdDisabled .action-btn svg {
    color: #b4ecd8;
}
.chart_container .chartDetails .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px;
  flex-wrap: wrap;
}

.chart_container .chartDetails .header p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.chart_container .chartDetails .header .actions {
  display: flex;
  gap: 8px;
}

.chart_container .chartDetails .header .action-btn {
  padding: 6px;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.chart_container .chartDetails .header .totalService {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: bold;
}


/* Media Query للشاشات الصغيرة */
@media (max-width: 480px) {
  .chart_container .chartDetails .header p {
    font-size: 14px;
  }
  .chart_container .chartDetails .header .action-btn svg {
    width: 14px;
    height: 14px;
  }
  .chart_container .chartDetails .header .totalService span {
    font-size: 12px;
  }
}
.vehicle_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px; /* spacing between fields */
  width: 100%;
}

.input_group {
  /* display: flex; */
  flex-direction: column;
  text-align: left;
}

.input_group label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.input_group input.disabled {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  padding: 8px;
  border-radius: 6px;
  color: #444;
}

.lastUpdateDateTime{
    display: flex;
    justify-content: end;
    flex-direction: column; /* keeps label and time stacked */
    padding: 5px;
    font-size: large;
}

.lastUpdateDateTime .left-section{
    font-size: large;
    flex-direction: column;
    font-weight: 700;
}