:root {

    --body-bg: rgb(239, 239, 239);
    --primary-theme-clr: #3C8DC8;
    --border: rgb(197, 197, 197);
    --red: rgb(254, 70, 70);
    --light-red: rgb(255, 166, 166);
    --text-gray: rgb(171, 171, 171);
    --primary-btn: #0C7CDA;

    --dark-green: #3B6629;
    --green: #3ecf00;
    --orange: rgb(250, 130, 82);

}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
    background-color: var(--body-bg);
    font-size: 12px;
}

html {
    scroll-padding-top: 75px;
    /* height of sticky header */
    scroll-behavior: smooth;
    /* optional for smooth scrolling */
}




/* Login page ---------*/
.login-wrapper {
    background-image: url(../images/login_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
}

.login-left-warpper {
    display: flex;
    align-items: center;
    margin-left: -15px;
}

/* Logo Section */
.logo-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
}

.logo-card {
    background: white;
    padding: 20px;
    border-radius: 0 70px 70px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    max-width: 400px;
    padding-left: 85px;
}

.logo-img {
    margin-left: 20px;
    margin-right: 10px;
    width: 250px;
    height: auto;
}

.login-right-warpper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    width: 65%;
}

.login-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding: 25px;
}

.login-header {
    margin-bottom: 30px;
}

