﻿@import"https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap";

body {
    background: #eee !important;
    font-family: "Poppins", sans-serif !important
}

.request-status {
    padding: 17px 0px;
    margin: 0 10px;
    color: white;
    border-radius: 8px;
    height: 23px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.request-status.SCHEDULED {
    background-color: #89bb3f;
}

.request-status.DELIVERED {
    background-color: #18bfe4;
}

.request-status.PICKEDUP {
    background-color: rgb(212, 233, 27);
    color: black;
}

.request-status.DROPPED_AT_STORE {
    background-color: rgb(233, 27, 188);
    color: black;
}

.request-status.WASH_COMPLETED {
    background-color: rgb(37, 27, 233);
}

.request-status.PICKEDUP_FROM_STORE {
    background-color: rgb(27, 233, 192);
    color: black;
}

.btn-theme,
#trip-container button {
    text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
    box-shadow: 0 0px 10px rgba(52, 50, 211, .6);
    min-width: 120px;
    font-size: 13px;
    margin-right: 18px;
    text-align: center;
    display: inline-block;
    border: 0;
    border-radius: 4px;
    padding: 10px 22px;
    letter-spacing: .3px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 200ms linear;
    position: relative;
    z-index: 1;
    background: #5792f6;
    color: #fff
}

.btn-theme:focus,
#trip-container button:focus {
    outline: none !important;
    color: #5792f6;
    background: #89bb3f
}

.btn-theme:hover,
#trip-container button:hover {
    color: #fff;
    background: #89bb3f
}

.header {
    position: fixed;
    z-index: 12;
    display: flex;
    align-items: center;
    left: 0;
    right: 0;
    background: #fff;
    justify-content: space-between;
    top: 0;
    padding: 8px 16px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .1)
}

.header .site-logo img {
    height: 32px
}

.header .header-right {
    display: flex;
    align-items: center
}

.header .header-right .btn-theme {
    color: #fff;
    justify-content: center;
    font-size: 13px
}

.header .header-right .btn-theme:hover {
    color: #fff
}

@media(max-width: 768px) {
    .header .header-right .btn-theme {
        position: fixed;
        bottom: 16px;
        right: 0;
        left: 86px;
        justify-content: center
    }
}

.header .header-right li a {
    display: inline-flex;
    align-items: center;
    color: #000;
    font-size: 14px
}

@media(max-width: 768px) {
    .header .header-right li a {
        font-size: 0
    }
}

.header .header-right li a svg {
    width: 22px;
    display: block;
    margin-right: 10px
}

.user-profile button {
    background: #fff;
    border: 0;
    outline: 0 !important;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    padding: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.user-profile button img {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2);
    object-fit: cover;
    border-radius: 100%
}

.user-profile button span {
    margin-left: 14px !important;
    display: block
}

.user-profile .dropdown-menu {
    border: 0;
    padding: 10px 0 10px 0px;
    margin: 0;
    min-width: 200px;
    box-shadow: 0px 10px 14px rgba(0, 0, 0, .2);
    border-radius: 4px
}

.user-profile .dropdown-menu a {
    margin: 10px 0
}

.thetitle {
    margin-top: -42px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 18px
}

.sidebar {
    position: fixed;
    padding-left: 20px;
    left: 0;
    top: 70px;
    z-index: 12
}

@media(max-width: 768px) {
    .sidebar {
        padding-left: 0px;
        top: auto !important;
        overflow: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100% !important;
    }
}

.sidebar svg {
    width: 22px
}

.sidebar li {
    list-style: none
}

.sidebar .dashbord-menu {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    margin: 14px 0;
    padding: 20px 0 0 0;
    position: fixed;
    left: 20px;
    width: 53px;
    border-radius: 4px;
    bottom: 0;
    top: 50px
}

@media(max-width: 768px) {
    .sidebar .dashbord-menu {
        left: 0px;
        top: auto;
        right: 0;
        width: 100%;
        display: flex;
        padding: 0 45px 0 8px;
        justify-content: space-evenly;
        margin: 0 !important;
    }

    li.logout {
        right: 0% !important;
        width: 40px;
        top: 0;
        left: auto !important;
        padding-top: 3px !important;
    }
}

