:root {
    --primary-color: #8e51ff;
    --primary-color2: #5840FF;
    --secondary-color: #00AAFF;
    --text-dark: #0A0A0A;
    --color-gray: #404040;
    --color-dark: #0d1c3d;
    --min-sidebar-width: 100px;
}
body{
  font-family: "Inter", sans-serif;
  background: #f4f5f7 !important;
}
nav.navbar {
    background: #fff;
    /* box-shadow: 0px 5px 10px rgba(44, 62, 80, 0.05); */
    padding: 16px 0px;
    margin-bottom: 40px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark);
    font-family: "Inter", sans-serif;
    font-weight: 600;
}
label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 4px;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}
.f-13 {
    font-size: 13px !important;
}
.f-14 {
    font-size: 14px !important;
}
.form-control, .form-select {
    border: 1px solid #d1d5dc !important;
    font-size: 13px;
    border-radius: 8px;
    color: #4a5565;
    padding: 8px 14px;
    box-shadow: none !important;
}
.order-status-search .btn {
    position: absolute !important;
    top: 0;
    bottom: 0;
    right: 0;
    width: 120px;
  	background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
  border-radius: 8px;
} 
.card {
    box-shadow: 0 5px 20px rgba(173, 181, 217, .03);
    background-color: #fff;
    border: 0px;
    border-radius: 10px;
}
.card-title {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
.order-tracking {
    background: #fcfbfc;
    padding: 20px;
    border-radius: 20px;
}
.order-tracking ul {
    display: flex;
    width: 100%;
    list-style: none;
    margin: 0px;
    padding: 0px;
    position: relative;
}
.order-tracking li {
    width: 100%;
    text-align: center;
    position: relative;
}
.order-tracking ul li img {
    height: 40px;
    margin-bottom: 40px;
}
.order-tracking li h6 {
    margin-bottom: 5px;
}
.order-tracking li p {
    margin: 0px;
    font-size: 14px;
}
.order-tracking li:before {
    content: '';
    position: absolute;
    top: 58.4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #fff;
    z-index: 9;
    border-radius: 50%;
    outline: 5px solid #d9d9d9;
}
.order-tracking li.active:before {
    background: #fff;
    outline: 5px solid var(--primary-color);
}
.order-tracking li.active:first-child:after {
    transform: translateX(-30%);
}
.order-tracking li.active:after {
    content: '';
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    width: 102%;
    height: 6px;
    background: var(--primary-color);
    z-index: 3;
    border-radius: 10px;
}
.order-tracking ul:after {
    content: '';
    background: #d9d9d9;
    height: 6px;
    width: 90%;
    position: absolute;
    top: 58px;
    left: 5%;
    border-radius: 20px;
}
.timeline {
    position: relative;
    padding: 20px 50px;
}
.timeline-item {
    position: relative;
    margin-bottom: 20px;
    display: flex;
}
.timeline-date {
    min-width: 110px;
    text-align: right;
    font-size: 14px;
    color: rgba(33, 37, 41, 0.75);
}
.timeline-date .time {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 16px;
}
.timeline-icon {
    position: absolute;
    left: 145px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    line-height: 20px;
    border: 3px solid var(--secondary-color);
    z-index: 9;
}
.timeline-content {
    margin-left: 40px;
    padding-left: 35px;
    position: relative;
}
.timeline-content:before {
    content: '';
    position: absolute;
    left: 0px;
    height: 120%;
    border-left: 1px dashed #ccc;
    top: 10px;
}
.badge {
    font-weight: 500;
    border-radius: 20px;
    line-height: 1.3;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgb(85 204 149) !important;
}