body {
    font-family: "Public Sans", sans-serif;
    background: #F0F0F1;
    color: var(--color-text-chart);
    margin: 0;
}

:root {
    --color-text-chart: #1C252E;
    --text-secondary: #637381;
    --label-color: #464F60;
    --border-color: #919EAB3D;
    --btn-color: #2271B1;
    --btn-hover-color: #ffffff;
    --text-select: #919EAB;
    --text-input: #1C252E;
    --border-raius: 8px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--color-text-chart);
}

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

form input {
    height: 100%;
    min-height: 40px;
    width: 100%;
    padding: 0 14px;
    border-radius: var(--border-raius);
    outline: none;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    font-family: "Public Sans", sans-serif;
    font-size: 14px;
    color: var(--text-input);
}

form input::placeholder,
form textarea::placeholder {
    color: var(--text-input);
}

form textarea {
    outline: none;
    border: 1px solid var(--border-color);
    width: 100%;
    border-radius: var(--border-raius);
    padding: 14px;
    font-family: "Public Sans", sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    color: var(--text-input);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 10px;
    border-radius: var(--border-raius);
    border: 1px solid var(--border-color);
    height: 40px;
    outline: none;
    color: var(--color-text-chart);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10.0002 12.9177C9.80546 12.9181 9.61676 12.8503 9.46683 12.7261L4.46683 8.55941C4.11245 8.26485 4.06395 7.73879 4.3585 7.38441C4.65305 7.03002 5.17912 6.98152 5.5335 7.27607L10.0002 11.0094L14.4668 7.40941C14.639 7.2696 14.8598 7.20418 15.0803 7.22764C15.3009 7.2511 15.5029 7.36151 15.6418 7.53441C15.7961 7.70762 15.8712 7.9373 15.8491 8.16821C15.8269 8.39911 15.7096 8.61033 15.5252 8.75107L10.5252 12.7761C10.3709 12.8807 10.1861 12.9305 10.0002 12.9177Z' fill='%23637381'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    color: var(--text-select);
    font-family: "Public Sans", sans-serif;
    font-size: 14px;
}

.btn-primary,
.btn-secondary {
    background-color: var(--btn-color);
    border: 1px solid var(--btn-color);
    padding: 6px 12px;
    border-radius: var(--border-raius);
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 700;
    font-family: "Public Sans", sans-serif;
    cursor: pointer;
    transition: 0.5s all ease;
    white-space: nowrap;
    outline: none;
    min-width: 120px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-primary.disable,
.btn-primary.disable:hover,
button.disable,
button.disable:hover {
    background-color: #919EAB33;
    border-color: transparent;
    color: #919EABCC;
    box-shadow: none;
    outline: none;
}

.account-content .btn-primary.disable,
.account-content .btn-primary.disable:hover {
    border: 1px solid var(--base-border, #DEDEDE);
    background: #F5F5F5;
    color: #3C3C4399;
}

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

.btn-secondary {
    background: #fff;
    border: 1px solid #919EAB52;
    color: var(--color-text-chart);
}

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

.setting-dls-save {
    display: flex;
    justify-content: end;
}


/* Dashboard Page Css Start */

.header-wrap {
    background-color: #fff;
}

.dashboard {
    max-width: 1400px;
    margin: auto;
    min-height: 100vh;
    padding: 0 16px;
    /* overflow-y: auto; */
}

.header-wrap .dashboard {
    min-height: auto;
}

.box-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--border-raius);
    box-shadow: 0 0 2px 0 rgba(145 158 171 / 20%), 0 12px 24px -4px rgba(145 158 171 / 12%);
}

.card-left span {
    font-size: 13px;
}

.green {
    color: #2ecc71;
}

.orange {
    color: #f39c12;
}

.dashboard-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px;
}

.dashboard-title h2 {
    margin: 0px;
    font-size: 24px;
}

.dashboard-title-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dashboard Page Css End */

/* Orders Page Css Start */

.table-card {
    background: #fff;
    box-shadow: 0 0 2px 0 rgba(145 158 171 / 20%), 0 12px 24px -4px rgba(145 158 171 / 12%);
}

