@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    color: #535353;
    font-size: 16px;
}


/* ==================== common css ======================== */

a {
    text-decoration: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}

p {
    margin: 0;
}

.form-control,
.form-select {
    border-color: #00000033;
    color: #000;
    font-size: 15px;
    padding: 14px 16px;
    box-shadow: unset;
    border-radius: 8px;
}

.form-control::placeholder {
    color: #bbb;
}

.form-select:disabled {
    background-color: transparent;
}

.primary-text {
    color: #6AB221;
}

textarea.form-control {
    resize: none;
}

.form-control:focus,
.form-select:focus {
    box-shadow: unset;
    outline: 0;
    border-color: #007bbd;
}

.form-label {
    font-size: 15px;
    color: #1c252e;
    font-weight: 400;
    position: absolute;
    top: 14px;
    left: 15px;
    background: #fff;
    padding: 0 4px;
    transition: 0.2s;
    pointer-events: none;
}

.form-control:focus+.form-label,
.form-control:not(:placeholder-shown)+.form-label {
    top: -9px;
    left: 12px;
    font-size: 12px;
    color: #637381;
    font-weight: 600;
}

.form-group {
    margin-top: 24px;
    position: relative;
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.form-control.is-invalid:focus,
.form-control:invalid:focus {
    box-shadow: none;
}

.form-control.is-invalid {
    background-image: none;
}

.error {
    font-size: 12px;
    color: #ff0000;
    margin-top: 2px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.py-100 {
    padding: 100px 0 130px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #007bbd;
    border: 1px solid #007bbd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.5s;
    min-width: 137px;
    text-align: center;
}

.btn-primary:hover {
    background: none;
    color: #007bbd;
}

.btn-border {
    border: 1px solid #9c9191;
    color: #000;
    background-color: transparent;
}

.btn-border:hover {
    background-color: #007bbd;
    border: 1px solid #007bbd;
    color: #fff;
}

.main-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #007bbd;
}

.title-caption {
    color: #004b87;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.inner-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333333;
}

.medium-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #007bbd;
}

.bg-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fit-img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.section-head {
    margin-bottom: 50px;
}

.radius {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: -30px;
}


/* ===================== Header ================== */

.site-header .navbar-brand img {
    width: 60px;
    object-fit: cover;
}

.site-header .navbar {
    padding: 10px 0;
    border-bottom: 1px solid #f3f3f3;
}

.site-header .navbar-nav .nav-link {
    color: #000;
    padding: 0;
    transition: all 0.5s;
}

.site-header .navbar-nav .nav-link.active {
    color: #007bbd;
}

.site-header .navbar-nav .nav-link:hover {
    color: #007bbd;
}

.site-header .navbar-nav {
    gap: 30px;
}

.cart-icon a {
    display: inline-block;
}

.card-count {
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background-color: #6ab221;
    position: absolute;
    bottom: -6px;
    right: -8px;
    font-size: 9px;
    font-weight: bold;
}

.site-header .navbar-toggler {
    padding: 0;
    border: 0;
    box-shadow: unset;
}

.mobile-menu .offcanvas-header img {
    object-fit: cover;
    width: 40px;
}

.mobile-menu .offcanvas-header {
    border-bottom: 1px solid #ebf1f5;
    padding: 10px 15px;
}

.mobile-menu .offcanvas-body {
    padding: 15px;
}

.site-header .navbar-toggler-icon {
    width: 27px;
    height: 27px;
}

.banner-title {
    font-size: 65px;
    color: #007bbd;
    font-weight: 800;
    margin-bottom: 10px;
}

.banner-title span,
.main-title span {
    color: #5fa518;
}

.hero-banner {
    padding: 70px 0 100px;
    background-color: #d9d9d982;
}

.banner-image {
    padding-left: 40px;
}

.services-box {
    border-radius: 30px;
    overflow: hidden;
    color: #fff;
}

.services-box img {
    height: 418px;
}

