/* Define color variables */
:root {
    --primary-color: #F72D77;
    --primary-dark: #e61360;
    --primary-light: #fc5793;
    --low-primary: rgba(252, 87, 147, 0.3);
    --gray-color: #6b6b6b;
    --light-gray-color: rgb(252, 252, 252);
    --black: #000000;
    --white: #ffffff;

    --card-gradient-1: linear-gradient(170deg, #01E4F8 0%, #1D3EDE 100%);
    --card-gradient-2: linear-gradient(170deg, #B4EC51 0%, #429321 100%);
    --card-gradient-3: linear-gradient(170deg, #C86DD7 0%, #3023AE 100%);
}

/* This file is to add custom css for FRONTEND of this website */

body {
    font-family: "Afacad", sans-serif;
}

button, input, optgroup, select, textarea {
    font-family: "Afacad", sans-serif;
}

/* Generic CSS */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 20px;
}

.h6, h6 {
    font-size: .85rem;
}

section {
    padding: 3rem 0.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 10px;
}

label {
    margin-bottom: 15px;
}

img {
    border-radius: 0.25rem;
}

svg {
    width: 20px;
}

.top-5 {
    top: 5rem;
}

.form-control {
    padding: 10px 15px;
    /* border: none; */
}

.is-invalid {
    border-color: #dc3545;
}

.is-valid {
    border-color: none;
}

.row {
    margin-bottom: 1rem;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-gray {
    background-color: var(--gray-color) !important;
}

.bg-light-gray {
    background-color: var(--light-gray-color) !important;
}

.bg-low-primary {
    background-color: var(--low-primary) !important;
}

.bg-gradient {
    background-color: var(--primary-color);
    /* background-image: linear-gradient(to right, var(--primary-color) 100%, var(--primary-color) 60%); */
}

.bg-primary-gradient {
    background: radial-gradient(circle, var(--primary-dark) 0%, var(--primary-light) 100%);
}

.bg-primary-light-gradient {
    background: radial-gradient(circle, var(--primary-light) 0%, var(--primary-color) 100%);
}

.text-logo {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 1rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-right {
    text-align: right;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-24 {
    font-size: 24px;
}

.fs-lg {
    font-size: 3rem;
}

.fs-md {
    font-size: 2rem;
}

.fs-xs {
    font-size: 1rem;
}

.fs-xxs {
    font-size: 0.75rem;
}

/* Margin Right */
.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 1rem;
}

.mr-4 {
    margin-right: 1.5rem;
}

.mr-5 {
    margin-right: 3rem;
}

/* MArgin left */

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 1rem;
}

.ml-4 {
    margin-left: 1.5rem;
}

.ml-5 {
    margin-left: 3rem;
}

/* Padding Right */

.pr-1 {
    padding-right: 0.25rem;
}

.pr-2 {
    padding-right: 0.5rem;
}

.pr-3 {
    padding-right: 1rem;
}

.pr-4 {
    padding-right: 1.5rem;
}

.pr-5 {
    padding-right: 3rem;
}


/* Padding Left */

.pl-1 {
    padding-left: 0.25rem;
}

.pl-2 {
    padding-left: 0.5rem;
}

.pl-3 {
    padding-left: 1rem;
}

.pl-4 {
    padding-left: 1.5rem;
}

.pl-5 {
    padding-left: 3rem;
}

/* Button CSS */

.btn {
    padding: 10px 25px;
    border: none;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 11px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-paypal {
    background-color: #00457C;
    color: var(--white);
}

.btn-paypal:hover {
    background-color: #025eaa;
    color: var(--white);
}

.btn-stripe {
    background-color: #6772e5;
    color: var(--white);
}

.btn-stripe:hover {
    background-color: #4a56c6;
    color: var(--white);
}

.btn-google {
    background-color: #EB4335;
    color: var(--white);
}

.btn-google:hover {
    background-color: #f32b18;
    color: var(--white);
}


.btn-facebook {
    background-color: #0075FF;
    color: var(--white);
}

.btn-facebook:hover {
    background-color: #005ac2;
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active .btn-primary:focus-visible {
    background-color: var(--primary-dark);
    border: none;
}


.btn-primary-outline {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.heading h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.heading h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

.heading p {
    font-size: 1rem;
    /* font-weight: 500; */
    margin-bottom: 15px;
}

.vertical-line {
    width: 2px;
    /* Adjust the width as needed */
    height: 100px;
    /* Adjust the height as needed */
    background-color: black;
    /* Adjust the color as needed */
}

.rounded-10 {
    border-radius: 25px;
}

.border-left {
    border-left: 1px solid var(--black);
}

.table .thead-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

table thead tr th {
    font-size: 14px;
}

table tbody tr td {
    font-size: 14px;
}

.w-30 {
    width: 30%;
}

w-70 {
    width: 70%;
}

.border-radius-1 {
    border-radius: .25rem;
}

/* Navbar Section */

.navbar {
    padding: 0;
}

.nav-link {
    color: var(--black);
}

.nav-link:hover {
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link {
    color: #878787;
    font-size: 14px;
    font-weight: 600;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 20px;
    padding-right: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    opacity: 1 !important;
}

.navbar-light .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    z-index: -1;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--white);
}

.navbar-light .navbar-nav .nav-link.active:before {
    visibility: visible;
    background-color: var(--primary-color);
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--white);
}

.navbar-light .navbar-nav .nav-link:hover:before {
    visibility: visible;
    background-color: var(--primary-color);
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.dropdown-menu {
    background-color: transparent;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: -190px;
}

.card {
    min-width: 100px;
    border: none;
    border-radius: 5px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    margin-bottom: 1rem;
}

.card-transparent {
    background-color: transparent;
}

.card:hover {
    box-shadow: 0 5px 20px 0 rgba(17, 17, 26, .1);
}

.card .card-header {
    background-color: white;
    padding: 30px 30px 5px 30px;
    color: var(--black);
    border: none;
}


.card .card-header-primary {
    background-color: var(--primary-color);
    padding: 15px;
    color: var(--white);
}

.card .card-body {
    padding: 2rem;
}


.alert-trim {
    display: inline-block;
}

/* Header Section */
#pageheader {
    height: 550px;
    background-size: cover;
    background-position: center;
}

#pageheader .content {
    width: 550px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
}

#pageheader .content h3 {
    font-size: 36px;
    padding-bottom: 10px;
}

#pageheader .content p {
    font-size: 16px;
    padding-bottom: 20px;
}


/* How It Works Section */

.whybring {
    padding: 50px 0;
    margin: 50px 0;
}

/* send-items */

.send-items {
    padding: 20px 0;
}

.send-items .item {
    margin-bottom: 24px;
    border-radius: 0.25rem;
}

.send-items .item .image {
    position: relative;
    overflow: hidden;
}

.send-items .item .image::before {
    content: "";
    left: 0;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: all .4s;
    position: absolute;
    opacity: 0;
    background: linear-gradient(180deg, rgba(1, 25, 255, 0) 0, var(--primary-color) 100%);
}

.send-items .item .image::after {
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: all .4s;
    position: absolute;
    background: linear-gradient(180deg, rgba(13, 14, 29, 0) 0, #0d0e1d 100%);
}

.send-items .item .image:hover::before {
    opacity: 1;
}

.send-items .item .image img {
    transition: all .4s;
    height: 300px;
    width: 100%;
}

.send-items .item .image:hover img {
    transform: scale(1.1);
}


.send-items .item .image .content {
    bottom: 28px;
    left: 28px;
    z-index: 1;
    width: calc(100% - 56px);
    position: absolute;
    transition: all .4s;
    color: var(--white);
}

/* Customer Reviews */



/* Auth Pages CSS  */

.authpage {
    overflow-x: hidden;
}

.authpage .switch-user a {
    float: right;
    color: var(--primary-color);
    margin: 10px 15px;
}

.authpage .switch-user a:hover {
    color: var(--primary-dark);
}

.authpage .card {
    margin: auto 50px;
    border: none;
}

.authpage .card .card-body img {
    height: 50px;
    margin-bottom: 10px;
}

.authpage .card .card-body h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.authpage .card .card-body p {
    font-size: 14px;
    margin-bottom: 20px;
}

.authpage .card .card-body .forgot-password a {
    float: right;
    font-size: 12px;
}

.authpage .card .card-body .toggle-password {
    position: absolute;
    right: 30px;
    top: 13px;
}

.authpage .card .card-body .toggle-confirm-password {
    position: absolute;
    right: 30px;
    top: 13px;
}

.authpage .card .card-body .image-selection img {
    height: 100px;
    width: 100px;
    object-fit: cover;
}

.authpage .card .card-body .image-selection a {
    position: absolute;
    right: 5px;
    bottom: 10px;
    padding: 5px;
    height: 35px;
    width: 35px;
    color: var(--primary-color);
}


.authpage .card .card-body .image-selection a:hover {
    color: white;
    background-color: var(--primary-color);
}

.authpage-user {
    background: #f6f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Afacad", sans-serif;
    height: 100vh;
}

.authpage-user h1 {
    font-weight: bold;
    margin: 0;
}



.authpage-user p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 5px 0 20px;
}

.authpage-user span {
    font-size: 12px;
}

.authpage-user a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}