label {
    font-size: 14px;
    color: var(--label-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Inter", sans-serif;
}

thead {
    background-color: #F4F6F8;
}

td {
    padding: 16px;
    font-size: 14px;
    text-align: left;
    color: var(--label-color);

}

td a {
    color: var(--label-color);
}

th {
    white-space: nowrap;
    padding: 18px;
    text-align: left;
    font-size: 12px;
    line-height: 1.2;
    color: var(--label-color);
    text-transform: uppercase;
}

th .sort {
    line-height: normal;
    vertical-align: middle;
}

tbody tr:nth-child(even) {
    background: #F9F9F9;
}

thead th:first-child {
    padding: 18px 0px 18px 10px;
}

tbody tr td:first-child {
    padding: 16px 0px 16px 10px;
}

.status {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.status.success {
    background: #E1FCEF;
    color: #14804A;
}

.status.pending {
    background: #F0F1FA;
    color: #4F5AED;
}

.status.inactive {
    background: #E9EDF5;
    color: #5A6376;
}

.status.in-progress {
    background: #EBF0FA;
    color: #2264E5;
}

.status.failed {
    background: #FAF0F3;
    color: #D12953;
}

.status.refunded {
    background: #FCF2E6;
    color: #AA5B00;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination span {
    font-size: 14px;
    color: var(--label-color);
}

.pagination .pages button {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 6px 10px;
    border-radius: 3px;
    cursor: pointer;
    color: var(--color-text-chart);
    font-size: 16px;
    font-weight: 400;
    font-family: "Public Sans", sans-serif;
}

.pagination .pages button:hover {
    color: #2271B1;
}

.pagination .pages .active,
.pagination .pages .active:hover {
    background: #2271B1;
    color: #fff;
}

.pagination .pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: #f9fafb;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    transition: .2s;
}


.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.table-responsive tbody td.order-no {
    font-weight: 600;
    color: var(--color-text-chart);
}

.table-empty-wrapper {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orders Page Css End */

.form-card {
    margin-top: 24px;
}

.form-card .form-title {
    margin: 0 0 14px;
}

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

.form-group:last-child {
    margin-bottom: 0px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal {
    background: #fff;
    width: 100%;
    max-width: 720px;
    border-radius: var(--border-raius);
    padding: 0px;
    animation: fadeIn .3s ease;
    box-shadow: 0 0 2px 0 rgba(145 158 171 / 20%), 0 12px 24px -4px rgba(145 158 171 / 12%);
    margin: 0 16px;
}

@keyframes fadeIn {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 2px dotted var(--border-color);
    padding: 0 0 24px;
}

.modal-body {
    padding: 24px 24px 0;
}

.close-modal {
    cursor: pointer;
}

.modal-footer,
.btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.modal-footer {
    padding: 24px;
    border-top: 2px dotted var(--border-color);
}

.modal-header h3 {
    margin: 0;
}

.action-cell {
    position: relative;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.action-dropdown {
    position: relative;
    display: inline-block;
}

/* Insurance Plan Css End */

/* Manage Claims Css Start */

.table-responsive td.date-format {
    white-space: nowrap;
}

/* Manage Claims Css End */

/* Settings Css Start */

.setting-wrap-sec {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: flex-start;
}

.setting-wrap-left .box-card {
    margin-bottom: 24px;
}

.setting-wrap-left .box-card h3 {
    margin: 0;
}

.setting-wrap-left .box-card:last-child,
.setting-wrap-left>div:last-child {
    margin-bottom: 0px;
}

.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.switch {
    position: relative;
    width: 40px;
    min-width: 40px;
    height: 22px;
    cursor: pointer;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 50px;
}

.slider:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    top: 2px;
    left: 2px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
}

.switch input:checked+.slider {
    background: var(--btn-color);
}

.switch input:checked+.slider:before {
    transform: translateX(18px);
}

.upload-box {
    border: 2px dashed #919EAB33;
    padding: 24px;
    border-radius: var(--border-raius);
    text-align: center;
    cursor: pointer;
    background-color: #919EAB14;
    margin-bottom: 24px;
}

.setting-wrap-left .box-card .upload-box h3 {
    margin: 0 0 8px;
}

.upload-box p {
    margin: 0;
    color: var(--text-secondary);
}

.upload-box p a {
    color: var(--btn-color);
    text-decoration: none;
}

.settings-right h3 {
    margin: 0 0 24px;
}

.preview-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-left {
    display: flex;
    gap: 14px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.insurance-product label {
    color: var(--color-text-chart);
    margin: 0 0 12px;
    display: block;
    font-weight: 600;
}

.preview-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.preview-item {
    position: relative;
    width: 70px;
    height: 70px;
}

.preview-item img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-raius);
}

.preview-item span {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: #0000007A;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
}

.insurance-product .btn-group .btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
}

.insurance-product .btn-group .btn-primary:hover svg path {
    fill: var(--btn-color);
}

.plan-sec-dls h3 {
    margin: 0 0 4px;
}

.preview-right-dls .switch {
    display: block;
}

.preview-right-dls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 8px;
    flex-wrap: wrap;
    gap: 6px;
}