.services-box .service-content .service-icon {
    height: auto;
    width: auto;
}
.service-content p{
        display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.service-content a {
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.5s;
}

.service-content a:hover {
    color: #5fa518;
}

.service-content a svg path {
    transition: all 0.5s;
}

.service-content a:hover svg path {
    stroke: #5fa518;
}

.service-content {
    position: absolute;
    bottom: 0;
    background: #04040426;
    backdrop-filter: blur(41px);
    padding: 15px 40px;
    left: 0;
    width: 100%;
    border-radius: 0 0 30px 30px;
}

.workout-content .main-title span {
    color: #4f930b;
}

.workout-content li {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.workout-content li:first-child {
    margin-top: 20px;
}

.workout-content li::before {
    content: url("../images/checkmark.svg");
}

.program-image img {
    height: 100%;
}

.program-list-step li {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.program-list-step li:last-child {
    margin-bottom: 0;
}

.count-circle {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-size: 22px;
    font-weight: 600;
    color: #333333;
}

.gallery-creations .section-head .main-title span {
    color: #007bbd;
}

.gallery-creations .nav-pills {
    margin-top: 35px;
}

.gallery-creations .nav-pills .nav-link {
    color: #ffffffa1;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 30px;
    background: none;
    border: 1px solid transparent;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-creations .nav-pills .nav-link.active {
    border-color: #007bbd;
    color: #0090dd;
}

.gellery-box {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gellery-box img {
    height: 400px;
}

.gellery-text .main-title {
    font-size: 25px;
    color: #fff;
}

.gellery-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 0px 40px 15px;
    background: linear-gradient(0deg, #000000 8.16%, rgba(0, 0, 0, 0) 93.62%);
    height: 70%;
    display: flex;
    align-items: end;
}

.slide-arrow.owl-theme .owl-nav [class*="owl-"] {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    border: 1px solid #ffffff45;
    color: #fff;
    margin: 0;
    transition: all 0.5s;
}

.slide-arrow.owl-theme .owl-nav {
    margin-top: 0;
}

.gallery-creations .slide-arrow.owl-theme .owl-nav {
    display: flex;
    gap: 15px;
    position: absolute;
    top: -100px;
    right: 0;
}

.slide-arrow.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #fff;
    color: #000;
}

.gallery-creations .owl-carousel .owl-stage-outer {
    display: contents;
}

.step-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ebf1f5;
    border-radius: 50%;
    margin: 0 auto 50px;
}

.work-steps {
    display: flex;
    margin: auto;
}

.work-steps .step:last-child .line {
    display: none;
}

.work-steps .step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 50px;
}

.work-steps .step .line {
    content: "";
    position: absolute;
    top: 43px;
    right: -21%;
    width: 45%;
    height: 2px;
    border-top: 3px dashed #5fa51866;
}

.work-steps .step .line:before,
.work-steps .step .line::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #5fa518;
}

.work-steps .step .line::after {
    left: unset;
    right: 0;
}

.testimonial-box {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #cacaca;
    border-radius: 10px;
}

.testimonial-slide .testimonial-profile img {
    width: 60px;
    height: 60px;
    min-width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ebebeb;
}

.testimonial-profile .inner-title {
    font-size: 16px;
}

.testimonial-profile p {
    font-size: 14px;
}

.testimonials .slide-arrow.owl-theme .owl-nav [class*="owl-"] {
    height: 42px;
    width: 42px;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}

.testimonials .owl-carousel .owl-nav button.owl-prev {
    left: -60px;
}

.testimonials .owl-carousel .owl-nav button.owl-next {
    left: unset;
    right: 0px;
}

.testimonial-slide {
    padding-right: 60px;
}

.logo-info img {
    width: 99px;
    object-fit: cover;
}

.footer-menu li a {
    color: #fff;
    margin-bottom: 15px;
    transition: all 0.5s;
    display: inline-block;
    font-weight: 400;
}

.footer-menu li:last-child a {
    margin-bottom: 0;
}

.footer-menu li a:hover {
    color: #5fa518;
}

.footer-menu .inner-title {
    font-size: 16px;
    margin-bottom: 20px;
}

.site-footer {
    padding: 70px 0;
}

.footer-menu .social-list li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    background-color: #2a2929;
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
}


/* =================== Auth page ===================== */

.auth-head img {
    height: 108px;
    object-fit: cover;
}

.auth-head {
    margin-bottom: 30px;
}

.auth-form-box {
    box-shadow: 0px 4px 4px 0px #18181933;
    background-color: #ffffff;
    padding: 30px 25px;
    width: 100%;
    max-width: 420px;
    margin: auto;
    border-radius: 16px;
}

