:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6105cc;
    --pink: #e83e8c;
    --red: #c90505;
    --orange: #f77d03;
    --yellow: #f0c408;
    --green: #00ad14;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #f40606;
    --secondary: #6c757d;
    --success: #0ed300;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #e6e6e6;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

html {
    overflow-x: hidden !important;
}

body {
    background: white;
    padding-bottom: 20px;
    overflow-x: hidden !important;
    animation-name: fadeIn;
    animation-duration: 0.75s;
}

header {
    overflow: hidden;
    min-height: 93px;
}

header .hamburger {
    width: 25px;
    height: 25px;
    display: none !important;
    color: var(--primary);
}

header .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    font-size: 0.9rem;
}

header .btn i {
    font-size: 1.2em;
}
@media (max-width: 375px) {
    header .btn {
        font-size: 0.6rem;
    }

    header .btn i {
        font-size: 1.2em;
    }
}

header img {
    width: 200px;
    max-width: 40% !important;
    margin: 20px auto;
}

.search-box {
    /* padding: 5px 15px 5px 3px; */
    /* display: flex;
    justify-content: space-around;
    align-items: center; */
}
@media (max-width: 1023px) {
    .input-group-text {
        background: transparent;
        border: none;
    }

    .search-box input,
    .search-box input:active,
    .search-box input:focus {
        border: none;
        outline: none;
    }
}

.title-bar {
    position: relative;
    overflow-y: visible;
}
@media (max-width: 500px) {
    .title-bar h2 {
        max-width: 80%;
        font-size: 1.6rem;
    }
}

#cal-btn {
    background: rgb(221, 221, 221);
    height: 50px;
    position: absolute;
    z-index: 9;
    border: none;
    border-bottom-left-radius: 100px;
    border-top-left-radius: 100px;
    width: 50px;
    right: 0px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: fadeInRight;
    animation-duration: 1s;
}

#calendar {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    z-index: 111;
    display: none;
    right: 55px;
    color: black !important;
    animation: bounceIn;
    animation-duration: 0.5s;
}

.sidebar {
    position: sticky;
    top: 0;
    z-index: 1;
}

.sidebar ul {
    list-style-type: none;
    font-size: 1.1em;
    padding: 0;
}

.sidebar ul ul {
    padding-left: 40px;
}

.sidebar li {
    padding: 5px;
}

.sidebar li:hover {
    background-color: lightgrey;
}

.sidebar a {
    color: black;
}

.sidebar a:hover {
    text-decoration: none;
}

.sidebar i {
    margin-right: 10px;
    width: 20px;
}

@media screen and (max-width: 1023px) {
    header .hamburger {
        display: block !important;
        position: relative;
        z-index: 11;
        font-size: 1.5em;
        margin: 10px;
    }

    .sidebar {
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        display: none;
        position: fixed !important;
        top: 0;
        bottom: 0;
        left: 0;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
        padding-top: 95px;
        max-width: 100% !important;
        width: 300px;
        transition: all 1s;
    }

    .wrapper {
        font-size: 0.85rem !important;
    }
}

.wrapper {
    font-size: 1.4rem;
}

.wrapper div {
    min-height: 45px;
}

.wrapper div:not(:first-child) {
    border-top: 1px solid #dee2e6;
}

.wrapper a {
    font-weight: bold;
}