.preview-right-wrap p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 22px;
}

.preview-right-wrap p b {
    color: var(--color-text-chart);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

form .custom-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-chart);
    font-weight: 400;
}

.custom-radio input {
    display: none;
}

.custom-radio span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--text-secondary);
    position: relative;
}

.custom-radio input:checked+span {
    border-color: var(--btn-color);
    background-color: var(--btn-color);
}

.custom-radio input:checked+span::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.encryption-email .radio-group {
    margin-bottom: 4px;
}

.encryption-email i {
    color: var(--text-secondary);
    font-weight: 300;
}

.form-group.authentication-slide {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.authentication-slide label {
    margin: 0;
}

.setting-wrap-sec .currently-status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.connection-success,
.connection-failed {
    margin: 14px 0 0;
    color: #34C759;
    font-size: 14px;
    line-height: 20px;
}

.connection-failed {
    color: #FF3B30;
}

/* Settings Css End */

/* Claim Details Css Start */

table.centousshipping-claim-detail-table tbody tr td,
table.centousshipping-claim-detail-table tbody tr th {
    vertical-align: middle;
}

.order-table th,
.order-table td {
    font-size: 14px;
}

.product {
    display: flex;
    align-items: center;
    gap: 10px;
}

td.product img {
    width: 48px;
    height: 48px;
    border-radius: var(--border-raius);
}

.customer-note .note {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.customer-note .note strong {
    color: var(--color-text-chart);
    font-weight: 400;
}

.attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.attachments img {
    width: 100px;
    height: 100px;
    border-radius: var(--border-raius);
    cursor: pointer;
    object-fit: cover;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 16px 0;
}

.summary-row.total {
    font-weight: bold;
    color: var(--btn-color);
}

.summary-row span:first-child {
    color: var(--text-secondary);
}

.summary-row.total span:first-child {
    color: var(--color-text-chart);
}

.claim-right .full {
    width: 100%;
    margin-top: 24px;
}

.claim-left .date h3 {
    padding: 24px;
    margin: 0;
}

.customer-note {
    padding: 24px 10px;
    border-top: 1px dashed var(--border-color);
    margin-top: 10px;
}

.customer-note h3 {
    margin: 0 0 10px;
}

.claim-right h3 {
    margin: 0 0 24px;
}

.claim-right hr {
    border: 1px dashed var(--border-color);
}

.claim-right small {
    text-align: end;
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
}

.claim-left {
    min-width: 100%;
    background-color: #fff;
}

.claim-left td.product {
    color: var(--text-select);
}

.claim-left tbody tr:nth-child(even) {
    background: transparent;
}

.claim-left tbody tr td {
    color: var(--color-text-chart);
}

.claim-left table {
    font-family: "Public Sans", sans-serif;
}

.claim-left tbody tr {
    border-bottom: 1px dashed var(--border-color);
}

.claim-left tbody tr:last-child {
    border-bottom: none;
}

.claim-left tbody tr td:first-child {
    padding: 16px 0px 16px 16px;
}

.claim-left thead th:first-child {
    padding: 18px 0px 18px 16px;
}

.claim-left .pagination {
    padding: 14px 16px;
    border-top: 1px dashed var(--border-color)
}

.claim-left .claim-fullfil {
    padding: 16px;
}

.order-table:not(:has(thead)) tbody tr:first-child td {
    border-top: 1px dashed var(--border-color);
}

.refund-description {
    border-top: 1px dashed var(--border-color);
    padding: 16px;
}

.refund-amount {
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
}

.claim-fulfillment .claim-right .summary-row.total {
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
}

.alert-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #FFF1E3;
    border: 1px solid #FFD8A8;
    color: #5E4200;
    padding: 8px;
    border-radius: var(--border-raius);
    font-size: 14px;
    font-weight: 500;
    margin-top: 24px;
}

.alert-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.alert-text {
    margin: 0;
    line-height: 20px;
}

.form-group label.text-check {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.form-group label.text-check input {
    margin: 0;
    min-height: 0;
}

.form-group label.text-check .checkmark {
    position: unset;
}

.form-group label.text-check .cb-text {
    font-size: 14px;
    color: #1C252E;
    margin-left: 6px;
}

.form-group label.text-check .checkmark::after {
    left: 7px;
    top: 3px;
}

.mfp-zoom-out-cur img.mfp-img {
    padding: 0;
    width: 100%;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-content {
    width: 100%;
    max-width: 520px;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    padding-right: 0;
    color: #637381;
    right: 14px;
    top: 14px;
    cursor: pointer;
    width: auto;
    line-height: 1;
    height: auto;
}

/* Claim Details Css End */

/* My Account Layout Css Start */

.account-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
}

.account-sidebar h3,
.billing-address h3 {
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 400;
}

.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-menu li {
    margin-bottom: 0px;
}

.account-menu li a {
    text-decoration: none;
    font-size: 14px;
    color: #8080808C;
    display: block;
    padding: 14px 0;
    transition: .3s;
    line-height: 1.5;
    border-bottom: 1px dashed var(--border-color);
}

.account-menu li:last-child a {
    padding-bottom: 0;
    border-bottom: none;
}

.account-menu li:first-child a {
    padding-top: 0;
}

.account-menu li.active a,
.account-menu li a:hover {
    color: var(--btn-color);
    font-weight: 600;
}

.account-content {
    min-width: 100%;
}

.account-title h2 {
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    color: #000000;
}

.account-wrapper td a {
    text-decoration: none;
    font-weight: 500;
    color: var(--btn-color);
}

.modal-claim {
    max-width: 900px;
}

.claim-subtitle {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0 0 24px;
    color: #000000;
}

.claim-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.claim-item .claim-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: auto;
}

.claim-item .claim-left img {
    width: 54px;
    height: 54px;
    border-radius: 8px;
}

.claim-item .claim-left p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #6b7280;
}