.authpage-user form {
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
}

.authpage-user .social-form {
    flex-direction: row !important;
    padding: 0 10px;
}


.authpage-user .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 550px;
}

.authpage-user .form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.authpage-user .sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.authpage-user .container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.authpage-user .sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.authpage-user .container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.authpage-user .overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.authpage-user .container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.authpage-user .overlay {
    background: var(--primary-light);
    background: -webkit-linear-gradient(to right, var(--primary-dark), var(--primary-light));
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: var(--white);
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.authpage-user .container.right-panel-active .overlay {
    transform: translateX(50%);
}

.authpage-user .overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.authpage-user .overlay-panel img {
    margin-bottom: 1rem;
    width: 150px;
}

.authpage-user .overlay-panel h2 {
    font-size: 1.5rem;
}

.authpage-user .overlay-left {
    transform: translateX(-20%);
}

.authpage-user .container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.authpage-user .overlay-right {
    right: 0;
    transform: translateX(0);
}

.authpage-user .container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.authpage-user .social-container {
    margin: 20px 0;
}

.authpage-user .social-container a {
    border: 1px solid #DDDDDD;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
}

/* CSS for Mobile */

@media screen and (max-width: 768px) {
    .authpage-user .sign-in-container {
        width: 100%;
    }

    .authpage-user .sign-up-container {
        width: 100%;
    }
}

/* Auth Page CSS End */

/* Frontend Header CSS Start */
.frontend-header {
    z-index: 0;
    text-align: center;
    padding: 60px 0;
    position: relative;
    background-size: cover;
    background-position: center center;
}

.frontend-header::before {
    content: " ";
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0.5);
}