.forgot-pass a {
    font-size: 14px;
    color: #1c252e;
    transition: all 0.5s;
    margin-top: 10px;
    display: inline-block;
}

.forgot-pass a:hover {
    color: #007bbd;
}

.get-started {
    color: #637381;
    font-size: 14px;
}

.get-started a {
    color: #6ab221;
    font-weight: bold;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

.privacy-terms {
    font-size: 12px;
    color: #637381;
}

.privacy-terms a {
    color: #1c252e;
    text-decoration: underline;
}


/* ================ Contact us ================= */

.inner-banner {
    padding: 100px 0 130px;
    background-color: #efefed;
}

.contact-info-box {
    background: #007bbd12;
    border: 1px solid #e1e1e1;
    border-radius: 30px;
    padding: 35px;
    height: 100%;
    gap: 20px;
    color: #000;
}

.contact-info-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-box .icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #007bbd;
}

.contact-info-box a {
    color: #000;
    transition: all 0.5s;
}

.contact-info-box a:hover {
    color: #007bbd;
}

.contact-form .map-contact {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.contact-form {
    border: 1px solid #b2b2b2;
    border-radius: 30px;
    padding: 25px;
}
.have-questions .contact-form .foodtruck-img img{
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}

/* ================== About Us ==================== */

.choose-list {
    border: 1px solid #919eab61;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
}

.choose-list li {
    width: 50%;
    padding: 20px 15px;
    color: #000000;
    text-align: center;
    border-top: 1px solid #919eab61;
}

.choose-list li p {
    margin-top: 15px;
}

.choose-list li:first-child,
.choose-list li:nth-child(2) {
    border-top: 0;
}

.choose-list li:nth-child(odd) {
    border-right: 1px solid #919eab61;
}

.our-mission-content img {
    max-height: 712px;
    object-fit: cover;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}

.our-mission-content p {
    padding-right: 80px;
}

.foodtruck-img,
.foodtruck-img img {
    height: 100%;
}


/* ==================== product listing ======================== */

.inner-title.heading {
    color: #007bbd;
}

.filtering ul {
    display: flex;
    gap: 15px;
    border-left: 1px solid #00000033;
    padding-left: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filtering li a {
    padding: 3px 14px;
    font-weight: 600;
    color: #000;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.5s;
    border: 1px solid #d4d4d4;
}

.filtering li a:hover,
.filtering li .active,
.pagination ul a:hover,
.pagination ul .active {
    color: #007bbd;
    border-color: #007bbd;
}

.filtering li a.clearall {
    color: #6ab221;
    border: 0;
    padding: 0;
}

.filtering .form-select {
    border-color: #9c9191;
    border-radius: 50px;
    padding: 5px 15px;
    width: auto;
    font-weight: 600;
    min-width: 129px;
}

.filtering {
    margin: 30px 0 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.product-box {
    border: 1px solid #d4d4d4;
    border-radius: 30px;
    height: 100%;
}

.product-content {
    padding: 15px;
}

.product-content .inner-title {
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.product-box img {
    border-radius: 30px 30px 0 0;
    height: 100%;
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.about-product {
    display: flex;
}

.about-product li {
    border-right: 1px solid #00000033;
    padding: 0 15px;
    font-size: 14px;
}

.about-product li:first-child {
    padding-left: 0;
}

.about-product li:last-child {
    border-right: 0;
    padding-right: 0;
}

.about-product li span {
    color: #000;
    font-weight: 600;
}

.about-product p {
    color: #888888;
}

.box-footer .inner-title {
    font-size: 20px;
}

.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    width: 100%;
}

.pagination ul a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #dfe3e8;
    font-size: 14px;
    color: #212b36;
    font-weight: bold;
    background-color: #fff;
    transition: all 0.5s;
}

.pagination ul .arrow-disable a {
    background-color: #919eab;
    border-color: #919eab;
}


/* ================= product detail ==================== */

.product-tags li {
    padding: 6px 15px;
    color: #000000;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid #d4d4d4;
}

.product-info .about-product li {
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-info .about-product {
    gap: 30px;
    flex-wrap: wrap;
}

.share-with-social ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-with-social p {
    font-weight: bold;
    color: #1e212c;
}

.price {
    line-height: normal;
}

.quantity-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4d4d4;
    border-radius: 50px;
    padding: 10px 16px;
    width: fit-content;
    font-size: 20px;
    gap: 20px;
    color: #000000;
}

.quantity-btn {
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}

.button-quantity .btn-primary {
    min-width: 186px;
}

.main-image img {
    border-radius: 30px;
    cursor: pointer;
    height: 511px;
    object-fit: cover;
    border: 1px solid #d4d4d442;
    padding: 10px;
}

.thumbs {
    display: flex;
    gap: 25px;
}

.thumbs a {
    position: relative;
}

.thumbs img {
    width: 127px;
    height: 125px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbs img:hover {
    transform: scale(1.05);
}

.fancybox-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: #0000005e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 26px;
}

.product-detail-wrp {
    border-top: 1px solid #d4d4d4;
}


/* ==================== Cart Page ===================== */

.cart-checkout {
    font-size: 14px;
}

.stepper-wrp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.stepper-wrp .step {
    position: relative;
    text-align: center;
    flex: 1;
}

.stepper-wrp .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.stepper-wrp .step.completed:not(:last-child)::after {
    background: #007bbd;
}


/* Circle base */

.stepper-wrp .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
}

.stepper-wrp .circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 8px;
    width: 8px;
    background-color: #dfe3e8;
    border-radius: 50%;
}

.stepper-wrp .completed .circle::after {
    content: unset;
}

.stepper-wrp .active .circle::after {
    background-color: #007bbd;
}

.stepper-wrp .completed .circle::before {
    content: "\f00c";
    color: #007bbd;
    font-family: "FontAwesome";
    font-size: 15px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stepper-wrp .step label {
    color: #919eab;
}

.stepper-wrp .active label,
.stepper-wrp .completed label {
    color: #1c252e;
    font-weight: 600;
}

.cart-head {
    background-color: #007bbd;
    padding: 24px;
}

.cart-head .inner-title {
    color: #fff;
}

.cart-item a {
    font-weight: bold;
    color: #000000;
    font-size: 14px;
    width: 240px;
    display: block;
    cursor: pointer;
}

.cart-item img {
    height: 64px;
    min-width: 64px;
    width: 64px;
    border-radius: 10px;
}

.cart-items-box th {
    background-color: #f4f6f8;
    color: #637381;
    font-weight: 600;
}

.cart-items-box th,
.cart-items-box td {
    padding: 10px;
}

.cart-items-box td {
    color: #637381;
}

.cart-items-box .form-select {
    font-weight: 500;
    padding: 10px 30px 10px 10px;
    width: auto;
    font-size: 14px;
    /* min-width: 90px; */
}

.cart-items-box .quantity-btn {
    font-size: 20px;
}

.cart-items-box .quantity-box {
    border: 1px solid #919eab33;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 15px;
    gap: 12px;
    color: #1c252e;
}

.cart-items-box .quantity-value {
    min-width: 20px;
    font-size: 14px;
}

.cart-items-box .quantity-btn {
    font-size: 20px;
}

.continue-link {
    color: #1c252e;
    font-weight: bold;
    text-transform: capitalize;
}

.order-summary td {
    color: #637381;
    padding: 0px 0 15px;
    border: 0;
    vertical-align: top;
}

.order-summary .total,
.order-summary .total-bill {
    border-top: 1px dashed #919eab33;
    padding-top: 15px;
    padding-bottom: 0;
}

.order-summary .total,
.order-summary .total-bill span {
    font-size: 16px;
    font-weight: bold;
    color: #1c252e;
}

.order-summary .total-bill span {
    color: #007bbd;
}

.order-summary .total-bill p {
    font-size: 12px;
    margin-top: 5px;
}

.order-summary .inner-title {
    margin-bottom: 20px;
}

.order-summary {
    position: sticky;
    top: 15px;
}

.discount-box {
    border: 1px solid #919eab33;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    margin-top: 24px;
}

.cart-checkout .addinfo-tag {
    border: 1px solid #919eab52;
    border-radius: 8px;
    padding: 8px;
    font-weight: bold;
    color: #1c252e;
}

.addnew-add button,
.delete-icon {
    border: 0;
    background: none;
    padding: 0;
}

.cart-checkout .button-group a,
.addnew-add button,
.discount-box a {
    color: #007bbd;
    font-weight: bold;
}

.cards-info-box {
    border: 1px solid #919eab33;
    border-radius: 16px;
    padding: 24px;
}

.cards-info-box p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #007bbd;
    font-weight: 600;
}

.cards-info-box .form-control {
    background-color: #dbe2e773;
    border-color: #dbe2e773;
}

.card-icons {
    gap: 20px;
}

.card-icons img {
    height: 33px;
    width: auto;
    object-fit: cover;
    border-radius: 0;
}

.cart-checkout .medium-title {
    color: #000;
}

.cart-checkout .inner-title {
    font-size: 18px;
}

.choose-store {
    background-color: #007bbd0f;
    padding: 15px 30px;
    border-radius: 10px;
}

.choose-store li span {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.choose-store li {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 33.33%;
    position: relative;
}

.choose-store ul {
    display: flex;
    flex-wrap: wrap;
}

.choose-store li .line {
    content: "";
    position: absolute;
    top: 22px;
    right: 6px;
    width: 18%;
    height: 2px;
    border-top: 2px dashed #5fa51866;
}

.choose-store li:last-child .line {
    display: none;
}

.choose-store li .line:before,
.choose-store li .line::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #5fa518;
}

.choose-store li .line::after {
    left: unset;
    right: 0;
}


/* ===================== After Login ======================= */

.offcanvas-header .btn-close {
    box-shadow: unset;
}

.login-header {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 9;
}

.login-header .container {
    padding: 0 70px 0 120px;
    max-width: 100%;
}

.main-content .medium-title {
    color: #121212;
}

.dash-header {
    background-color: #202020;
    padding: 20px 0px;
    position: sticky;
    top: 0;
    z-index: 9;
    padding-right: 70px;
}

.main-content,
.dash-header {
    background-color: #fff;
    margin-left: 300px;
}

.main-content {
    background-color: #007bbd0f;
    height: calc(100vh - 105px);
    overflow: auto;
}

.dash-header h2 {
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    margin: 0;
}

.header-profile img {
    height: 42px;
    width: 42px;
    min-width: 42px;
    border-radius: 50%;
    border: 1px solid #d4d4d4;
    object-fit: cover;
}

.header-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-profile .dropdown-menu {
    right: 10px !important;
    left: unset !important;
    border-radius: 10px;
    overflow: hidden;
    width: 230px;
    padding: 10px 0;
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 0;
    margin-top: 15px !important;
}

.header-profile .dropdown-item {
    font-weight: 500;
    border-top: 0;
    padding: 8px 15px;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-profile .dropdown-item:hover {
    color: #007bbd;
    background: none;
}

.header-profile .dropdown-item:hover svg path {
    stroke: #007bbd;
}

.header-profile .dropdown-item svg path {
    transition: all 0.5s;
}

.header-profile .dropdown-item.signout:hover svg path {
    stroke: #D50000;
}

.header-profile button {
    color: #000000;
    font-weight: 500;
    background: none;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-profile button.show svg {
    transform: rotate(180deg);
}

.logo-info img {
    height: 101px;
    width: auto;
    object-fit: cover;
}

.sidebar {
    width: 300px;
    background-color: #fff;
    position: fixed;
    left: 0;
    border-right: 1px solid #f3f3f3;
}

.sidebar-menus {
    height: calc(100vh - 105px);
    overflow: auto;
}


/* width */

.sidebar-menus::-webkit-scrollbar {
    width: 8px;
    border-radius: 8px;
}


/* Track */

.sidebar-menus::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}


/* Handle */

.sidebar-menus::-webkit-scrollbar-thumb {
    background: #b4b4b4;
    border-radius: 8px;
}

.logo-info {
    padding: 20px 15px;
}

.sidebar-menus li a {
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f3f3f3;
    /* transition: all 0.5s; */
    width: 100%;
    padding: 20px 30px;
}

.sidebar-menus li:first-child a {
    border-top: 0;
}

.sidebar-menus li a:hover,
.sidebar-menus li a.active {
    background: linear-gradient(90deg, #007BBD 32.43%, #02314A 100%);
    color: #fff;
}

.sidebar-menus li a svg path {
    /* transition: all 0.5s; */
    stroke: #000;
}

.sidebar-menus li a:hover svg path,
.sidebar-menus li a.active svg path {
    stroke: #fff;
}

.body-contant {
    padding: 35px 70px;
}

.main-profile input[type="file"] {
    display: none;
}

.main-profile img {
    border: 1px dashed #919eab33;
    width: 144px;
    height: 144px;
    border-radius: 50%;
    object-fit: cover;
    padding: 8px;
}

.main-profile .btn-primary {
    font-size: 14px;
    padding: 7px 18px;
    cursor: pointer;
}

.main-profile .btn-primary svg path {
    transition: all 0.5s;
}

.main-profile .btn-primary:hover svg path {
    stroke: #007bbd;
}

.inner-card {
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.12);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #919eab33;
    overflow: hidden;
    background-color: #fff;
}

.main-profile .file-upload-label {
    height: 31px;
    width: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #007bbd;
    position: absolute;
    bottom: 15px;
    right: 0;
    cursor: pointer;
}

.filed-button {
    border: 1px solid #d4d4d4;
    color: #737375;
    border-radius: 8px;
    padding: 10px 16px;
    outline: 0;
}

input.filed-button {
    max-width: 100%;
    width: 100%;
}

button.filed-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
}

.filed-head {
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.table-data {
    border: 1px solid #c3cad1;
    border-radius: 10px;
    margin-top: 35px;
    /* box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.12); */
    overflow: hidden;
    background-color: #fff;
}

th {
    color: #637381;
    border-bottom: 1px solid #e0dfdf;
    background-color: #f4f6f8;
}

th,
td {
    padding: 15px;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
}

td {
    color: #121212;
    border-bottom: 1px dashed #c3cad1;
}

tr:last-child td {
    border-bottom: 0;
}

.profile-box {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121212;
    font-weight: bold;
    color: #ffffff;
}

.status {
    padding: 8px;
    width: fit-content;
    line-height: normal;
}

.action-dropdown button {
    padding: 0;
    background: none;
    border: 0;
}

.address-content h3 {
    font-size: 14px;
    color: #1c252e;
    font-weight: bold;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.address-content h3 strong{
    font-weight: bold;
    white-space: nowrap;
}

.address-content,
.address-content a {
    font-size: 14px;
    color: #637381;
}

.address-content a {
    margin-top: 7px;
    display: inline-block;
}

.button-group {
    display: flex;
    gap: 15px;
}

.address-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    gap: 15px;
    height: 100%;
}

.address-content span {
    font-weight: 400;
    color: #637381;
}

.address-content .add-tag {
    font-size: 12px;
    color: #062b3f;
    font-weight: bold;
    background-color: #06324a29;
    padding: 2px 6px;
    width: auto;
    border-radius: 6px;
}

.card-icons {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    right: 25px;
}

.dash-box {
    text-align: center;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(117.92deg, #e6e9c5 32.68%, #c5ca89 94.57%);
    height: 100%;
}

.dash-box p {
    font-weight: 600;
    color: #494949;
    margin-bottom: 8px;
}

.no-count {
    border: 1px solid #a1a1a1;
    width: 64px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-size: 24px;
    color: #494949;
    font-weight: bold;
    border-radius: 10px;
    margin: 0 auto 15px;
}

.dash-box ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.dash-box ul li {
    text-align: center;
}

.dash-column:nth-child(2) .dash-box {
    background: linear-gradient(103.76deg, #e9e8ff 1.37%, #b4b4dd 98.63%);
}

.dash-column:nth-child(3) .dash-box {
    background: linear-gradient(111.24deg, #c5e9e1 35.26%, #7caca1 94.14%);
}

.view-link {
    color: #007bbd;
    font-size: 14px;
}

.view-btn {
    font-size: 14px;
    color: #007bbd;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #007bbd;
    display: inline-block;
    transition: all 0.5s;
}

.view-btn:hover {
    background-color: #007bbd;
    color: #fff;
}

.order-detail-page {
    font-size: 14px;
}

.order-number p {
    color: #919eab;
}

.print-edit-buttons a {
    color: #007bbd;
    font-weight: bold;
    border: 1px solid #919eab52;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    padding: 8px 12px;
    height: fit-content;
    background-color: #fff;
}

.print-edit-buttons .edit-btn {
    background-color: #007bbd;
    border-color: #007bbd;
    color: #fff;
}

.order-details-box td {
    padding: 24px 0;
}

.order-details-box .cart-item img {
    height: 48px;
    min-width: 48px;
    width: 48px;
}

.odersdetail-head {
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.order-subtotal th {
    background-color: transparent;
    color: #637381;
}

.order-details-box .order-subtotal th,
.order-details-box .order-subtotal td {
    border: 0;
    padding: 6px 0;
    text-align: end;
}

table.order-subtotal.mb-0 {
    width: 320px;
    margin-left: auto;
}

.order-history-box .history-list li h3,
.customer-profile h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1c252e;
    margin-bottom: 4px;
}

.order-history-box .history-list li p {
    font-size: 12px;
    color: #919eab;
    line-height: normal;
}

.order-history-box .history-list li {
    position: relative;
    padding-left: 25px;
    margin-top: 20px;
}

.order-history-box .history-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 22px;
    width: 1px;
    background-color: #919eab33;
    height: 70%;
}

.order-history-box .history-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #919eab33;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.order-history-box .history-list li.active::before {
    background-color: #007bbd;
}

.order-history-box .history-list li:last-child::after {
    content: unset;
}

.show-more,
.customer-profile button {
    font-size: 13px;
    font-weight: bold;
    color: #1c252e;
    padding: 0;
    border: 0;
    background: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    transition: all 0.5s;
}

.show-more:hover {
    color: #007bbd;
}

.orders-time-box {
    border: 1px dashed #919eab1f;
    padding: 20px;
    border-radius: 16px;
}

.orders-time-box li {
    margin-top: 15px;
}

.orders-time-box li:first-child {
    margin-top: 0;
}

.orders-time-box p {
    color: #919eab;
    padding-bottom: 5px;
}

.orders-time-box span,
.orders-flow-wrp li p {
    color: #1c252e;
}

.orders-flow-wrp {
    padding: 24px;
    border-bottom: 1px dashed #919eab33;
}

.orders-flow-wrp:last-child {
    border-bottom: 0;
}

.customer-profile img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.customer-profile button {
    color: #007bbd;
    gap: 10px;
    margin-top: 15px;
}

.customer-profile p,
.customer-profile a {
    color: #637381;
    margin-top: 5px;
    word-break: break-all;
}

.customer-profile strong {
    color: #1c252e;
    font-weight: normal;
}

.orders-flow-wrp li span {
    color: #637381;
    min-width: 100px;
    display: inline-block;
}

.orders-flow-wrp li {
    display: flex;
    margin-bottom: 10px;
    gap: 15px;
}

.orders-flow-wrp li:last-child {
    margin-bottom: 0;
}

.track-no {
    text-decoration: underline;
}

.pay-method {
    justify-content: space-between;
}

.pay-method input {
    border: 0;
    padding: 0;
    box-shadow: unset;
    outline: 0;
    color: #1c252e;
    width: 100%;
    text-align: end;
    padding-right: 25px;
}

.pay-method .form-icon {
    right: 0;
    top: 0;
}

.order-detail-page .inner-title {
    font-size: 18px;
}

.form-select.filed-button {
    width: auto;
    min-width: 135px;
}


/* Static Pages */

.static-pages {
    background-color: #fff;
}

.static-pages :is(h1,
    h2,
    h3,
    h4,
    h5,
    h6) {
    font-size: 22px;
    font-weight: 700;
    color: #007bbd;
    margin-bottom: 10px;
}

.static-pages ul {
    margin-bottom: 0;
    padding-left: 1rem;
}

.static-pages ul li {
    list-style: disc;
}

.static-pages p,
.static-pages ul li,
.static-pages ol li {
    margin-bottom: 10px;
    font-size: 16px;
}


/* FAQS */

.accordion .accordion-item {
    margin-bottom: 20px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-button:not(.collapsed) {
    border-radius: 30px 30px 0 0px;
    -webkit-border-radius: 30px 30px 0 0px;
    -moz-border-radius: 30px 30px 0 0px;
    -ms-border-radius: 30px 30px 0 0px;
    -o-border-radius: 30px 30px 0 0px;
}

.accordion-button {
    font-size: 18px;
}

.accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
.accordion-item:first-of-type>.accordion-header .accordion-button.collapsed,
.accordion .accordion-item {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(100);
    -webkit-filter: brightness(100);
}

.accordion-item:not(:first-of-type) {
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed) {
    background-color: #007BBD;
    color: #fff;
}

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

.accordion-body {
    color: #888888;
}

.table-responsive .dropdown-menu .dropdown-item {
    background: none !important;
    color: #000;
}

.fooddetail .inner-card {
    height: 100%;
}

.fooddetail .inner-card a {
    color: #000;
    transition: all 0.5s;
}

.fooddetail .inner-card a:hover {
    color: #007bbd;
}

.fooddetail .list-unstyled li {
    margin-bottom: 5px;
}

.fooddetail .list-unstyled li:last-child {
    margin-bottom: 0;
}

.swal2-confirm {
    color: #fff !important;
    background-color: #007BBD !important;
    border-color: #007BBD !important;
    box-shadow: unset !important;
    font-size: 16px;
    font-weight: 500;
}

.swal2-cancel {
    color: #fff !important;
    background-color: #d33 !important;
    border-color: #d33 !important;
    box-shadow: unset !important;
    font-size: 16px;
    font-weight: 500;
}

.swal2-title {
    font-size: 30px !important;
    font-weight: 600;
    margin-bottom: 0px;
    color: #000 !important;
}

.swal2-html-container {
    font-size: 16px;
}

.radio-buttons input {
    display: none;
}

.radio-btn {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    min-width: 160px;
    margin: 10px 0;
    padding: 15px;
    border: 1px solid #077dba;
    position: relative;
    text-align: center;
    box-shadow: 0 7px 12px -7px #c3c3c3;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.radio-buttons input:checked+.radio-btn {
    border: 1px solid #077dba;
    background: #077dba3b;
}

.listing-with-cal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    padding-bottom: 25px;
}

.listing-with-cal .calender-icon .form-control {
    padding: 9px 15px;
    border-radius: 25px;
}

.listing-with-cal .calender-icon .form-control {
    padding: 9px 15px;
    border-radius: 25px;
}

.listing-with-cal .calender-icon .form-control {
    padding: 9px 15px;
    border-radius: 25px;
}

.listing-with-cal .calender-icon .form-control {
    padding: 9px 15px;
    border-radius: 25px;
}

.listing-with-cal .calender-icon a {
    gap: .625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calender-section tr:last-child td {
    border-bottom: 1px solid var(--fc-border-color);
}

.fc-toolbar-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #007bbd;
}

.fc-toolbar-chunk .fc-button-primary:disabled {
    background-color: #007bbd;
    border: 1px solid #007bbd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.5s;
    min-width: 137px;
    text-align: center;
    cursor: no-drop;
}

.fc-toolbar-chunk .fc-button-primary {
    background-color: #007bbd;
    border: 1px solid #007bbd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.5s;
    min-width: 137px;
    text-align: center;
    cursor: no-drop;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.fc-toolbar-chunk .fc-next-button,
.fc-toolbar-chunk .fc-prev-button {
    min-width: auto;
}

.fc-scrollgrid-liquid a {
    color: #000;
}

.fc-h-event {
    font-size: 14px;
    padding: 3px 5px;
    background-color: #5fa518;
    color: #000;
    border: 0;
}

.fc-daygrid-day.fc-day-today {
    background-color: #5fa51830;
}

.fc-dayGridMonth-view {
    border-radius: 10px;
    /*box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.12);
    */
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.fc .fc-col-header-cell {
    color: #637381;
    border-bottom: 1px solid #e0dfdf;
    background-color: #f4f6f8;
    padding: 15px;
    font-weight: 500;
}

.filed-head .form-group label {
    white-space: nowrap;
}

.back-btn.btn-secondary {
    width: fit-content;
}

.back-btn.btn-secondary span {
    height: 25px;
}
.cart-checkout .list-group-item{
    height: 100%;
    position: relative;
    border-radius: 16px;
}
.cart-checkout .list-group-item .form-check-input{
    margin: 0;
    width: 20px;
    height: 20px;
    border-color: #dee2e6;
    box-shadow: unset;
    cursor: pointer;
    position: absolute;
    right: 24px;
    top: 24px;
}
.cart-checkout .list-group-item .form-check-input:checked{
    background-color: #007bbd;
    border-color: #007bbd;
}
.cart-checkout .list-group-item.border-primary{
    border-color: #007bbd !important;
}
.cart-checkout .list-group-item .address-content .addres-text {
    display: block;
}
.cart-checkout .list-group-item .address-content h3:last-child{
    margin-bottom: 0;
}