.badges-count {
    position: relative;
}

.claim-item .claim-left .badge {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 20px;
    height: 20px;
    background: #707070;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.centousshipping-items-list .claim-item.centousshipping-item {
    padding: 10px 0;
    margin: 0;
}

.claim-item .claim-left .badges-dls strong,
.claim-item .claim-left .badges-dls p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #000000;
}

.claim-item .claim-left .badges-dls p {
    color: #707070;
}

.claim-step {
    display: none;
}

.claim-step.active {
    display: block;
}

.qty-select {
    position: relative;
    min-width: 140px;
    font-family: "Public Sans", sans-serif;
}

.qty-head {
    height: 52px;
    border: 1px solid #DEDEDE;
    border-radius: var(--border-raius);
    padding: 15px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    transition: .3s;
    box-sizing: border-box;
}

.qty-select.active .qty-head {
    border-color: var(--btn-color);
}

.qty-label {
    font-size: 14px;
    color: #9CA3AF;
    transition: .3s;
}

.qty-value {
    font-size: 14px;
    color: #111827;
    display: none;
}

.qty-select.filled .qty-label {
    font-size: 12px;
    color: #707070;
}

.qty-select.filled .qty-value {
    display: block;
}

.qty-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
}

.qty-options {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    list-style: none;
    margin: 6px 0 0;
    padding: 6px;
    display: none;
    z-index: 20;
}

.qty-select.active .qty-options {
    display: block;
}