.frontend-header .title h1 {
    margin-bottom: 15px;
    color: var(--white);
}

.frontend-header .title p {
    color: var(--white);
}

/* Footer CSS  */
footer p a {
    text-decoration: none;
    color: var(--white);
}

footer p a:hover {
    color: var(--primary-color);
}

footer hr {
    width: 60px;
    height: 2px;
}

/* User Side Bar  */

.navbar-left,
.footer-left, .main-left {
    margin-left: 250px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #f8f9fa;
    /* color: #fff; */
    padding: 20px;
    transition: transform 0.3s ease;
    z-index: 9999;
    overflow-y: scroll;
}

.sidebar .navbar-brand {
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-hidden {
    transform: translateX(-250px);
}

.sidebar .nav-item {
    list-style: none;
}

.sidebar .nav-item .nav-link {
    display: inline-table;
    color: var(--gray-color);
    font-size: 16px;
    padding: 10px;
    font-weight: 600;
}

.sidebar .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.sidebar .nav-item .nav-link:active {
    color: var(--primary-color);
}

.sidebar .nav-item .nav-link a {
    padding-left: 5px;
    color: var(--gray-color);
    text-decoration: none;
}

.sidebar .nav-item .nav-link a:hover {
    color: var(--primary-color);
}

.sidebar .nav-item .nav-link a:active {
    color: var(--primary-color);
}

.sidebar .nav-item .nav-link i {
    padding-right: 0.5rem;
}

/* Accordin CSS  */

.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--primary-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}



