/* webfonts */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Thin.ttf');
    font-weight: 100;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraBold.ttf');
    font-weight: 800;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Black.ttf');
    font-weight: 900;
}



/* webfonts end */

:root {
    --primary-color: #122C91;
    --secondary-color: #252934;
    --teritory-color: #26282C;
    --light-color: #636363;
    --white-text: #fff;
    --border-color: #C3C3C3;
    --text-color: #292929;
    --heading-color: #292929;
}

html {
    margin: 0;

}

body {
    font-family: 'Inter';
    overflow-x: hidden;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    white-space: normal;
    word-break: break-word;
    font-family: 'Inter';
    line-height: 1.1;
    color: var(--heading-color);
    font-weight: 700;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 45px;
}

h3,
.h3 {
    font-size: 42px;
}

h4,
.h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

a,
p,
button,
span {
    white-space: normal;
    word-break: break-word;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    display: inline-block;
}

a:focus-visible {
    outline: transparent;
}

.page-link:focus {
    box-shadow: none;
}

.file>input[type='file'] {

    display: none;

}

p {
    font-size: 16px;
    margin: 0;
    color: var(--text-color);
}


ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.note-editable.card-block ul {
    list-style-type: disc;
    padding-inline-start: 40px;
}

button {
    transition: all 0.5s;
}

button:focus {
    box-shadow: none !important;
    outline: transparent;
}

.form-control:focus,
input {
    outline: 0;
    box-shadow: none !important;
    color: var(--teritory-color);
    border-color: var(--border-color);

}

.upload-btn {
    border: 2px dashed #324DC7;
    font-family: var(--font-medium);
    border-radius: 0;
    color: var(--primary-color);
}

input[type="checkbox"]:checked~label:before {
    background: red;
}

.formfield {
    position: relative;
    width: 100%;
}

.form-icon {
    position: absolute;
    right: 25px;
    top: 28px;
    display: flex;
    align-items: center;
    color: #C8C9D8;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    /* color:red; */
    color: #191C1D;
    margin-bottom: 1px;
}

.form-group label.error {
    font-size: 13px;
    font-weight: 500;
    color: red;
    margin-bottom: 1px;
}

.checkbox-form-group label {
    margin-bottom: 15px;
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--heading-color);
    cursor: pointer;
}

input[type="checkbox"] {
    width: 22px;
    height: 22px;
}

.form-group {
    margin-bottom: 15px;
}

.form-icon {
    position: absolute;
    right: 25px;
    top: 16px;
    display: flex;
    align-items: center;
    color: #C8C9D8;
}

.button {
    transition: all 0.5s;
    justify-content: center;
    display: inline-flex;
    text-align: center;
    align-items: center;
    gap: 5px;
    min-height: 55px;
    font-size: 16px;
    border-radius: 0;
    padding: 12px 22px;
    transition: all 0.5s;
    font-weight: 700;
    border-radius: 10px;
    min-width: 160px;
    text-transform: capitalize;
}

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

.primary-btn:hover {
    color: #fff;
    background: #0682E8;
    border-color: #0682E8;
}

.secondary-btn {
    border: 1px solid #9AACFF;
    background: #E8ECFF;
    color: #324DC7;
    font-family: var(--font-semibold);
    font-size: 18px;
}

.light-btn {
    background: #f2f2f2;
    color: #727272;
    border: 1.81px solid #E8E8E8;
}

.small-btn {
    min-height: 50px;
    padding: 11px 20px;
}

.full-btn {
    width: 100%;
    min-width: auto;
}

.form-control {
    padding: 17px 16px;
    font-size: 14px;
    min-height: 55px;
    border-radius: 6px;
    border: 1px solid #BABABA;
    line-height: 1;
}

.form-group:has(.form-icon) .form-control {
    padding-right: 55px;
}

img {
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar:horizontal {
    height: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #CECECE;
}

::-webkit-scrollbar-track {
    background: #F7F7F7;
    border-radius: 100px;
}

.container {
    max-width: 1640px;
    padding: 0 20px;
}

.login-section-wrapper {
    overflow: auto;
}

/* ---------------------- Navbar CSS Start ----------------------------------- */

.navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background: var(--secondary-color);
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

.navbar {
    padding-top: 9px;
    padding-bottom: 9px;
}

.navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}

.nav-link {
    color: #191C1D;
    font-weight: 500;
    font-size: 16px;
    padding-right: 23px !important;
    padding-left: 23px !important;
    display: inline-block;
}

.sign-in-link {
    font-weight: 700;
}

.header-btn {
    padding: 10px 30px !important;
    min-height: 49px;
    min-width: auto;
}

.header-login-btn {
    padding-left: 15px;
}

.footer-heading h4 {
    font-size: 18px;
    margin-bottom: 30px;
    color: #33313F;
    margin-top: 30px;
}

