/*General*/
body, html {
    width: 100%;
    height: 100%;
    font-family: "Helvetica";
}

:root {
    --primary-app-color: #80B4F6;
    --primary-app-color-dark: #352359;
    --secondary-app-color: #F43B37;
    --primary-app-gray-color: rgba(128, 180, 246,0.6);
}
/*End General*/
/*Log in*/
.account-page {
    align-items: center;
    display: flex;
}

    .account-page .main-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

.account-content {
    padding: 20px 0;
}

.account-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: center;
}

.account-subtitle {
    color: #4c4c4c;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}

.account-box {
    background-color: #fff;
    border: 1px solid #ededed;
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    overflow: hidden;
    width: 480px;
}

.account-wrapper {
    padding: 30px;
}

.account-logo {
    margin-bottom: 30px;
    text-align: center;
    max-height: 131px;
}

.account-box .form-group {
    margin-bottom: 25px;
}

.account-box .account-btn {
    background: #2dbdef;
    background: -moz-linear-gradient(left, #2dbdef 0%, #373736 100%);
    background: -webkit-linear-gradient(left, #2dbdef 0%, #373736 100%);
    /*   background: -ms-linear-gradient(left, #2dbdef 0%, #373736 100%);*/
    background: linear-gradient(to right, #2dbdef 0%, #373736 100%);
    border: 0;
    border-radius: 4px;
    display: block;
    font-size: 22px;
    padding: 10px 26px;
    width: 100%;
}

    .account-box .account-btn:hover,
    .account-box .account-btn:focus {
        border: 0;
        opacity: 0.8;
    }

.account-box .form-control {
    background-color: #fbfbfb;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    height: 60px !important;
}

.account-box label {
    color: #1f1f1f;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
}

.account-logo img {
    height: 110px;
    width: auto !important;
}

.account-footer {
    text-align: center;
}

    .account-footer p {
        margin-bottom: 0;
    }

    .account-footer a {
        color: var(--secondary-app-color);
    }

        .account-footer a:hover {
            color: #2dbdef;
        }
/*End login*/

/*Main Layout*/
.header .header-left .logo img {
    height: 50px;
    width: auto !important;
}
/*End Main Layout*/


/*Menu*/


/*End Menu*/

/*Item*/
button.e-control.e-btn.e-lib.save-btn {
    margin-top: 12px !important;
    float: right !important;
}
/*end*/

/*Loader*/
.element-parent {
    position: relative;
    /*  calc(100vw: -);
    calc(100vw: revert-layer);
    calc(100vw: -);*/
    width: calc((100vw / var(--zoom)) - 290px);
    height: calc((100vh / var(--zoom)) - 120px);
}

.element-loader.shimmer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 9999;
}

.element-loader-content {
    position: absolute;
    width: 250px;
    height: auto;
    left: calc(50% - 125px);
    top: calc(50% - 75px);
    text-align: center;
    border-radius: 8px;
    color: #000;
    text-shadow: 0px -2px 4px #d7cfcf;
    background: #FFF;
    padding: 20px;
}

    .element-loader-content h1 {
        font-size: 17px;
        border: none !important;
    }

    .element-loader-content img {
        width: 60px;
    }
/*End Loader*/

/*
DataGrid Style*/

.e-grid .e-headercell {
    color: rgb(3, 2, 2);
    font-weight: bold !important;
}

.e-headertext {
    font-size: 13px;
}


.e-grid .e-headercelldiv {
    margin-top: 5px !important;
}

.e-grid-container {
    height: calc((100vh / var(--zoom)) - 120px - 101px);
    min-height: calc((100vh / var(--zoom)) - 120px - 101px);
    ;
}

.e-grid {
    min-height: calc((100vh / var(--zoom)) - 120px - 101px);
}
/*End DataGrid Style*/
/*Toolbar*/
.toolbar-container {
    display: inline-block;
    width: 40%;
    float: right;
}

.toolbar-item {
    float: right;
}

button.toolbar-button {
    border: 1px solid var(--primary-app-color);
    background: var(--primary-app-color);
    padding: 0px 18px;
    color: #FFF;
    border-radius: 5px;
    line-height: 33px;
    margin-left: 15px;
    font-size: 16px;
}

    button.toolbar-button.toolbar-add-btn {
        border: 1px solid var(--primary-app-color);
        background: var(--primary-app-color);
    }

    button.toolbar-button.toolbar-save-btn {
        border: 1px solid var(--primary-app-color);
        background: var(--primary-app-color);
    }

    button.toolbar-button.toolbar-cancel-btn {
        border: 1px solid #FFF;
        background: #FFF;
        color: #3c3c3c;
    }

ul.breadcrumb {
    width: 50%;
    float: left;
}
/*end Toolbar*/

/*Card */

.card-full-height {
    height: calc((100vh / var(--zoom)) - 120px - 101px);
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.card-header h3 {
    margin-bottom: 0px;
    font-size: 20px;
    color: var(--primary-app-color);
    line-height: 30px;
    padding-top: 2px;
}

.label-view-mode div {
    border: 1px solid #e9ecef;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.label-view-mode .title {
    color: #9e9e9e;
    font-size: 16px;
}

.label-view-mode .text {
    color: #666;
    font-weight: bold;
    font-size: 16px;
}



/* End Card */

/*Rich text Editor*/

.form-group .e-richtexteditor {
    border-radius: 4px;
}

/*Rich text Editor*/

/*File Control*/


.e-upload .e-file-select-wrap .e-file-drop .e-bigger.e-small .e-upload .e-file-select-wrap .e-file-drop {
    font-size: 11px !important;
}

.e-grid .e-groupdroparea {
    background-color: var(--primary-app-gray-color);
    border-top-color: #e0e0e0;
    color: #352359;
}
/*File Control End*/

.item-img {
    border: 2px solid;
    border-color: grey;
    box-sizing: border-box;
    width: 200px !important;
    height: 170px !important;
    display: block;
}

.item-container {
    position: relative;
    display: inline-block;
}

.del-icon {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    width: 25px;
    height: 25px;
}


/*View Order*/

.order-main-info .left {
    float: left;
    margin-right: 125px;
}


.order-details-container {
    margin-top: 20px;
}

.order-number {
    margin-bottom: 29px;
}

span.date-label {
    font-weight: 600;
}

label.order-details-totle {
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.order-total {
    float: right;
    margin-top: 14px;
}

    .order-total span {
        display: block;
        margin-bottom: 3px
    }

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-top: 40px;
    width: 100%;
}

    .timeline-item::before {
        content: '';
        width: 2px;
        height: calc(100% + 40px);
        background-color: red;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .timeline-item:last-child::before {
        display: none;
    }

.timeline-content {
    width: 100%;
    padding: 7px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 2;
    text-align: center;
    height: 65px;
}

    .timeline-content h2 {
        margin-top: 0;
        color: #333;
    }

    .timeline-content.pending {
        border-left: 6px solid red;
    }

    .timeline-content.accepted {
        border-left: 6px solid #ffc107 ;
    }

    .timeline-content.delivered {
        border-left: 6px solid #28a745;
    }

    .timeline-content.completed {
        border-left: 6px solid #6c757d;
    }

    .timeline-content.enroute {
        border-left: 6px solid #17a2b8;
    }

    .timeline-content.cancelled {
        border-left: 6px solid red !important;
    }

    .timeline-content.finished {
        border-left: 6px solid blue !important;
    }

span.order-status {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0.5rem;
    width: 100%;
    display: block;
}
/*End*/
.e-dlg-container.e-edit-dialog.e-dlg-center-center {
    width: 100%;
    align-items: center;
}

    .e-dlg-container.e-edit-dialog.e-dlg-center-center .e-dialog {
        width: 550px !important;
    }

.filter-data {
    border-left: 1px solid #e3e3e3;
    padding-left: 10px;
}

.filter-date {
    margin-top: 30px !important;
    display: block;
}
a.edit-link {
    text-align: right;
    float: right;
    color: #80b4f6;
}

.timeline-title > span {
    width: 100%;
    display: block;
}
.p10-0{
    padding:10px 0;
}
.table-small td {
    padding: 0.25rem;
}

table.table.table-hover.table-white.table-small {
    background: #f5f5f5;
}
td.e-rowcell.e-templatecell img {
    height: 50px;
    width: auto;
}