/* CUSTOM STATISTICS CARDS CSS */

.statistics {
    padding: 10px 0;
    /* margin: 50px 0; */
}


/* Edit Profile Tabs CSS  */

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.nav-pills .nav-link {
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}


/* Booking Form Stepper Page CSS  */

.booking-form .card .card-body .calculated-amount .item {
    display: flex;
    justify-content: space-between;
}

.booking-form .location-div {
    position: absolute;
    bottom: 0;
    left: 35px;
    width: 100%;
}

.booking-form .parcels .parcel-type {
    padding: 15px;
    background-color: var(--light-gray-color);
    color: var(--black);
    cursor: pointer;
    border-radius: 5px;
}


.booking-form .parcels .active-parcel {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
}

.booking-form #regForm {
    background-color: #ffffff;
    margin: 0px auto;
    font-family: Raleway;
    padding: 40px;
    border-radius: 10px
}



.booking-form input.invalid {
    background-color: #ffdddd
}

.booking-form .tab {
    display: none
}


.booking-form button:hover {
    opacity: 0.8
}

.booking-form #prevBtn {
    background-color: var(--primary-light)
}

.booking-form .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.25;
}

.booking-form .step.active {
    opacity: 1
}

.booking-form .step.finish {
    background-color: var(--primary-dark);
}

.booking-form .all-steps {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px
}

.booking-form .thanks-message {
    display: none
}

.booking-form .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default radio button */

.booking-form .container input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}


/* On mouse-over, add a grey background color */

.container:hover input~.checkmark {
    background-color: #ccc;
}


/* When the radio button is checked, add a blue background */

.container input:checked~.checkmark {
    background-color: #2196F3;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.container input:checked~.checkmark:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}


/* Booking Detail page */


.progressdiv {
    width: 100%;
    color: white;
    background: transparent;
}

.progressdiv .progressbar {
    counter-reset: step;
    display: grid;
}

.progressdiv .progressbar li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.progressdiv .progressbar li:last-child {
    margin-bottom: 0;
}

.progressdiv .progressbar li p {
    color: var(--gray-color);
}

.progressdiv .progressbar li.active p {
    color: var(--primary-dark);
}

.progressdiv .progressbar li h6 {
    color: var(--gray-color);
    margin-bottom: 5px;
    font-size: 14px;
    width: 120px;
}

.progressdiv .progressbar li.active h6 {
    color: var(--primary-dark);
}


.progressdiv .progressbar li h5 {
    color: var(--gray-color);
    margin-bottom: 5px;
    font-size: 14px;
    width: 100px;
}

.progressdiv .progressbar li.active h5 {
    color: var(--primary-dark);
}

/* Circles */
.progressdiv .progressbar li .circle {
    position: relative;
}

.progressdiv .progressbar li .circle:before {
    content: counter(step);
    counter-increment: step;
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: var(--gray-color);
    /* Center # in circle */
    line-height: 39px;
}

.progressdiv .progressbar li:not(:last-child) .circle:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 50px;
    background: var(--gray-color);
    top: 40px;
    /* half of height Parent (li) */
    left: 50%;
    z-index: 9999;
}


.progressdiv .progressbar li:first-child:after {
    content: none;
}

.progressdiv .progressbar li.active .circle:before {
    background: var(--primary-color);
    content: "✔";
}

.progressdiv .progressbar li.active .circle:after {
    background: var(--primary-color);
}