.sidebar .dashbord-menu>li {
    margin-bottom: 6px
}

.sidebar .dashbord-menu>li>button,
.sidebar .dashbord-menu>li>a {
    padding: 8px;
    background: transparent;
    border: 0px;
    justify-content: center;
    width: 100%;
    display: flex;
    position: relative
}

.sidebar .dashbord-menu>li>button span,
.sidebar .dashbord-menu>li>a span {
    display: none
}

.sidebar .logout {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #5792f6;
    text-align: center;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 8px 0
}

.sidebar .dropdown-menu {
    left: 58px;
    background: #fff;
    min-width: 200px;
    border: 0;
    top: -12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.sidebar .dropdown-menu p {
    margin: -6px 0 10px 0;
    background: #5792f6;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px
}

.sidebar .dropdown-menu p svg {
    margin-right: 10px;
    display: block;
    fill: #fff !important
}

.sidebar .dropdown-menu a {
    display: block;
    text-align: left !important;
    color: #222;
    padding: 7px 12px !important;
    margin-bottom: 2px
}

.sidebar .open button svg,
.sidebar .open a svg {
    fill: #5792f6
}

.sidebar .active:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #5792f6;
    width: 2px
}

.sidebar .active svg {
    fill: #5792f6
}

.sidebar li {
    position: relative;
    z-index: 3
}

.sidebar li::after {
    content: attr(title);
    position: absolute;
    left: 112%;
    white-space: nowrap;
    background: #5792f6;
    color: #fff;
    display: none;
    padding: 4px 20px;
    top: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 2px;
    font-size: 13px
}

.sidebar li:hover svg {
    fill: #5792f6
}

.sidebar li:hover:after {
    display: block
}

.sidebar .open::after {
    display: none
}

main#site-content {
    padding: 40px 0 0 90px
}

@media(max-width: 768px) {
    main#site-content {
        padding: 40px 0 50px 56px
    }
}

.red {
    color: red
}

.green {
    color: green
}

.statbox {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    margin-bottom: 20px;
    z-index: 2;
    height: 100%
}

.statbox p {
    display: flex;
    align-items: center;
    margin-bottom: 0
}

.statbox svg {
    display: block;
    margin-right: 10px
}

.statbox img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 40%;
    max-height: 200px;
}

.statbox b.amt {
    display: block
}

.statbox b.amt:first-letter {
    font-size: 40%;
    display: block
}

.r-service {
    display: flex;
    flex-wrap: wrap
}

@media(max-width: 768px) {
    .r-service {
        display: block
    }
}

.r-service .r-box {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    margin-bottom: 20px;
    z-index: 2;
    height: 100%;
    flex: 0 0 24%;
    margin-right: 1%
}

.r-service .r-box p {
    display: flex;
    align-items: center
}

.r-service .r-box p svg {
    display: flex;
    margin-right: 10px
}

.c-card {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    z-index: 2;
    height: 100%
}

.progress[value] {
    height: 16px;
    padding: 4px 8px;
    overflow: hidden;
    border-radius: 20px !important
}

.flex-table {
    display: block;
    position: relative;
    overflow-x: auto;
    width: 100%
}

.flex-table table {
    position: relative;
    min-width: 700px;
    width: 100%;
    z-index: 3
}

.flex-table table th {
    padding: 10px;
    border: 0px !important
}

.flex-table table th:first-child {
    padding-left: 20px
}

.flex-table table th:last-child {
    padding-right: 20px
}

.flex-table table td {
    padding: 10px 10px 20px 10px;
    font-size: 13px;
    position: relative
}

.flex-table table td:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 10px;
    background: #fff;
    box-shadow: 3px 6px 0px 0px rgba(0, 0, 0, .01);
    z-index: -1
}

.flex-table table td:first-child {
    padding-left: 20px
}