.qty-options li {
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.qty-options li:hover {
    background: #EBF0FA;
}

.site-header {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 48px;
}


.logo img {
    width: 94px;
    height: auto;
}

.page-menu ul {
    display: flex;
    gap: 14px;
}

.page-menu a {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #000000;
    line-height: 1.5;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #111827;
    padding: 0;
}

.breadcrumb-bar {
    padding: 10px 0;
    font-size: 14px;
    color: #8080808C;
}

.breadcrumb-bar a {
    color: #000000;
    text-decoration: none;
}

.breadcrumb-bar span {
    margin: 0 10px;
    color: #8080808C;
}

.account-title.dashboard-title {
    margin: 20px 0;
}

/* =========================
   ORDER DETAILS PAGE
========================= */

.order-details-wrap {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.order-info {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--label-color);
}

.order-info b {
    color: var(--color-text-chart);
}


.billing-address h3 {
    margin: 0 0 14px;
}

.billing-address p {
    margin: 0 0 14px;
    font-size: 14px;
    color: #8080808C;
    line-height: 1.6;
}

.order-summary .order-summary-table {
    background-color: #fff;
    box-shadow: 0 0 2px 0 rgba(145 158 171 / 20%), 0 12px 24px -4px rgba(145 158 171 / 12%);
}

.order-summary .order-summary-table tr td:first-child {
    font-weight: 600;
    color: #171C26;
}

/* My Account Layout Css End */

.centousshipping-order-detail-claim-action {
    display: flex;
    gap: 14px;
}

/*.centousshipping-order-detail-claim-action .claim {
    max-width: 130px;
    width: 100%;
    margin: 0 0 1.41575em;
}*/

 

/* ====================  MOBILE RESPONSIVE  ==================== */

@media(max-width:1024px) {

    .support-grid,
    .stats-row {
        gap: 16px;
    }

    /* Settings Css Start */

    .box-card {
        padding: 20px;
    }

    .preview-left-icon img {
        width: 44px;
    }

    /* Settings Css End */

    .setting-wrap-sec {
        grid-template-columns: 1fr;
    }

    .header-left {
        gap: 14px;
    }

}

@media(max-width: 991px) {

    /* My Account Layout Css Start */

    .account-wrapper {
        grid-template-columns: 1fr;
    }

    /* My Account Layout Css End */

    .order-details-wrap {
        grid-template-columns: 1fr;
    }
}


@media(max-width:767px) {

    h3 {
        font-size: 16px;
        line-height: 22px;
    }

    /* Dashboard Page Css Start */

    .support-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .faq-card {
        margin-top: 16px;
    }

    .box-card,
    .support-card {
        padding: 16px;
    }

    .dashboard-title h2 {
        font-size: 20px;
    }

    .dashboard-title {
        margin: 0 0 16px;
        flex-wrap: wrap;
        gap: 14px;
    }

    /* Dashboard Page Css End */

    /* Orders Page Css Start */

    .pagination {
        justify-content: center;
    }

    /* Orders Page Css End */

    /* Insurance Plan Css Start */


    .insurance-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .insurance-card-dls h2 {
        font-size: 16px;
    }

    .modal-body {
        padding: 18px 18px 0;
    }

    .modal-footer {
        padding: 18px;
    }

    /* Insurance Plan Css End */

    /* Settings Css Start */

    .setting-wrap-sec {
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
    }

    .tabs {
        gap: 24px;
    }

    .setting-wrap-left .box-card,
    .upload-box {
        margin-bottom: 18px;
    }

    .modal-footer,
    .btn-group {
        margin-top: 18px;
    }

    /* Settings Css End */

    /* Claim Details Css Start */

    .claim-layout {
        grid-template-columns: 1fr;
    }

    .claim-item .claim-left .date h3 {
        padding: 16px;
    }

    .claim-fulfillment td .form-group select {
        min-width: 110px;
        max-width: 110px;
    }

    /* Claim Details Css End */

    /* Email Templates Css Start */

    .mail-templates-dls li a {
        padding: 16px 12px;
        font-size: 14px;
        gap: 8px;
    }

    /* Email Templates Css End */

    /* Cart Widget Css Start */

    .tabs-btn {
        gap: 14px;
        justify-content: center;
    }

    .tab-wrapper {
        overflow: auto;
    }

    .tabs-btn .tab {
        white-space: nowrap;
    }

    .range-group {
        grid-template-columns: repeat(1, 1fr);
    }

    .icon-grid {
        justify-content: center;
    }

    .icon-item {
        width: 90px;
        height: 90px;
    }

    .add-icon span {
        font-size: 14px;
    }

    .color-settings {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Cart Widget Css End */


    .page-title {
        display: none;
        /* mobile me sirf logo */
    }

    .logo span {
        display: none;
    }

    .icon-btn {
        font-size: 16px;
    }

    .breadcrumb-bar {
        padding: 8px 16px;
        font-size: 12px;
    }

}


@media(max-width:576px) {

    /* Insurance Plan Css Start */

    .plan-section {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .plan-section .plan-sec-dls {
        text-align: center;
    }

    /* Insurance Plan Css End */

    /* My Account Layout Css Start */

    .qty-select {
        min-width: 85px;
    }

    .qty-head {
        padding: 10px 8px;
        height: 42px;
    }

    .qty-label {
        font-size: 12px;
    }

    .claim-item .claim-left img {
        width: 44px;
        height: 44px;
    }

    .claim-item .claim-left .badge {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

    /* My Account Layout Css End */

}

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

/* Modal Styles */
.centousshipping-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
}

.centousshipping-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.centousshipping-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 900px;
    /*max-height: 90vh;*/
    overflow-y: auto;
    margin: 0;
    animation: slideIn 0.3s ease-out;
}

.centousshipping-modal-step {
    padding: 24px 24px 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.centousshipping-modal-close {
    position: unset;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.centousshipping-modal-close:hover {
    color: #333;
}

.centousshipping-claim-notice {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.centousshipping-claim-notice.is-error {
    border-color: #f4b8b8;
    background: #fff1f1;
    color: #9f1d1d;
}

.centousshipping-claim-notice.is-success {
    border-color: #9bd8b5;
    background: #eefbf3;
    color: #166534;
}

.centousshipping-modal h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1c252e;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.centousshipping-modal h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #1c252e;
    margin-bottom: 0px;
}

.centousshipping-modal p.centousshipping-upload-hint {
    font-size: 12px;
    color: #637381;
    line-height: 1.5;
    font-weight: 400;
    margin: 0 0 10px;
}

/* Items List */
.centousshipping-items-list {
    margin-bottom: 30px;
    height: 100%;
    max-height: 50vh;
    overflow: auto;
}

.centousshipping-items-list::-webkit-scrollbar-track {
    margin-left: 20px;
    margin-right: 20px;
}

.centousshipping-item label {
    display: flex;
    align-items: center;
    margin: 0;
    flex: 1;
    cursor: pointer;
}

.centousshipping-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

.centousshipping-modal .centousshipping-item input[type="checkbox"] {
    margin-right: 0px;
    outline: none;
}

.centousshipping-item-info {
    flex: 1;
}

.centousshipping-item-info strong {
    display: block;
    margin-bottom: 4px;
    color: #1c252e;
}

.centousshipping-item-info small {
    color: #637381;
    font-size: 13px;
}

.centousshipping-item-qty {
    margin-left: auto;
    padding-left: 15px;
    flex-shrink: 0;
}

.centousshipping-item-qty label {
    display: block;
    font-size: 12px;
    color: #637381;
    margin-bottom: 6px;
}

.centousshipping-item-qty-select {
    padding: 6px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 13px;
}

.centousshipping-modal .centousshipping-item-qty-select {
    width: 100%;
    outline: none;
}

/* Form Elements */
.centousshipping-modal p {
    margin-bottom: 20px;
}

.centousshipping-modal label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: #1c252e;
    font-size: 12px;
}

.centousshipping-modal .qty-wrapper button {
    background-color: rgba(145, 158, 171, 0.08);
    width: 24px;
    height: 24px;
    display: inline-block;
    box-sizing: content-box;
    padding: 10px;
    outline: none;
    border: none;
}

.centousshipping-modal .qty-wrapper input {
    background-color: #fff;
    border: 1px solid rgba(145, 158, 171, 0.08);
    box-shadow: none;
    text-align: center;
    padding: 10px;
    height: 24px;
    box-sizing: content-box;
    line-height: 1;
    border-width: 1px 0 1px 0;
    outline: none;
    -webkit-appearance: none;
    margin: 0;
    width: 50px;
}

.centousshipping-modal .qty-wrapper input:focus {
    background-color: #fff;
}

.centousshipping-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    box-sizing: border-box;
}

.centousshipping-textarea:focus {
    outline: none;
}

.hentry .entry-content a {
    outline: none;
}

.hentry .entry-content a.button.view {
    white-space: nowrap;
}

.centousshipping-upload-hint {
    font-size: 12px;
    color: #637381;
    margin-bottom: 15px !important;
}

/* File Upload Area */
.centousshipping-upload-area {
    border: 2px dashed #e5e7eb;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: #f9fafb;
    height: 100%;
    max-height: 30vh;
    overflow: auto;
}

.centousshipping-upload-area:hover {
    border-color: #2271b1;
    background: #f0f6ff;
}

.centousshipping-upload-area.dragover {
    border-color: #2271b1;
    background: #f0f6ff;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.centousshipping-upload-placeholder {
    padding: 20px 0;
}

.centousshipping-upload-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.centousshipping-upload-placeholder h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1c252e;
    margin: 0 0 8px;
}

.centousshipping-upload-placeholder p {
    color: #637381;
    font-size: 13px;
    margin: 0;
}

.centousshipping-upload-preview {
    display: none;
}

.centousshipping-upload-preview p {
    margin: 0 0 10px;
    color: #1c252e;
    font-weight: 500;
    word-break: break-all;
}

.centousshipping-file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.centousshipping-file-list:last-child {
    margin-bottom: 12px;
}

.centousshipping-file-preview-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto 28px;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    text-align: left;
}