/* Responsive CSS */
/* For mobile phones: */
@media only screen and (max-width: 768px) {

    #pageheader .content {
        padding: 30px 15px;
    }

    #pageheader .content h3 {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .footer-left, .main-left {
        margin-left: 10px;
    }

    .heading h2 {
        font-size: 24px;
    }

    #aboutus .content h2 {
        font-size: 24px;
    }

    .navbar {
        padding: 20px 15px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}


/* For tablets and small desktops: */
@media only screen and (min-width: 768px) and (max-width: 1024px) {

    h5 {
        font-size: 1rem;
    }

    #pageheader {
        height: 500px;
    }


}

/* For large desktops and laptops: */
@media only screen and (min-width: 1025px) {
    #pageheader {
        height: 550px;
    }
}

/* For Mobile Devices */
@media only screen and (max-width: 767px) {

    h5 {
        font-size: 1rem;
    }


    .authpage .card {
        margin: 5px;
    }

}



/* Error Page CSS */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}


#notfound {
    position: relative;
    height: 100vh
}

#notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.notfound {
    max-width: 520px;
    width: 100%;
    line-height: 1.4;
    text-align: center
}

.notfound .notfound-404 {
    position: relative;
    height: 200px;
    margin: 0 auto 20px;
    z-index: -1
}

.notfound .notfound-404 h1 {
    font-family: montserrat, sans-serif;
    font-size: 236px;
    font-weight: 200;
    margin: 0;
    color: var(--black);
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.notfound .notfound-404 h2 {
    font-family: montserrat, sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    padding: 10px 5px;
    margin: auto;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

.notfound a {
    font-family: montserrat, sans-serif;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    padding: 13px 23px;
    background: var(--primary-color);
    font-size: 18px;
    -webkit-transition: .2s all;
    transition: .2s all
}

.notfound a:hover {
    background: var(--primary-dark);
    /* background: var(--white) */
}

@media only screen and (max-width:767px) {
    .notfound .notfound-404 h1 {
        font-size: 148px
    }
}

@media only screen and (max-width:480px) {
    .notfound .notfound-404 {
        height: 148px;
        margin: 0 auto 10px
    }

    .notfound .notfound-404 h1 {
        font-size: 86px
    }

    .notfound .notfound-404 h2 {
        font-size: 16px
    }

    .notfound a {
        padding: 7px 15px;
        font-size: 14px
    }
}


/* tracking Page CSS */
.tracking .tracking-list {
    border: 1px solid var(--light-gray-color);
}

.tracking .tracking-item {
    border-left: 4px solid var(--primary-color);
    position: relative;
    padding: 2rem 0.5rem 0.5rem 1.5rem;
    font-size: 0.9rem;
    margin-left: 3rem;
    min-height: 5rem;
}

.tracking .tracking-item:last-child {
    padding-bottom: 4rem;
}

.tracking .tracking-item .tracking-date {
    margin-bottom: 0.5rem;
}

.tracking .tracking-item .tracking-date span {
    color: var(--gray-color);
    font-size: 85%;
    padding-left: 0.4rem;
}

.tracking .tracking-item .tracking-content {
    padding: 0.5rem 0.8rem;
    background-color: #f4f4f4;
    border-radius: 0.5rem;
}

.tracking .tracking-item .tracking-content span {
    display: block;
    color: #767676;
    font-size: 12px;
}

.tracking .tracking-item .tracking-icon {
    position: absolute;
    left: -0.7rem;
    width: 1.1rem;
    height: 1.1rem;
    text-align: center;
    border-radius: 50%;
    font-size: 1.1rem;
    background-color: #fff;
    color: #fff;
}

.tracking .tracking-item-pending {
    border-left: 4px solid #d6d6d6;
    position: relative;
    padding: 2rem 1.5rem 0.5rem 1.5rem;
    font-size: 0.9rem;
    margin-left: 3rem;
    min-height: 5rem;
}

.tracking .tracking-item-pending:last-child {
    padding-bottom: 4rem;
}

.tracking .tracking-item-pending .tracking-date {
    margin-bottom: 0.5rem;
}

.tracking .tracking-item-pending .tracking-date span {
    color: #888;
    font-size: 85%;
    padding-left: 0.4rem;
}

.tracking .tracking-item-pending .tracking-content {
    padding: 0.5rem 0.8rem;
    background-color: #f4f4f4;
    border-radius: 0.5rem;
}

.tracking .tracking-item-pending .tracking-content span {
    display: block;
    color: #767676;
    font-size: 12px;
}

.tracking .tracking-item-pending .tracking-icon {
    line-height: 2.6rem;
    position: absolute;
    left: -0.7rem;
    width: 1.1rem;
    height: 1.1rem;
    text-align: center;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #d6d6d6;
}

.tracking .tracking-item-pending .tracking-content {
    font-weight: 600;
    font-size: 14px;
}

.tracking .tracking-item .tracking-icon.status-current {
    width: 1.9rem;
    /* height: 1.9rem; */
    left: -1.1rem;
}

.tracking .tracking-item .tracking-icon.status-intransit {
    color: var(--primary-color);
    font-size: 0.6rem;
}

.tracking .tracking-item .tracking-icon.status-current {
    color: var(--primary-color);
    font-size: 0.6rem;
}

@media (min-width: 992px) {
    .tracking .tracking-item {
        margin-left: 8rem;
    }

    .tracking .tracking-item .tracking-date {
        position: absolute;
        left: -11rem;
        width: 7.5rem;
        text-align: right;
    }

    .tracking .tracking-item .tracking-date span {
        display: block;
    }

    .tracking .tracking-item .tracking-content {
        padding: 0;
        background-color: transparent;
    }

    .tracking .tracking-item-pending {
        margin-left: 8rem;
    }

    .tracking .tracking-item-pending .tracking-date {
        position: absolute;
        left: -11rem;
        width: 7.5rem;
        text-align: right;
    }

    .tracking .tracking-item-pending .tracking-date span {
        display: block;
    }

    .tracking .tracking-item-pending .tracking-content {
        padding: 0;
        background-color: transparent;
    }
}

.tracking .tracking-item .tracking-content {
    font-weight: 600;
    font-size: 14px;
}


/* Pop up image css */

.image-popup {
    cursor: pointer;
}

.imageModal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

.imageModal .modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 80%;
    max-height: 80%;
}

/* The Close Button */
.imageModal .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
}