.flex-table table td:first-child::after {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.flex-table table td:last-child {
    padding-right: 20px
}

.flex-table table td:last-child::after {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.flex-table .action {
    display: flex;
    align-items: center
}

.flex-table .action a,
.flex-table .action button {
    border: 0;
    display: block;
    margin-right: 2px;
    color: #fff;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: inset 0 0 13px rgba(255, 255, 255, .2)
}

.flex-table .action .danger {
    background: red
}

.flex-table .action .warning {
    background: orange
}

.flex-table .action .info {
    background: #5792f6
}

.flex-table .u-pic {
    width: 32px;
    height: 32px;
    border-radius: 4px
}

.table-title {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 768px) {
    .table-title {
        display: block
    }
}

.table-title a,
.table-title button {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    color: #222;
    justify-content: center;
    font-weight: 400
}

@media(max-width: 768px) {

    .table-title a,
    .table-title button {
        margin-top: 10px;
        display: flex
    }
}

.table-title a svg,
.table-title button svg {
    fill: #5792f6;
    width: 28px;
    display: block;
    margin-right: 10px
}

hr {
    border-color: #ccc
}

div.dt-buttons a {
    background: #fff;
    padding: 10px 24px;
    margin-right: 10px;
    border-radius: 4px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border: 0
}

@media(max-width: 768px) {
    div.dt-buttons a {
        padding: 10px 16px;
        margin-right: 4px
    }
}

div.dt-buttons a:hover {
    color: #fff;
    background: #5792f6
}

.dataTables_filter input {
    width: 300px !important;
    border-radius: 4px;
    height: 24px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-color: #ccc;
    padding: 0 10px !important
}

@media(max-width: 768px) {
    .dataTables_filter input {
        width: 220px !important;
        display: block !important
    }
}

ul.pagination {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px !important
}

ul.pagination .page-item {
    display: inline-flex;
    margin-right: 6px
}

ul.pagination .page-link {
    display: block;
    padding: 6px 14px;
    border-radius: 4px !important;
    border: 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    font-size: 13px
}

.form-control {
    min-height: 40px;
    border-radius: 4px;
    border-color: #ccc
}

a.btn-toggle {
    display: inline-flex;
    font-size: 12px;
    margin-right: 10px;
    color: #fff;
    position: relative;
    border-radius: 2px;
    padding: 6px 8px 6px 26px
}

a.btn-toggle:before {
    content: "";
    position: absolute;
    background: #fff;
    top: 3px;
    left: 3px;
    bottom: 3px;
    width: 20px;
    border-radius: 1px
}

.btn-toggle.dis {
    background: red;
    padding: 6px 26px 6px 8px
}

.btn-toggle.dis:before {
    left: auto;
    right: 3px
}

.btn-toggle.enab {
    background: #5792f6
}

.d-box {
    position: relative;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    margin-top: 20px;
    z-index: 2;
    height: 100%;
    flex: 0 0 24%;
    margin-right: 1%
}

.earing-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #5792f6;
    color: #fff;
    padding: 20px;
    border-radius: 4px
}

.earing-box svg {
    height: 134px
}

.green-bg {
    background: #43b968
}

.alert {
    border-radius: 0;
    border-color: rgba(0, 0, 0, .125);
    position: fixed;
    right: 10px;
    z-index: 12;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}

.form form {
    padding-top: 20px !important
}

.btn-menu a.btn-theme {
    background: #fff;
    color: #5792f6;
    margin-bottom: 14px;
    justify-content: center
}

.btn-menu a.active {
    background: #5792f6;
    color: #fff
}

.danger-btn {
    background: red
}

.switchery>small {
    height: 18px;
    width: 18px
}

.switchery {
    background-color: #ccc !important;
    height: 18px;
    width: 38px
}

.dropify-wrapper.touch-fallback {
    margin-bottom: 20px
}

.embed-responsive {
    padding: 0 !important;
    overflow: hidden;
    height: 80vh
}

.mt-1,
.mb-1 {
    margin-top: 10px
}

.mt-2,
.mb-2 {
    margin-top: 20px
}

.c-code {
    position: relative;
    /* padding-left: 45px */
}

.c-code input:focus,
.c-code select:focus {
    box-shadow: none;
    outline: none;
    border-color: #ccc
}

.c-code select {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-right: 0;
    border-color: #ccc;
    border-radius: 4px
}

.getservice {
    background: #5792f6 url(../../login-bg.jpg);
    background-size: cover;
    background-position:center;
}
.getservice-signin {
    background: #5792f6 url(../../signin.jpg);
    background-size: cover;
    background-position:center;
}

.provideervice {
    background: #5792f6 url(../../provider-bg.jpg);
    background-size: cover;
    background-position:center;
}

@media(max-width: 767px) {
    .home-body {
        width: 100%;
        overflow: hidden
    }
}

.home-body form {
    width: 100%
}

.home-body .bg {
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 6%
}

@media(max-width: 767px) {
    .home-body .bg {
        height: auto
    }
}

.home-body .bg a {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    min-width: 150px
}

.home-body .bg a img {
    height: 44px;
    display: block
}

.home-body .bg a svg {
    height: 28px;
    display: block;
    position: relative;
    top: -2px;
    margin-right: 6px
}

.home-body .bg p small {
    color: #fff;
    font-size: 14px
}

.home-body .bg p b {
    color: #fff
}

.home-body .bg hr {
    border-color: #fff
}

.home-body .form {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 6%;
    position:relative;
}

@media(max-width: 767px) {
    .home-body .form {
        height: auto;
        padding: 40px 30px
    }

    .home-body .form form.row {
        margin: 0
    }
}

.home-body .logo {
    display: block;
    max-height: 40px;
    margin: 0 auto 26px auto;
}

.home-body .bg p {
    color: #fff;
    font-size: 22px
}

.auth-admin {
    display: flex;
    align-items: center;
    min-height: 100vh
}

@media screen and (max-width: 768px)and (min-width: 768px) {
    .form {
        width: 50%
    }
}

@media(max-width: 1024px) {
    .home-body .form {
        padding: 15px
    }
}

@media(max-width: 767px) {
    .home-body .logo {
        margin: 16px ​auto 20px auto
    }

    .home-body .row a {
        margin-top: 14px;
        min-width: 100px;
        padding: 12px 8px;
        text-align: center;
        justify-content: center
    }

    .home-body .row a svg {
        display: none
    }

    .home-body .row a:last-child {
        margin-right: 0
    }

    .home-body .row .bg {
        text-align: center
    }

    .home-body .row .bg>div>div {
        margin-top: 0px !important
    }

    .home-body .row .bg>div>div a {
        margin-top: 0;
        padding: 4px ​8p
    }

    .home-body .row .bg p {
        font-size: 0
    }

    .home-body form {
        padding: 15px
    }
}


.login-wrap {
    background: #fff;
}
.tab-wrap {
    background: #eeeeee;
    padding: 6px;
    border-radius: 6px;
    display: flex;
    margin-bottom:14px;
}
.tab-wrap a {
    display: block;
    width: 50%;
    text-align: center;
    padding: 11px 10px;
    border-radius: 6px;
    font-size: 13px;
}
.tab-wrap a.active {
    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,.1);
}

.f-title small {
    font-size: 13px;
    opacity: .8;
}

.f-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    line-height: 1;
    margin-top: 25px;
}

.dark-bg{
    background: rgb(255 255 255 / 50%);
    border-radius: 12px;
    padding: 50px 20px;
    width: 100%;
}

.dark-bg *{
    color:#000 !important;
}

.featuredimg {
    position: relative;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    overflow: hidden;
    z-index: 1; }
.featuredimg > div {
    text-align: center; }
.featuredimg input {
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0; }
.featuredimg .preview {
    position: absolute;
    top: 0;
    max-height: 150px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    opacity: .4; }
.featuredimg:hover img {
    opacity: 1; }