.footer-link-list>li>a {
    opacity: 0.7;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-section {
    max-width: 1392px;
    margin: 0 auto;
}

.footer-section {
    padding-bottom: 20px;
    padding-top: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

/* ---------------------- Footer CSS Start ----------------------------------- */

.footer-logo {
    max-width: 326px;
}

.footer-logo p {
    margin-top: 17px;
}

.bottom-footer-wrapper p {
    color: #908F97;
    font-size: 14px;
    text-align: center;
}

.bottom-footer-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #EBEFF2;
    max-width: 90%;
    margin: 0 auto;
}

.subscription-plan-section {
    background: #122C91;
    --text-color: var(--white-text);
    --heading-color: var(--white-text);
    padding-top: 45px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.Page-heading-box {
    text-align: center;
    margin-bottom: 30px;
}

.subscription-plan-wrapper .Page-heading-box {
    margin-bottom: 60px;
}

.Page-heading-box h2 {
    font-size: 30px;
    margin-bottom: 13px;
}

.Page-heading-box p {
    font-size: 18px;
    letter-spacing: -0.36px;
}

.sub-main-wrapper {
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

.subscription-plan-box {
    padding: 25px 26px;
    max-width: 302px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(180deg, #005FB1 0%, rgba(0, 95, 177, 0.00) 100%);
    box-shadow: 0px -6px 18px 2px rgba(0, 0, 0, 0.03);
    border: 1.5px solid #ffffff;
    transition: all 0.3s ease;
    color: #fff;
}

.header-sub-icon {
    color: #fff;
}


/* ---------------------- subscrition page CSS Start ----------------------------------- */


.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subscription-header h5 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.44px;
}

.Sub-bx-price {
    font-size: 24px;
    letter-spacing: -0.74px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.Sub-bx-price span {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.36px;
    margin-left: 3px;
}

.sub-txt p {
    font-size: 14px;
    line-height: 20.5px;
    letter-spacing: -0.28px;
    margin-bottom: 16px;
}

.sub-list ul {
    padding-left: 19px;
}

.sub-list ul li {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20.5px;
    letter-spacing: -0.28px;
    margin-bottom: 12px;
    list-style-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10" fill="none"><circle id="Ellipse 39" cx="4.71973" cy="4.85059" r="4.53613" fill="white"/></svg>');
}

.sub-btn-bx .primary-btn {
    border-radius: 7px;
    background: #0682E8;
    margin-top: 20px;
}

.subscription-plan-box:hover .header-sub-icon {
    color: #FFC531;
}

.subscription-plan-box:hover {
    border-color: #FFC531;
    background: linear-gradient(180deg, #058DF3 0%, rgba(0, 95, 177, 0.00) 100%);
}

.subscription-plan-box:hover .sub-btn-bx .primary-btn {
    background: #fff;
    color: #292929;
}

/* ---------------------- Payment page CSS Start ----------------------------------- */

.payment-method-box {
    padding: 35px 33px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #D7D7D7;
    max-width: 870px;
    width: 100%;
    margin: 0 auto;
}

.payment-type-tab {
    max-width: 392px;
    width: 100%;
    background-color: #F5F5F6;
    padding: 23px;
    text-align: center;
    border-radius: 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px;
    color: #191C1D;
    transition: all 0.3s ease-in;
}

.payment-type-tab:hover,
.payment-type-tab.active {
    background-color: var(--primary-color);
    color: #fff;
}

.payment-type {
    display: flex;
    gap: 20px;
}

.payment-method-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-top: 35px;
}

.black-btn {
    border-radius: 8px;
    border: 1px solid #191C1D;
    background: #191C1D;
    color: #fff;
}

.outline-btn {
    border-radius: 8px;
    border: 1px solid #191C1D;
}

.outline-btn:hover {
    /* color: #fff; */
    background: #122C91;
    border-color: #122C91;
}

.pay-met-btn-bx {
    display: flex;
    justify-content: flex-end;
    gap: 17px;
    margin-top: 20px;
}

.payment-method-section {
    background: #F5F5F5;
    padding-top: 45px;
    padding-bottom: 80px;
}

.db-nav {
    padding-right: 80px;
    border-bottom: 1px solid #D7D7D7;
    min-height: 63px;
}

.user-feed-profile-img {
    color: #5A5A5A;
}

.user-profile {
    width: 43.58px;
    height: 43.58px;
    object-fit: cover;
    border-radius: 50px;
}

.dropdown-toggle::after {
    display: none;
}

.db-content-main {
    padding: 30px 80px 26px 48px;
    height: calc(100vh - 63px);
    overflow: auto;
}

.pagination-no,
.pagination-prev,
.pagination-next {
    width: 39.802px;
    height: 40.127px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #979797;
    border-radius: 4px;
    font-size: 15.37px;
    font-style: normal;
    font-weight: 600;
    line-height: 15.37px;
    cursor: pointer;
}

.db-pagination-bx {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
    overflow: auto;
}

.pagination-no-bx {
    display: flex;
    gap: 9px;
}

.pagination-no.active {
    color: #122C91;
    border-color: #122C91;
}

.pagination-next.active,
.pagination-prev.active {
    background: #122C91;
    color: #fff;
    border-color: #122C91;
}

.dropdown-menu.show {
    display: block;
    padding: 5px 6px;
}

.header-profile-link {
    padding: 10px 15px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24.5px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 2px;
}

.header-profile-link.active,
.header-profile-link:hover {
    background-color: #E8EBFB;
    color: #33313F;
}

.header-profile-link svg path {
    fill: #33313f;
}

.header-profile-link.active svg path,
.header-profile-link:hover svg path {
    fill: #122C91;
}

.form-switch .form-check-input {
    width: 41px !important;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.invite-model .modal-content {
    max-width: 450px;
}

.invite-model .modal-content .modal-body {
    padding: 1rem 38px;
}

.upload-file label {
    background-color: #F3F3F3;
    border-radius: 6px;
    border: 1px dashed #BABABA;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

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

.expire-btn .form-control {
    border-radius: 4px;
    border: 1px solid #BABABA;
    background: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    padding: 3px 10px;
    min-width: unset;
    max-width: 114px;
    min-height: 33px;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 13px;
}

.expire-btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.edit-detail-icon {
    color: #D7D7D7;
}

.edit-detail-pl ul li {
    display: flex;
    align-items: center;
    gap: 13px;
}

.edit-detail-pl {
    margin-top: 20px;
    margin-bottom: 30px;
}

.edit-detail-pl ul li a {
    font-weight: 500;
    font-size: 16px;
}

.edit-detail-pl ul li {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
}

.profile-edit-name {
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid #D7D7D7;
    padding-bottom: 18px;
}

.all-order-tab .nav-link {
    padding: 0 !important;
    border: unset;
}

.all-order-tab .nav-tabs {
    column-gap: 28px;
    border: unset;
}

.cal-list-bx a,
.all-order-tab .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #979797;
}

.tab-cal-bx {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 10px;
}

.cal-list-bx {
    display: flex;
    column-gap: 26px;
    align-items: center;
    flex-wrap: wrap;

}

.track-order-detail-box {
    border-radius: 8px;
    border: 1px solid #D7D7D7;
    background: var(--wh, #FFF);
    padding: 30px 30px;
    margin-bottom: 16px;
}

.track-order-heading {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.32px;
    color: #979797;
    margin-bottom: 12px;
}

.track-order-no {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 20px;
}

.track-order-location {
    border-radius: 5px;
    background: #F6F6F6;
    padding: 18px 28px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.32px;
    color: #5A5A5A;
    display: flex;
    align-items: center;
    gap: 10px;
}

.db-all-order-wrapper {
    display: flex;
}

.single-order-detail-wrapper {
    padding: 25px 80px 25px 42px;
    height: unset;
    overflow: auto;
}

.live-track-list li {
    display: flex;
    color: #979797;
    letter-spacing: -0.32px;
    font-weight: 500;
    gap: 5px;
}

.live-track-box {
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
    background: #fff;
    padding: 22px 30px;
    z-index: 1;
    font-size: 16px;
    position: relative;
    flex-wrap: wrap;
    gap: 5px;
}

.live-track-list {
    margin-top: -50px;
}

.single-order-detail-bx {
    border-radius: 8px;
    background: #fff;
    box-shadow: 1px 17px 56px 0px rgba(3, 2, 41, 0.09);
    padding: 25px 40px;
    margin-bottom: 12px;
    margin-top: 15px;
}

.single-order-detail-bx ul {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    column-gap: 20px;
}

.single-order-detail-bx ul li {
    color: #979797;
    margin-bottom: 15px;
    letter-spacing: -0.321px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.so-list-name {
    color: #292929;
    font-weight: 500;
}

.db-content-main:has(.custm-content-main) {
    padding: 0;
    background: #F6F6F6;
}

.live-track-map img {
    width: 100%;
}

.cv-list-header .nav-tabs {
    gap: 12px;
    border: unset;
}

.cv-list-header .nav-tabs .nav-link.active .cv-tab-head {
    background: #122C91;
    border-color: #122C91;
    color: #fff;
}

.tb-table,
.cal-tb-table {
    overflow: auto;
}

.nav-wrpper-bx {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.dashboard-mob-logo {
    max-width: 173px;
}

#addfleetmodal .modal-dialog {
    max-width: 650px;
}

.dark-input-box {
    border-radius: 6px;
    background: #F3F3F3;
    padding: 15px 14px 12px;
    margin-bottom: 15px;
    border: 1px solid #b8b2b2;
}

.fleet-upload {
    margin-top: 15px;
}

.fleet-upload .upload-with-exp {
    border-radius: 6px;
    border: 1px dashed #BABABA;
    background-color: #F3F3F3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.fleet-upload .upload-with-exp .form-group {
    margin-bottom: 0px;
}

.fleet-upload .upload-file label {
    background: unset;
    border: unset;
    padding: 16px 10px 7px;
    font-size: 14px;
    justify-content: center;
}

.fleet-upload .upload-with-exp .expire-btn {
    position: static;
    margin-bottom: 16px;
}

.track-om-list {
    border-radius: 8px;
    background: #fff;
    box-shadow: 1px 17px 56px 0px rgba(3, 2, 41, 0.09);
    padding: 25px 27px 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.track-om-list:hover {
    border: 1px solid #37AF48;
}

.track-om-btn-bx {
    display: flex;
    justify-content: flex-end;
    margin-top: -37px;
}

.track-om-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
}

.track-om-list ul li {
    margin-bottom: 20px;
}

.track-om-list .cv-track-txt {
    text-align: right;
    margin-top: 0;
    width: fit-content;
}

.right-db-head .formfield:has(.search-btn) .form-control {
    padding-right: 115px;
}

.od-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 18px;
}

.invalid-txt {
    font-size: 13px;
    color: red;
    display: inline-flex;
    /* display: none; */
}

.issue-block {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.issue-link-txt {
    color: #F94040;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.32px;
    text-decoration-line: underline;
}

.accept-time-left {
    color: #F94040;
    font-weight: 500;
    letter-spacing: -0.32px;
}

.accept-order-bx {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trackorder-bx {
    border-radius: 8px;
    border: 1px solid var(--Ex-light, #D7D7D7);
    background: #fff;
    padding: 20px 24px 30px;
}

.tckodr-no {
    color: var(--Light-Gary, #979797);
    font-weight: 500;
    letter-spacing: -0.32px;
    margin-bottom: 10px;
}

.trackorder-bx h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 15px;
}

.trackorder-bx .outline-btn {
    border-color: #D7D7D7;
}

.tckodr-map {
    color: #5A5A5A;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tckodr-map span {
    margin-right: 10px;
}

.trackorder-bx.active .outline-btn,
.trackorder-bx:hover .outline-btn {
    color: #fff;
    background: #122C91;
}

.trackorder-bx.active,
.trackorder-bx:hover {
    border: 1px solid #37AF48;
}

.db-content-main:has(.bg-clr-2) {
    background: #F6F6F6;
}

.all-order-detail-wrapper .single-order-detail-bx ul {
    grid-template-columns: repeat(4, 1fr);
}

.all-order-detail-wrapper .single-order-detail-bx ul li {
    grid-template-columns: auto;
}

.all-order-detail-wrapper .live-track-list {
    align-items: center;
    padding: 11px 20px;
}

.dd-right-bx {
    display: flex;
}

.cal-dd {
    border-right: 1px solid #979797;
    padding-right: 20px;
    margin-right: 20px;
}

.top-filter-bx {
    color: #979797;
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-filter-bx span {
    display: flex;
}

.cal-dd .dropdown-menu {
    min-width: 350px;
    padding: 20px !important;
}

.dd-filter-loc {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #122C91;
    margin-bottom: 20px;
}

.filter-dd-content h6 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
}

.cv-daily-wrapper {
    padding: 17px 23px 40px;
}

/* Add CSS */
.page-item:last-child .page-link {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;

}

.page-link {
    padding: 0.5rem 0.75rem;
}

.mce-notification-error {
    display: none !important;
}

footer ul li {
    list-style-type: none;
}

footer ul {
    padding: 0;
}


.stripe-btn {
    width: 100%;
    background-color: var(--primary-color);
    padding: 23px;
    text-align: center;
    border-radius: 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.stripe-btn:hover {
    color: #fff;
}

a.stripe-btn img {
    max-width: 50px;
}

.payment-method-error {
    max-width: 802px;
    text-align: center;
}

#successAlert,
#errorAlert {
    text-align: center;
}

/* .button.primary-btn.filter-csv {
    width: max-content !important;
} */

.pac-container {
    background-color: #FFF;
    z-index: 20;
    position: fixed;
    display: inline-block;
    float: left;
}

.modal {
    /* z-index: 20;    */
}

.modal-backdrop {
    z-index: 10;
}


/* ---------------------------- */


.checkox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-top: 53px;
}

.custm-field {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
}

/* google map location */
.map-model .modal-dialog {
    max-width: 800px;
    margin-top: 25px;
}

.nosubscription-plan {
    display: flex;
    justify-content: center;
    padding: 60px 0px;
    border-radius: 20px;
    background-color: #e9ecfb;
}

.nosubscription-plan h4 {
    color: #000;
    font-size: 26px;
    text-transform: capitalize;
    padding: 20px;
}

.error-profiles-status {
    background-color: #f8d7da;
    border-radius: 5px;
}

.error-profiles-status p {
    font-size: 14px;
    color: #000;
}

@media screen and (max-width:480px) {
    .dashboard-mob-logo {
        display: none;
    }
}

.upload-with-box {
    min-height: 99px;
}

/* .notificationtype-dropdown {
    background: var(--primary-color);
    padding: 15px 10px;
    border-radius: 5px;
    color: #fff;
    display: flex;

}
.notificationtype-dropdown p{
    color: #fff;
}
.right-db-head{
    max-width: 640px !important;
} */
.droparea.highlight {
    border-color: #BABABA;
    background: #F3F3F3;
}

.past-active-count {
    background: red;
    width: fit-content;
    padding: 2px;
    min-width: 20px;
    border-radius: 300px;
    color: white;
    font-size: 10px;
    /* margin-bottom: 22px; */
}

.complete-order-item-container {
    display: flex;
    justify-content: space-between;
}


.complete-order-item-container .dropdown-menu {
    padding: 8px;
    max-height: 380px;
    overflow-y: auto;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding-top: 0px;
}

.complete-order-item-container .dropdown-item {
    padding: 10px 15px;
    border-radius: 6px;
    margin: 2px 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.complete-order-item-container .dropdown-item:hover {
    background-color: #f8f9fa;
}

.complete-order-item-container .dropdown-item.selected {
    background-color: #e9ecef;
    color: var(--primary-color);
    font-weight: 500;
}

.complete-order-item-container .dropdown-item input[type="checkbox"] {
    display: none;
}

.complete-order-item-container .btn-select {
    border-radius: 8px;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #212529;
}

.complete-order-item-container .btn-select:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.complete-order-item-container .selected-count {
    background-color: var(--primary-color);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-size: 0.8em;
}

/* Prevent dropdown from closing on click inside */
.complete-order-item-container .dropdown-menu.show {
    display: block;
}

.complete-order-item-container .dropdown-footer {
    border-top: 1px solid #dee2e6;
    margin-top: 8px;
    padding-top: 8px !important;
}

.complete-order-item-container .dropdown-footer button {
    margin: 0;
    /* background-color: #0d6efd; */
    border: none;
    padding: 8px;
    transition: all 0.3s ease;
}


/* Ensure the footer stays at bottom even when scrolling */
.complete-order-item-container .dropdown-menu {
    position: relative;
    padding-bottom: 0 !important;
}

.complete-order-item-container .dropdown-footer {
    position: sticky;
    bottom: 0;
    background-color: white;
    z-index: 1;
}

.complete-order-item-container .custom-equipment-btn {
    min-height: unset;
    font-size: 12px;
}




.complete-order-item-container .dropdown-header {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 8px;
    padding-bottom: 8px !important;
}

/* .complete-order-item-container .dropdown-footer button {
    margin: 0;
    border: none;
    padding: 8px;
    transition: all 0.3s ease;
} */


.complete-order-item-container .dropdown-header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1;
}

.complete-order-item-container .dropdown-header input {
    padding: 8px 10px;
    min-height: 38px;
}

.complete-order-item-container .dropdown-footer input {
    padding: 8px 10px;
    min-height: 38px;
}

.search-hide {
    display: none;
}

.dropdown-footer-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown-footer-confirmation-group {
    display: flex;
    justify-content: space-between;
}

.dropdown-footer-confirmation-group button {
    min-width: unset;
    min-height: unset;
    height: 28px;
    width: 30%;
}

.no-equipment-found-container {
    padding: 10px;
}

.complete-order-selected-equipmentname {
    display: flex;
    justify-content: space-between;
    padding: 15px;

    position: relative;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    margin: 16px 0px;
}

.complete-order-selected-equipmentname .cross-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    background: var(--primary-color);
    border: 1px solid #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    padding-left: 0.4px;
}

.complete-order-selected-equipment-quantity input {
    padding: 3px 10px;
    min-height: 38px;
}
.complete-order-add-more-product{
    color: var(--primary-color);
    width: fit-content;
    font-weight: 600;
    cursor: pointer;
}
#completeordernoreproductModal .btn-select{
    width: 100%;
}
#completeordernoreproductModal .complete-order-equipment-container{
    width: 100%;
}
#completeordernoreproductModal .dropdown-menu{
    width: 100%;
}
.required-field{
    color: red;
    font-size: 14px;
    padding-bottom: 10px;
}
.clearbtn {
    cursor: pointer;
    width: fit-content;
    float: right;
}
.form-control[readonly] {
    background-color: #fff;
}
.signature-canvas{
    border: 1px solid var(--border-color);
    border-radius: 6px;
}
.no-product-added-container
{
    text-align: center;
}
.no-product-added-container p{
    font-size: 18px;
    font-weight: 500;
}
.completeorderdroparea.highlight {
    border-color: #BABABA !important;
    background: #dddddd  !important;
}
.allproductslist .complete-order-item-group{
    border: 1px dotted var(--border-color);
    padding: 10px;
    border-radius: 8px;
    background: #F3F3F3;
    margin-bottom: 20px;

}
.complete-order-item-container{
    padding: 20px 6px;
}
.complete-order-equipment-container .dropdown-toggle{
    min-width: 233px;
}
h4.product-naam {
    text-transform: capitalize;
    font-size: 23px;
}
.complete-order-selected-equipment-container:has(.complete-order-selected-equipmentname){
    padding: 17px 24px;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    background: #f8f8f8;
}
.equi-name-container{
    max-width: 240px;

}
.complete-order-product-container{
    align-content: space-around;
}
h5.equipment-name {
    font-size: 21px;
}
.equi-name-container{
    align-content: space-around;
}
.no-reset-popup-btn-close{
    position: absolute;
    right: 38px;
    top: 23px;
    cursor: pointer;
}
.dashboard-table
{
    min-width: unset !important;
}
.dashboard-table th {
    white-space: nowrap;
}

.dashboard-table .table-data {
    white-space: nowrap;
}
.dashboard-table .table-data span {
    white-space: nowrap;
}
.dropdown.cstm-dd {
    text-align: left;
    padding-left: 10px;
}
.map-tooltip-custom{
    max-width: 350px;
}
.map-tooltip-custom div {
    margin: 6px 2px;
}
.map-view-info{
    display: flex;
    gap: 30px;
    margin-bottom: 13px;

}
.map-view-info .map-info-point{
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-view-info img{
    width: 20px;
}
.map-info-point p {
    font-size: 12px;
    font-weight: 700;
}
.map-tooltip-custom div{
    display: flex;
}
.map-tooltip-custom div b {
    min-width: 110px;
}
.map-info-point div{
    width: 15px;
    height: 15px;
    border: 1.5px solid;
    border-radius: 20px;
}
.map-route-info{
    display: flex;
    gap: 30px;
    height: 36px;
}
.map-view-header{
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.map-view-header .daterange-dropdown{
    padding-top: 6px;
}
.every-permission-checkcontainer{
    padding-bottom: 20px;
}
.every-permission-checkcontainer .custum-check-field{
    justify-content: flex-end;
}
.notification-top-contian{
    max-width: 497px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 26px;
}
    /* variables scoped inside the container selector via CSS custom properties */
    .order-completion-pricing-container {
        --bg: #ffffff;
        --border: #e6e6e6;
        --text: #222;
        --editable-bg: #ffffff;
        /* white for editable */
        --noneditable-bg: #f3f4f6eb;
        /* light gray for protected cells */
        --focus-outline: rgba(59, 130, 246, 0.20);
        --shadow: 1px 8px 30px rgba(3, 2, 41, 0.06);

        border-radius: 8px;
        background: var(--bg);
        box-shadow: var(--shadow);
        padding: 24px;
        font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
        color: var(--text);
        margin-top: 25px;
    }

    .order-completion-pricing-container h1 {
        font-size: 24px;
        margin: 0 0 14px 0;
        font-weight: 600;
    }

    /* table wrapper */
    .order-completion-pricing-container .table-wrap {
        overflow: auto;
        border: 1px solid var(--border);
        border-radius: 6px;
    }

    .order-completion-pricing-container table {
        border-collapse: collapse;
        width: 100%;
        min-width: 1100px;
    }

    .order-completion-pricing-container th,
    .order-completion-pricing-container td {
        padding: 10px 12px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
        vertical-align: middle;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .order-completion-pricing-container thead th {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 2;
        text-align: left;
        font-size: 15px;
        border-bottom: 2px solid var(--border);
    }

    /* editable vs non-editable cells */
    .order-completion-pricing-container td[contenteditable="true"] {
        background: var(--editable-bg);
        cursor: text;
    }

    .order-completion-pricing-container td[contenteditable="false"] {
        background: var(--noneditable-bg);
        cursor: not-allowed;
    }

    /* numeric alignments */
    .order-completion-pricing-container td.col-qty,
    .order-completion-pricing-container td.col-price,
    .order-completion-pricing-container td.col-extended,
    .order-completion-pricing-container td.col-rack,
    .order-completion-pricing-container td.col-taxes,
    .order-completion-pricing-container td.col-antler,
    .order-completion-pricing-container td.col-markup,
    .order-completion-pricing-container td.col-adjusted,
    .order-completion-pricing-container td.col-nonfuel {
        text-align: right;
        font-variant-numeric: tabular-nums;
    }

    /* focus style for accessibility */
    .order-completion-pricing-container td[contenteditable="true"]:focus {
        outline: 2px solid var(--focus-outline);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02) inset;
    }

    .order-completion-pricing-container td {
        border-right: 1px solid var(--border);
    }

    .order-completion-pricing-container tbody tr:last-child td {
        border-bottom: none;
    }

    .order-completion-pricing-container .hint {
        margin-top: 10px;
        font-size: 13px;
    }

    .invoice-price-head {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 20px;
    }

       /* Wrapper Container */
    .dailypricing-container {
        color: #333;
    }

    /* Card */
    .dailypricing-card {
        background: #fff;
        padding: 25px;
        margin-bottom: 25px;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
        transition: transform 0.2s ease;
    }



    .dailypricing-card h3 {
        margin-bottom: 18px;
        font-size: 20px;
        font-weight: 600;
        /* color: #003366; */
    }

    /* File Input */
    .dailypricing-file-input {
        display: block;
        margin-bottom: 20px;
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
        background: #fafafa;
        cursor: pointer;
        transition: border 0.2s;
    }

    .dailypricing-file-input:hover {
        border-color: var(--primary-color);
    }

    /* Upload Button */
    .dailypricing-btn-upload {
        padding: 12px 28px;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 500;
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .dailypricing-btn-upload:hover {
        background: #0056b3;
        /* fallback darker */
        transform: translateY(-1px);
    }

    /* Progress Bar */
    .dailypricing-progress-wrapper {
        margin-top: 20px;
        display: none;
    }

    .dailypricing-progress-bg {
        background: #f1f1f1;
        border-radius: 8px;
        overflow: hidden;
        height: 28px;
    }

    .dailypricing-progress-bar {
        background: linear-gradient(90deg, #28a745, #218838);
        height: 100%;
        width: 0%;
        text-align: center;
        color: white;
        font-size: 14px;
        font-weight: bold;
        line-height: 28px;
        transition: width 0.3s ease;
        border-radius: 8px 0 0 8px;
    }

    /* Muted text */
    .dailypricing-text-muted {
        color: #888;
    }

    /* Hide default input */
    .dailypricing-file-input {
        display: none;
    }

    /* Custom label */
    .dailypricing-upload-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        border: 2px dashed #28a745;
        border-radius: 10px;
        background-color: #f9f9f9;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
        font-weight: 500;
        color: #333;

        width: 100%;
        height: 200px;
        display: flex;
        justify-content: center;
    }

    .dailypricing-upload-label img {
        width: 32px;
        height: 32px;
    }

    .dailypricing-upload-label.dragover {
        background-color: #e8f5e9;
        border-color: #1e7e34;
        color: #1e7e34;
    }

    .uploaded-file-link.daily-price-sheet-name {
        color: blue;
        text-decoration: underline;
    }

    #dailypricing-uploadForm button {
        display: block;
        margin-top: 35px;
    }

    /* Info Box */
    .sheet-info-box {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 15px 20px;
        background: #fdfdfd;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Instructions box - new */
    .sheet-instructions {
        border: 1px solid #e8f4ea;
        background: #f9f9f9;
        border-radius: 8px;
        padding: 16px 18px;
        color: #333;
        line-height: 1.45;
    }

    .sheet-instructions h4 {
        margin: 0 0 8px;
        font-size: 16px;
        color: #333;
    }

    .sheet-instructions ul {
        margin: 8px 0 0;
        padding-left: 18px;
        color: #333;
    }

    .sheet-instructions li {
        margin: 2px 0;
        font-size: 15px;
        list-style: inside;
    }

    .sheet-file {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .sheet-file-name {
        font-weight: 600;
        font-size: 15px;
        color: var(--primary-color);
        text-decoration: none;
    }

    .sheet-file-name:hover {
        text-decoration: underline;
    }

    .sheet-meta {
        margin: 3px 0 0;
        font-size: 13px;
        color: #666;
    }

    /* Action buttons */
    .sheet-actions {
        display: flex;
        gap: 10px;
    }

    .sheet-btn {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .sheet-btn.primary {
        background: var(--primary-color);
        color: #fff;
        border: 1px solid var(--primary-color);
    }

    .sheet-btn.primary:hover {
        background: #0e2374;
        /* slightly darker */
    }

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

    .sheet-btn.outline:hover {
        background: var(--primary-color);
        color: #fff;
    }

    .pricing-data-modal .table-responsive {
        overflow: auto;
        max-height: 100vh;
    }

    /* Modal sizing & surface */
    .pricing-data-modal .cstm-modal .modal-dialog {
        max-width: 80vw !important;
        /* prefer 80% of viewport width */
        margin: 30px auto;
    }

    .pricing-data-modal .cstm-modal .modal-content {
        border-radius: 10px;
        border: 1px solid #eef2f7;
        box-shadow: 0 14px 40px rgba(18, 44, 145, 0.07);
        overflow: hidden;
        background: #fff;
    }

    /* Modal body container (your markup puts everything inside modal-body) */
    .pricing-data-modal .addnew-dis-box {
        position: relative;
        padding: 18px 22px 20px;
        /* font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; */
        color: #222;
    }

    .pricing-data-modal .addnew-dis-box .nav-tabs {
        border-bottom: 0;
        margin: 6px 0 8px;
    }

    .pricing-data-modal .addnew-dis-box .nav-tabs .nav-item {
        margin-right: 8px;
    }

    .pricing-data-modal .addnew-dis-box .nav-tabs .nav-link {
        color: var(--primary-color);
        background: transparent;
        border: none;
        padding: 8px 12px;
        font-weight: 600;
        /* font-size: 14px; */
        opacity: 0.95;
        border-radius: 0;
        transition: color .12s ease, opacity .12s ease;
    }

    .pricing-data-modal .addnew-dis-box .nav-tabs .nav-link:hover {
        color: #0f2674;
        opacity: 1;
    }

    .pricing-data-modal .addnew-dis-box .nav-tabs .nav-link.active {
        color: #0f2674;
        position: relative;
        opacity: 1;
    }

    .pricing-data-modal .addnew-dis-box .nav-tabs .nav-link.active::after {
        content: "";
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: -8px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px 3px 0 0;
        box-shadow: 0 6px 18px rgba(18, 44, 145, 0.08);
    }

    /* Tab content spacing */
    .pricing-data-modal .detail-popup-content {
        margin-top: 18px;
    }

    /* Table responsive wrapper: limit height to keep modal usable */
    .pricing-data-modal .addnew-dis-box .table-responsive {
        max-height: 68vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        /* small breathing room for scrollbar */
    }

    /* Table: modern, clean */
    .pricing-data-modal .addnew-dis-box .table {
        background: transparent;
        border-collapse: separate;
        border-spacing: 0;
        margin-bottom: 0;
        width: 100%;
    }

    /* Header cells */
    .pricing-data-modal .addnew-dis-box .table thead th,
    .pricing-data-modal .addnew-dis-box .table.table-primary thead th {
        background: var(--primary-color) !important;
        color: #fff !important;
        font-weight: 700;
        padding: 10px 12px;
        border: none !important;
        vertical-align: middle;
        text-align: left;
    }

    /* Body cells */
    .pricing-data-modal .addnew-dis-box .table tbody td {
        padding: 10px 12px;
        border-top: 1px solid #eef2f7;
        color: #25313a;
        vertical-align: middle;
    }

    /* Bordered table - soften borders */
    .pricing-data-modal .addnew-dis-box .table.table-bordered {
        border: 1px solid #eef2f7;
        border-radius: 6px;
        /* overflow: hidden; */
    }

    .pricing-data-modal  .table th {
        position: sticky !important;
        top: 0 !important;
    }


    /* Striped rows (gentle) */
    .pricing-data-modal .addnew-dis-box .table.table-striped tbody tr:nth-of-type(even) td {
        background: #fbfbfd;
    }

    /* Row hover */
    .pricing-data-modal .addnew-dis-box .table tbody tr:hover td {
        background: #f6f7fb;
        transition: background .12s ease;
    }

    /* Small adjustments for numbering or right aligned cells */
    .pricing-data-modal .addnew-dis-box .table td:first-child {
        width: 56px;
        font-weight: 600;
        color: #1f2b3a;
    }

    .pricing-data-modal .addnew-dis-box .table td.text-end {
        text-align: right;
        font-variant-numeric: tabular-nums;
    }



    /* Focus states for keyboard users */
    .pricing-data-modal .addnew-dis-box .nav-tabs .nav-link:focus {
        outline: 3px solid rgba(18, 44, 145, 0.10);
        border-radius: 6px;
        outline-offset: 2px;
    }

    .pricing-data-modal .addnew-dis-box .table a:focus {
        outline: 2px solid rgba(18, 44, 145, 0.10);
        outline-offset: 2px;
    }

    /* Optional: pretty scrollbar for webkit browsers */
    .pricing-data-modal .addnew-dis-box .table-responsive::-webkit-scrollbar {
        height: 8px;
        width: 8px;
    }

    .pricing-data-modal .addnew-dis-box .table-responsive::-webkit-scrollbar-thumb {
        background: rgba(18, 44, 145, 0.12);
        border-radius: 8px;
    }
.invoice-confirmation .swal2-styled.swal2-confirm{
    background-color: var(--primary-color) !important;
}
.invoice-confirmation .swal2-styled.swal2-cancel{
    background-color: white !important;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.invoice-confirmation .swal2-icon.swal2-question {
    border-color: #122c914a;
    color: #122c91;
}
#fuelTable th {
    background: #e9ecfb;
    border: 1px solid #cecece;
}
#fuelTable td {
    text-wrap: auto;
}
.pricing-data-search-container{
    margin-top: 45px;
    position: relative;
}
.pricing-data-search-container span{
    position: absolute;
    top: 17px;
    right: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.preview-item{
    border: 1px dashed #BABABA;
    position: relative;
    width: 120px;
    height: 122px;
    border-radius: 8px;

}
.preview-item img{
    width: 120px;
    height: 120px;
    border-radius: 10px;
}
.preview-item button{
    position: absolute;
    right: -10px;
    background: red;
    border: 0;
    color: white;
    font-size: 12px;
    font-weight: 900;
    border-radius: 100px;
    top: -10px;

}
.splide__slide{
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-around;
}
.splide__pagination__page.is-active{
    background: #292929 !important;
}
.splide__slide img, .splide__slide .spinner{
    min-height: 200px !important;
}
.splide__slide img{
    width: 200px;
    height: 200px;
    border-radius: 10px;
}
.splide__pagination {
    bottom: -0.5em !important;
}
.splide__arrow{
    top: 40% !important;
}
.splide__arrow:disabled {
    opacity: 0.1 !important;
}
.price-er-cnt{
    border: 1px solid red;
    background: #ffd6d6;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.price-er-cnt p, .price-er-cnt span{
     color: red;
}
.price-er-cnt span{
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}
label.form-data-label {
    font-size: 14px;
    color: #444;
    padding: 6px 0 8px 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #212529 !important;
    font-size: 14px !important;
}