.imageModal .close:hover,
.imageModal .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Content (image) */
.imageModal .modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

.parcels .selected {
    border: 2px solid var(--primary-color);
}

/* Image Upload preview */

.image-upload-section {
    position: relative;
    display: inline-block;
    border: 2px dashed #ccc;
    padding: 20px;
    width: 200px;
    text-align: center;
    border-radius: 8px;
}

.image-preview img {
    width: 150px;
    height: 130px;
    margin-right: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.upload-icon {
    cursor: pointer;
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 2px solid #ccc;
    border-radius: 50%;
    line-height: 60px;
    font-size: 24px;
    color: #333;
    background-color: #f9f9f9;
    margin: 10px auto;
}

.image-upload-section input[type="file"] {
    display: none;
}


/* step wizard */
/* Latest compiled and minified CSS included as External Resource*/

/* Optional theme */

/*@import url('//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css');*/


.stepwizard-step p {
    margin-top: 0px;
    color: #666;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}

.stepwizard-step button[disabled] {
    /*opacity: 1 !important;
                                                                        filter: alpha(opacity=100) !important;*/
}

.stepwizard .btn.disabled,
.stepwizard .btn[disabled],
.stepwizard fieldset[disabled] .btn {
    opacity: 1 !important;
    color: #bbb;
}

.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}


/* custom stripe button */

.custom-stripe-button {
    border-radius: 10px;
    /* More rounded corners */
    background-color: #6772e5;
    /* Stripe's color */
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.custom-stripe-button:hover {
    background-color: #5469d4;
    /* Darker shade on hover */
}

/* paypal */

.custom-paypal-button {
    border-radius: 10px;
    /* More rounded corners */
    background-color: #ffc439;
    /* PayPal's button color */
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.custom-paypal-button:hover {
    background-color: #ffb700;
    /* Darker shade on hover */
}


/* paragrah tracking order side */
.custom-blur-text {
    margin-top: -12px;
    font-weight: 500;
    /* Slightly bold */
    color: rgba(117, 89, 89, 0.8);
    /* Slightly blurred dark color */

}


.tracking-item {
    background-color: #f9f9f9;
}

.tracking-item-active {
    background-color: #f9f9f9;
    /* Active background color */
    border: 2px solid #02060a !important;
    /* Highlight active status */
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: nowrap;
    /* Prevent text wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Handle long text by showing ellipsis */
}

.fw-bold {
    font-weight: 600;
    /* Make text bold */
}

.small {
    font-size: 0.85rem;
    /* Adjust font size for date and status */
}

/* dashboard profile image dropdown */
.profile-card {
    width: 260px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.profile-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.profile-card h5 {
    margin-bottom: 0;
}

.profile-card p {
    font-size: 0.875rem;
    color: #6c757d;
}

.profile-card .menu-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.profile-card .menu-item a {
    color: #373a41;
    text-decoration: none;
}

.profile-card .menu-item:first-of-type {
    border-top: none;
}

.profile-card .menu-item i {
    margin-right: 10px;
}

.profile-card .menu-item .form-check-input {
    margin-left: auto;
}


#global-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 99999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.toast-container {
    z-index: 999999999;
}


/* chat app css  */

#chat1 .form-outline .form-control~.form-notch div {
    pointer-events: none;
    border: 1px solid;
    border-color: #eee;
    box-sizing: border-box;
    background: transparent;
}

#chat1 .form-outline .form-control~.form-notch .form-notch-leading {
    left: 0;
    top: 0;
    height: 100%;
    border-right: none;
    border-radius: .65rem 0 0 .65rem;
}

#chat1 .form-outline .form-control~.form-notch .form-notch-middle {
    flex: 0 0 auto;
    max-width: calc(100% - 1rem);
    height: 100%;
    border-right: none;
    border-left: none;
}