.login-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.login-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.login-wrapper .form-control {
    width: 100%;
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.forgot-password a {
    color: var(--primary-theme-clr);
    text-decoration: none;
    font-size: 13px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    background-color: var(--primary-theme-clr);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease-in;
}

.login-btn:hover {
    opacity: .9;
}

.copyrights-text {
    text-align: center;
    margin-top: 20px;
    font-size: 10px;
    opacity: 0.7;
}

/* Login page END ----------- */

/* Register Page  ----------- */

.register-wrapper {
    background-image: url(../images/register_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
}

.register-container {
    background: white;
    padding: 40px 40px 25px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    position: relative;
}

.register-container .logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 40px;
    max-width: max-content;
    border-radius: 70px;
    position: absolute;
    top: -40px;
}

.register-container .logo-img {
    width: 250px;
    margin: 0;
}

.register-inner {
    margin-top: 24px;
}

.register-container h6 {
    text-align: center;
    margin-bottom: 18px;
}

.register-wrapper .form-control {
    width: 100%;
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.register-wrapper .form-control.otp-input {
    max-width: 40px;
    padding: 10px 5px;
    text-align: center;
}

.resend-otp-btn {
    background-color: transparent;
    border: none;
    color: var(--primary-theme-clr);
    font-size: 12px;
    font-weight: 500;
}


.password-helper {
    position: absolute;
    bottom: 100%;
    /* appear below input */
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    padding: 10px;
    margin-top: 4px;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.password-helper p {
    font-weight: 500;
    margin-bottom: 10px;
}

.password-helper ul li {
    margin-bottom: 3px;
    color: #dc3545;
    /* red for unmet */
}

.password-helper ul li.valid {
    color: #28a745;
    /* green for met */
}

.register-wrapper .btn-success {
    padding-left: 40px;
    padding-right: 40px;
    background-color: var(--dark-green);
}

.register-wrapper .btn-success:hover {
    opacity: .9;
}

.register-wrapper .checkbox-group a {
    color: var(--primary-theme-clr);
}
.otp-wrapper{
    max-width: 320px;
}
/* Register Page End  ----------- */

/* register terms sidebar */
/* Overlay */
.terms-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

/* Sidebar */
.terms-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    /* hidden initially */
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.terms-sidebar.open {
    right: 0;
}

/* Header with close button */
.terms-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    font-weight: bold;
}

.terms-close-btn {
    background: rgb(238 238 238);
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content */
.terms-sidebar-content {
    padding: 15px;
    overflow-y: auto;
    flex: 1;
}

/* Footer with agree button */
.terms-sidebar-footer {
    padding: 15px;
    border-top: 1px solid #ddd;
}

.terms-sidebar-footer .btn-success {
    padding-left: 40px;
    padding-right: 40px;
    background-color: var(--dark-green);
}

.agree-btn {
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* register terms sidebar end --------------*/

/* Register complete ------------*/

.register-complete-wrapper img {
    width: 70px;
}

.register-complete-wrapper h6 {
    font-size: 18px;
}

.register-complete-wrapper p {
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center;
}

.register-complete-wrapper span {
    font-size: 8px;
    text-align: center;
}

.register-complete-wrapper .register-complete-note {
    margin: 20px 0;
    font-weight: 300;
    opacity: .6;
    text-align: center;
}

.register-complete-wrapper .btn-success {
    padding-left: 40px;
    padding-right: 40px;
    background-color: var(--dark-green);
    margin-bottom: 20px;
}

.register-complete-wrapper .btn-success:hover {
    opacity: .9;
}

/* Register complete end------------*/

.info-icon-card {
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info-icon-card-inner {
    display: flex;
    gap: 8px;
}

.info-icon-card img {
    width: 30px;
}

.info-icon-card .content h6 {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0px;
}

.info-icon-card .content {
    display: flex;
    align-items: center;
}

.info-icon-card .content p {
    font-size: 10px;
    margin-bottom: 0px;
    opacity: .7;
}

.info-success {
    background-color: #317922;
}

.info-fail {
    background-color: #b63537;
    color: #fff;
}


a {
    cursor: pointer;
}

/* -------------header------------- */
/* ========== HEADER BASE ========== */
header {
    height: 50px;
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    height: 100%;
    margin: 0 50px;
}

header .logo-section {
    display: flex;
    align-items: center;
}

header .logo-section img {
    width: 200px;
}

.menu-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Active state (desktop + sidebar) */
.menu-stepper-wrapper.active .menu-stepper-inner,
.sidebar .menu-stepper-wrapper.active .menu-stepper-inner {
    color: var(--primary-theme-clr) !important;
}

.menu-stepper-wrapper.active .menu-stepper-inner .count,
.sidebar .menu-stepper-wrapper.active .menu-stepper-inner .count {
    background-color: var(--primary-theme-clr) !important;
}

.menu-stepper-wrapper {
    text-decoration: none;
}

.menu-stepper-wrapper .menu-stepper-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #707070;
    font-size: 12px;
}
.menu-stepper-wrapper {
    pointer-events: none;
    color: #999;
}

.menu-stepper-wrapper.completed {
    pointer-events: auto;
    color: #0d6efd;
    cursor: pointer !important;
}
.menu-stepper-wrapper .menu-stepper-inner .count {
    width: 20px;
    height: 20px;
    background-color: #CACACA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
}

.logout-btn {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
    color: #707070;
    font-size: 12px;
}

/* ========== SIDEBAR (Mobile Menu) ========== */
.sidebar {
    position: fixed;
    top: 0;
    right: -260px;
    width: 250px;
    height: 100%;
    background: #fff;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
}

.sidebar.open {
    right: 0;
}

.sidebar .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #707070;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
    top: 10px;
    right: 10px;
}

.sidebar .menu-stepper-wrapper {
    display: flex;
    margin: 15px 0;
    justify-content: flex-start;
}

.sidebar .menu-stepper-inner {
    flex-direction: row;
    /* numbers + text in a row for mobile */
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.sidebar .menu-stepper-inner .count {
    width: 24px;
    height: 24px;
    font-size: 12px;
}

.sidebar .logout-btn {
    display: block;
    text-align: left;
    width: 100%;
    font-size: 14px;
    background-color: var(--primary-theme-clr);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    text-align: center;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1040;
}

.overlay.active {
    display: block;
}

/* Hamburger (mobile only) */
.hamburger {
    background: none;
    border: none;
    font-size: 24px;
    color: #707070;
    cursor: pointer;
    display: none;
}


/* -------------header end------------- */

.main-content {
    margin-top: 75px;
}

/* sidebar-wrpapper inner */
.sidebar-wrpapper {
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    position: sticky;
    top: 75px;
    margin-bottom: 10px;
}

.sidebar-wrpapper .sidebar-header h4 {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.sidebar-wrpapper .sidebar-body-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-body .menu-stepper-inner {
    justify-content: flex-start;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.sidebar-body .menu-stepper-wrapper .menu-stepper-inner .count {
    width: 17px;
    height: 17px;
    background-color: #747474;
}

.sidebar-body .menu-stepper-wrapper .menu-stepper-inner .step-name {
    font-size: 14px;
}


/* main */
.create-business-profile-wrapper .accordion-button::after,
.create-business-profile-wrapper .accordion-button:not(.collapsed)::after {
    background-image: none;
}

.create-business-profile-wrapper .accordion-item {
    margin-bottom: 10px;
    border: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.create-business-profile-wrapper .accordion-item .accordion-button {
    border-top-left-radius: calc(10px - 1px);
    border-top-right-radius: calc(10px - 1px);
    border-bottom-left-radius: calc(10px - 1px);
    border-bottom-right-radius: calc(10px - 1px);

    font-weight: 600;
}

.create-business-profile-wrapper .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(10px - 1px);
    border-bottom-left-radius: calc(10px - 1px);
}

.create-business-profile-wrapper .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
    box-shadow: none;
    border-bottom: 1px solid var(--border);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.create-business-profile-wrapper .accordion-button:focus {
    box-shadow: none;
}

.acc-sub-heading {
    font-size: 13px;
    font-weight: 600;
}

.small-sub-heading {
    font-size: 13px;
    margin-bottom: 7px;
}

.business-logo-upload {
    width: 200px;
    height: 70px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background-color: rgb(250 250 250);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preview-img {
    width: 200px;
    height: 70px;
    border-radius: 7px;
    padding: 2px;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: -10px;
    right: -7px;
    border-radius: 50%;
    padding: 0;
    outline: none;
    border: none;
    background-color: #fff;
    color: var(--red);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
}

.btn i {
    font-size: 14px;
}

.btn-upload {
    background-color: var(--primary-theme-clr);
    border: none;
    color: #fff;
}

.btn-upload:hover {
    background-color: var(--primary-theme-clr);
    color: #fff;
}

.btn-upload:focus {
    color: #fff;
    background-color: var(--primary-theme-clr);
    box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .5);
}

.btn-primary {
    background-color: var(--primary-btn);
    border: none;
    color: #fff;
    padding: 5px 20px;
    border-radius: 3px;
}

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

.btn-primary:focus {
    color: #fff;
    background-color: var(--primary-btn);
    box-shadow: none;
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-btn);
    color: var(--primary-btn);
    padding: 5px 20px;
    border-radius: 3px;
}

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

.btn-outline-primary:focus {
    color: #fff;
    background-color: var(--primary-btn);
    box-shadow: none;
}

.business-details-logo-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.company-name .name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.company-name .number {
    font-size: 9px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.form-group label,
.form-control,
.form-check .form-check-label,
.form-select {
    font-size: 13px;
}

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

.required {
    color: var(--red);
}

.value-input-wrapper .form-check-input {
    margin-top: .1em;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: transparent;
    opacity: 0.5;
}

.doller-input-group .input-group-text {
    background-color: transparent;
    color: var(--primary-theme-clr);
    font-size: 12px;
}

.doller-input-group .input-group-text,
.doller-input-group .form-control {
    padding: .25rem .5rem;
}

.doller-input-group .form-control {
    border-left: transparent;
}

.doller-input-group:focus-within .input-group-text {
    border-color: #86b7fe;
}

.doller-input-group:focus-within .input-group-text {
    border-color: #86b7fe;
}


/* Disabled styles */
.doller-input-group .form-control:disabled,
.doller-input-group:has(.form-control:disabled) .input-group-text {
    opacity: 0.5;
    box-shadow: none;
}

.doller-input-group .form-control:disabled {
    border-left: transparent;
}

.fleet-photo-container {
    width: 130px;
    height: 70px;
    border: 1px dashed var(--border);
    background-color: rgb(248, 248, 248);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.fleet-photo-container img {
    width: 30%;
}

.fleet-photo-container span {
    font-size: 10px;
    opacity: .6;
}

.fleet-photo-add-container {
    background-color: transparent;
}

.fleet-photo-add-container i {
    font-size: 24px;
    opacity: .3;
}

.fleet-photo-container.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.fleet-photo-container .remove-btn {
    position: absolute;
    top: 2px;
    right: 4px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.coverage-input-group .form-control,
.coverage-input-group .input-group-text {
    padding: .375rem .75rem;
}


.pdf-file-container {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 5px;
}

.pdf-file-container .pdf-details {
    display: flex;
    gap: 7px;
}

.pdf-file-container .pdf-details .pdf-content {
    display: flex;
    flex-direction: column;
}

.pdf-file-container .pdf-details .size {
    font-size: 8px;
    opacity: .5;
}

.pdf-file-container .pdf-icon {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 5px;
    width: 30px;
}

.pdf-file-container .pdf-icon img {
    width: 100%;
}

.pdf-file-container .pdf-close i {
    background-color: rgb(146 146 146);
    color: #fff;
    border-radius: 50%;
    padding: 2px;
    font-size: 8px;
    cursor: pointer;
}

.link-btn {
    color: var(--primary-theme-clr);
    text-decoration: none;
}

.review-submit-container {
    border-bottom: 1px solid var(--border);
}

.review-submit-container .review-title {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.review-submit-container,
.review-business-details-logo-wrapper,
.review-data-table,
.review-submit-small-sub-heading {
    padding: 0 5px;
}

.review-business-details-logo-wrapper .business-logo-upload {
    border: none;
    background-color: rgb(236 236 236);
}

.review-business-logo-img {
    width: 200px;
    height: 70px;
    border-radius: 7px;
    padding: 2px;
    object-fit: contain;
}

.review-data-table {
    margin-bottom: 15px;
}

.review-data-table .left-data {
    font-weight: 600;
}

.review-data-table .right-data {
    font-weight: 400;
}

.review-data-table .left-data,
.review-data-table .right-data {
    font-size: 12px;
    margin-bottom: 3px;
}

.file-attachment {
    font-size: 12px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 3px;
}

.file-attachment span img {
    width: 15px;
}

.file-attachment .attachment-name {
    color: var(--primary-theme-clr);
}

.review-data-table table {
    border-collapse: collapse;
    width: 100%;
}

.review-data-table td,
.review-data-table th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 5px;
    font-size: 10px;
    color: #07054B;
}

.review-data-table tr:nth-child(even) {
    background-color: #f6f6f6;
}

.review-fleet-photo-container img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}




/* Status update page ---------------------------------------------------------------------- */
.status-update-container {
    border-radius: 20px;
    overflow: hidden;
}

.status-update-container .status-banner {
    height: 190px;
    background-color: #E0EDF6;

}

.status-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0px 20px 0 20px;
}

.status-banner-inner img {
    width: 155px;
    margin-bottom: 0;
}

.status-banner-content h6 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2px;
}

.status-banner-content p {
    font-size: 12px;
    opacity: .5;
    font-weight: 300;
}

.status-update-body-content {
    padding: 30px 70px;
    background-color: #fff;
}

/* Time line */


.timeline {
    position: relative;
    padding-left: 2.2rem;
    margin: 0 0 0 30px;
    color: white;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #7BD65A;
}

.timeline .timeline-container {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline .timeline-container .timeline-icon {
    position: absolute;
    left: -60px;
    top: 0px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    text-align: center;
    background: #fff;
    border: 2px solid #7BD65A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline .timeline-container .timeline-icon img {
    width: 35px;
    height: 35px;
}

.timeline .timeline-container .timeline-body {
    top: 5px;
    position: relative;
}

.timeline .timeline-container .timeline-body .timeline-title {
    margin-bottom: 2px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.timeline .timeline-container .timeline-body .timeline-subtitle {
    color: #000;
    font-weight: 300;
    opacity: 0.4;
    margin-top: 0px;
    margin-bottom: 0;
    font-size: 9px;
}

.timeline-status {
    color: #000;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0;
    font-size: 9px;
}

.status-pending {
    color: var(--orange);
}

.status-success {
    color: var(--green);
}

.status-comment-red {
    background-color: #FCF0F0 !important;
}

.status-comment-container {
    color: #000;
    background-color: rgb(235, 235, 235);
    padding: 10px;
    border-radius: 10px;
    margin-top: 12px;
}

.status-comment-inner {
    display: flex;
    gap: 10px;
}

.status-comment-container .status-comment-icon img {
    width: 14px;
}

.status-comment-content ul {
    padding-left: 0;
    font-weight: 600;
    list-style-type: none;
    font-size: 12px;
    margin-bottom: 10px;
}

.status-comment-content ul li {
    font-weight: 400;
    font-size: 11px;
    opacity: .8;
}

.status-comment-content ul li.status-comment-date {
    font-size: 9px;
    opacity: .6;
}

.status-comment-content a.update-details {
    font-weight: 600;
    font-size: 10px;
    text-decoration: none;
    color: var(--primary-theme-clr);
}

.status-submitted {
    display: block;
    color: var(--green);
    font-size: 10px;
}

.status-submitted i {
    background-color: var(--green);
    color: #fff;
    padding: 2px;
    border-radius: 50%;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
    padding-top: 0;
}

.sumited-review-modal-wrapper img {
    width: 100px;
}

.sumited-review-modal-content img {
    width: 70px;
}

.sumited-review-modal-content h6 {
    font-weight: 600;
    margin-bottom: 0;
}

.sumited-review-modal-content p {
    margin-bottom: 0;
    font-size: 11px;
}

.sumited-review-modal-content span {
    text-align: center;
    font-size: 11px;
    opacity: .6;
}

@media (max-width: 576px) {
    .main-container {
        width: 100%;
    }

}

@media (max-width: 768px) {

    .menu-section {
        display: none;
        /* hide stepper menu */
    }

    .logout-btn {
        display: none;
        /* hide logout in header */
    }

    .hamburger {
        display: block;
        /* show hamburger */
    }


    .header-wrapper {
        margin: 0 10px;
    }

    .menu-stepper-wrapper .menu-stepper-inner {
        font-size: 14px;
    }

    .status-update-body-content {
        padding: 20px 20px;
    }

    .review-fleet-photo-container img {
        height: 125px;
    }

    .register-wrapper.only-register-card-wrapper {
        height: 100% !important;
        padding: 70px 0;
    }

    .value-input-wrapper .form-check {
        display: block !important;
    }
}