.sign-in .container {
    min-height: 90vh;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sign-in img {
    max-width: 60%;
    width: 250px;
}

.sign-in form input,
.sign-in form input:active,
.sign-in form input:focus {
    margin-top: 20px;
    border: none;
    height: 50px;
}

.sign-in .btn-link {
    margin: 10px 0;
    text-decoration: none;
}

.sign-in .btn-block {
    background-color: var(--primary);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.8rem;
    transition: 0.5s;
}

.sign-in .btn-block:hover {
    background: var(--red);
}

.waiting .title-bar,
.waiting .wrapper a,
.waiting-order-details .title-bar {
    color: var(--primary);
}

.wrapper .btn,
.wrapper-detail .btn {
    background: var(--success);
    color: var(--white) !important;
    transition: 0.5s;
}

.wrapper .btn:hover,
.wrapper .btn:active,
.wrapper-detail .btn:hover,
.wrapper-detail .btn:active {
    background: var(--green);
}

.wrapper-detail .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.wrapper-detail p {
    color: var(--purple);
    font-weight: bold;
    margin-top: 10px;
}

.wrapper-detail ul {
    padding-left: 20px;
}

.wrapper-detail li {
    list-style-type: none;
}

.wrapper-detail .price {
    color: var(--green);
    font-size: 2em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accepted .title-bar,
.accepted .wrapper-detail a,
.accepted-order-details .title-bar {
    color: var(--orange);
}

.wrapper-detail img,
.wrapper-detail img,
.wrapper-detail img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.wrapper-detail p,
.wrapper-detail p,
.wrapper-detail p {
    font-weight: bold;
    color: var(--purple);
    line-height: 1.3;
    margin-left: 10px;
    margin-bottom: 0;
}

.withdrawn .title-bar,
.withdrawn .wrapper-detail a,
.withdrawn-order-details .title-bar {
    color: var(--yellow);
}

.delivered .title-bar,
.delivered .wrapper-detail a,
.delivered-order-details .title-bar {
    color: var(--green);
}

.add-order label {
    color: #6105cc;
    font-size: 1rem;
    font-weight: 500;
}

.order-tracking input {
    border: none;
}

.load-order-success .wrapper,
.add-order-success .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.load-order-online .box .percent {
    position: relative;
    width: 150px;
    height: 150px;
}

.load-order-online svg {
    position: relative;
    width: 250px;
    height: 250px;
    transform: rotateZ(-90deg);
}

svg circle {
    width: 250px;
    height: 250px;
    fill: none;
    stroke-width: 10;
    stroke: #d9d9d9;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke-linecap: round;
}

svg circle:nth-child(1) {
    stroke-dashoffset: 0;
    stroke: #d9d9d9;
}

svg circle:nth-child(2) {
    stroke-dashoffset: 0;
    stroke: #52c1f2;
    animation: animate 2s linear 1;
}

@keyframes animate {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.container-box {
    height: auto !important;
    padding: 1rem;
}
.my-box-text {
    padding: 10px;
    margin-bottom: 38px;
    box-shadow: none !important;
    border: 0px solid !important;
}

.box-row {
    display: flex;
    position: relative;
}

.box-row::after {
    content: "";
    width: 3px;
    height: 70px;
    background-color: black;
    left: 23px;
    position: absolute;
    display: block;
    top: 45px;
}

.box-row:nth-child(4)::after {
    display: none;
}

.box-row i {
    margin-left: 7px;
    margin-right: 10px;
    font-size: 34px;
}

.my-box-text h2 {
    font-size: 18px;
    color: black;
    margin-top: 7px;
}

.my-box-text p {
    font-size: 16px;
    color: #877f7f;
    margin-left: 50px;
}

.selected-box {
    border: 2px solid var(--indigo) !important;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.15) !important;
    /* height: 68px !important; */
    /* margin-bottom: 22px; */
}

.delivery-man .wrapper p {
    margin-bottom: 2px;
}

i.far.fa-star {
    cursor: pointer;
}
i.fas.fa-star {
    color: var(--yellow);
    cursor: pointer;
}

.registration-form {
    border: 1px solid #cccccc;
    padding: 1rem;
}
form.registration-form label {
    font-weight: bold;
    margin-top: 8px;
}
form.registration-form .btn.confirm {
    background-color: var(--primary);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.8rem;
    transition: 0.5s;
}

form.registration-form .btn.confirm:hover {
    background: var(--red);
}
.registartionpage2 {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.border-col {
    border: 1px solid #ccc;
    width: 100%;
    padding: 2rem;
}
.border-col img {
    margin: 0px auto;
    display: table;
    width: 189px;
}
.border-col p {
    font-size: 23px;
    color: #ccc;
}
.border-col a {
    color: black;
    font-size: 32px;
    font-weight: bold;
    display: block;
    text-align: right;
}
.order-list.border-0 {
    height: 166px;
    overflow-y: scroll;
}

.administration .wrapper,
.todays-orders .wrapper {
    font-size: 1rem;
}

.administration .wrapper nav .pagination {
    justify-content: center;
}

.fas.fa-times {
    cursor: pointer;
}
.fas.fa-times.active {
    color: #f40606;
}

.new-suivre-btn {
    width: 100%;
    display: table;
}
.new-suivre-btn a.btn {
    float: right;
    background: #f40606 !important;
}

.page-item.active .page-link {
    background-color: var(--success);
    border-color: var(--success);
}

.page-link {
    color: var(--gray-dark);
}



a.btn.searchBtnwithInput {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: -10px;
    z-index: 55;
    top:-1px
}