#chat1 .form-outline .form-control~.form-notch .form-notch-trailing {
    flex-grow: 1;
    height: 100%;
    border-left: none;
    border-radius: 0 .65rem .65rem 0;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-leading {
    border-top: 0.125rem solid #39c0ed;
    border-bottom: 0.125rem solid #39c0ed;
    border-left: 0.125rem solid #39c0ed;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-leading,
#chat1 .form-outline .form-control.active~.form-notch .form-notch-leading {
    border-right: none;
    transition: all 0.2s linear;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-middle {
    border-bottom: 0.125rem solid;
    border-color: #39c0ed;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-middle,
#chat1 .form-outline .form-control.active~.form-notch .form-notch-middle {
    border-top: none;
    border-right: none;
    border-left: none;
    transition: all 0.2s linear;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-trailing {
    border-top: 0.125rem solid #39c0ed;
    border-bottom: 0.125rem solid #39c0ed;
    border-right: 0.125rem solid #39c0ed;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-trailing,
#chat1 .form-outline .form-control.active~.form-notch .form-notch-trailing {
    border-left: none;
    transition: all 0.2s linear;
}

#chat1 .form-outline .form-control:focus~.form-label {
    color: #39c0ed;
}

#chat1 .form-outline .form-control~.form-label {
    color: #bfbfbf;
}

#chat1 .form-outline {
    border-color: #39c0ed;
    position: fixed;
    bottom: 60px;
    right: 36px;
    left: 287px;
    z-index: 1080;
}

.chats.chat-header {
    background-color: #7e6c6c;
}

.chats .chat-body {
    overflow: auto;
    height: 313px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

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