.centousshipping-file-preview-thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #f9fafb;
}

.centousshipping-file-preview-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.centousshipping-file-preview-thumb-empty::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #dfe3e8;
}

.centousshipping-file-preview-name {
    overflow: hidden;
    color: #1c252e;
    font-size: 13px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.centousshipping-file-preview-size {
    color: #637381;
    font-size: 12px;
    white-space: nowrap;
}

.centousshipping-remove-selected-file {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: #637381;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.centousshipping-remove-selected-file:hover {
    background: #fee2e2;
    color: #b91c1c;
}

.button-small {
    padding: 6px 12px;
    font-size: 12px;
    border: 1px solid #dc2626;
    color: #dc2626;
    background: none;
    border-radius: 4px;
    cursor: pointer;
}

.button-small:hover {
    background: #dc2626;
    color: #fff;
}

/*.centousshipping-claims-table td a,
.order-summary-table td a {
    text-decoration: none !important;
    font-weight: 600;
    color: #2271B1;
}*/

/* Modal Actions */
.btn-primary,
.btn-secondary {
    text-decoration: none !important;
}

.orders-table-wrap {
    overflow-x: auto;
}

.orders-table-wrap .shop_table tbody tr td:last-child {
    display: flex;
    gap: 10px;
    justify-content: end;
}

.orders-table-wrap .shop_table tbody tr td:last-child a,
.orders-table-wrap .shop_table tbody tr td:last-child button {
    width: auto;
    min-width: 130px;
    text-align: center;
}

.orders-table-wrap .shop_table thead th:nth-child(3) {
    min-width: 130px;
}

button.claim.is-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.82;
    cursor: wait;
}

.centousshipping-button-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: centousshipping-spin 0.7s linear infinite;
}

@keyframes centousshipping-spin {
    to {
        transform: rotate(360deg);
    }
}

.centousshipping-claim-attachments {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 12px;
    max-width: 520px;
}

.centousshipping-claim-attachment {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #f9fafb;
}

.centousshipping-claim-attachment img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.centousshipping-claim-attachment:hover {
    border-color: #2271b1;
    box-shadow: 0 2px 8px rgba(34, 113, 177, 0.16);
}

.centousshipping-image-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.centousshipping-image-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.82);
}

.centousshipping-image-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(92vw, 1000px);
    max-height: 90vh;
    transform: translate(-50%, -50%);
}

.centousshipping-image-modal-content img {
    display: block;
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
}

.centousshipping-image-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111827;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.centousshipping-image-modal-close:hover {
    background: #f3f4f6;
}

/* Responsive */
@media (max-width: 768px) {
    .centousshipping-modal-content {
        width: 95%;
    }

    .centousshipping-item {
        flex-wrap: wrap;
    }

    .centousshipping-item-qty {
        margin-left: 0;
        padding-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .centousshipping-modal-actions {
        flex-direction: column-reverse;
    }

    .centousshipping-modal-actions .button {
        width: 100%;
    }

    .centousshipping-modal h2 {
        font-size: 16px;
    }

    .centousshipping-modal h3 {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .centousshipping-modal .modal-header h3 {
        margin-bottom: 0px;
    }

    .modal-header {
        padding: 0 0 16px;
        margin-bottom: 16px;
    }

    .centousshipping-modal .centousshipping-item-qty-select {
        max-width: 100px;
    }
}

@media (max-width: 767px) {

    .orders-table-wrap .shop_table tbody tr td:last-child {
        display: block;
    }

    .orders-table-wrap tbody tr td:first-child {
        padding: 1em 1.41575em;
    }

    .orders-table-wrap .shop_table tbody tr td:last-child a,
    .orders-table-wrap .shop_table tbody tr td:last-child button {
        margin: 6px;
    }

    .centousshipping-claim-attachments {
        max-width: 100%;
        display: block;
    }

    .centousshipping-claim-attachments .centousshipping-claim-attachment {
        display: inline-block;
        width: 48%;
        margin: 1%;
    }

    .centousshipping-upload-area {
        padding: 14px;
    }

}