:root {
    --font-family-base: 'Jost', sans-serif;
    --font-family-body: 'Montserrat', sans-serif;
    --font-family-fontawesome: 'Font Awesome 5 Pro';
    --font-size: 16px;
    --font-sm: 14px;
    --font-xsm: 12px;
    --font-lg: 18px;
    --font-normal: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --color-primary: #0A472E;
    --color-primary-rgb: 10, 71, 46;
    --color-blue: #3880ff;
    --color-blue-rgb: 56, 128, 255;
    --color-cyan: #67BCEE;
    --color-cyan-rgb: 103, 188, 238;
    --color-red: #E74623;
    --color-pink: #FF3F5C;
    --color-pink-rgb: 255, 63, 92;
    --color-red-rgb: 231, 70, 35;
    --color-orange: #F59758;
    --color-orange-rgb: 245, 151, 88;
    --color-yellow: #FDC040;
    --color-yellow-rgb: 253, 192, 64;
    --color-green: #3BB77E;
    --color-green-rgb: 59, 183, 126;
    --color-teal: #2FD075;
    --color-white: #ffffff;
    --color-white-rgb: 255, 255, 255;
    --color-dark: #1E1D23;
    --color-dark-rgb: 30, 29, 35;
    --color-gray-1: #8D8D8D;
    --color-gray-2: #676767;
    --color-light: #f4f5f8;
    --color-light-1: #F3F6F5;
    --color-light-2: #FCFFFE;
    --color-light-3: #F2F2F2;
    --color-light-4: #F8F8F8;
    --border: #CEDAD5;
    --border-2: #EAEAEA;
}

/* -----------------------------------------
	Page title CSS
----------------------------------------- */
.page-title-area {
    position: relative;
    padding: 50px 0 40px;
    border-radius: 0 0 30px 30px;
}

.page-title-area ul {
    margin: 0;
}

.page-title-area ul li {
    margin: 0 5px;
}

.page-title-area ul li.active {
    color: var(--color-primary);
}

.p-30 {
    padding: 30px;
}

/* -----------------------------------------
	Sidebar Widget CSS
----------------------------------------- */
.sidebar-widget-area {
    padding: 30px;
    /* background-color: var(--color-light-2); */
    background-color: rgba(var(--color-primary-rgb), 0.02);
    border: 1px solid var(--color-primary);
}

.sidebar-widget-area .accordion-button {
    font: inherit !important;
    color: var(--color-dark);
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.sidebar-widget-area .accordion-button::after {
    color: var(--color-dark);
    background: none;
    font-size: 16px;
    font-family: "Font Awesome 5 Pro" !important;
    content: "\f107";
    -webkit-transform: none;
    transform: none;
    text-align: right;
}

.sidebar-widget-area .accordion-button:not(.collapsed) {
    color: var(--color-dark);
}

.sidebar-widget-area .accordion-button:not(.collapsed)::after {
    color: var(--color-dark);
    content: "\f106";
}

.sidebar-widget-area .widget .title {
    margin-bottom: 15px;
}

.sidebar-widget-area .widget.widget-price .price-item {
    width: calc(100% - 20px);
    margin: 0 auto;
}

.sidebar-widget-area .widget label {
    display: block;
    font-size: 16px;
}

.sidebar-widget-area .widget .list-group {
    padding: 0;
    margin: 0;
}

.sidebar-widget-area .widget .list-group li {
    display: block;
    color: var(--color-gray-1);
    font-size: var(--font-sm);
}

.sidebar-widget-area .widget .list-group li {
    padding-bottom: 14px;
    position: relative;
}

.sidebar-widget-area .widget .list-group li a {
    font-weight: var(--font-normal);
}

.sidebar-widget-area .widget.widget-categories ul li a {
    color: var(--color-gray-1);
    position: relative;
    -webkit-padding-start: 20px;
    padding-inline-start: 20px;
    font-size: 16px;
}

.sidebar-widget-area .widget.widget-categories ul li a:hover {
    color: var(--color-primary);
}

.sidebar-widget-area .widget.widget-categories ul li a.active {
    color: var(--color-primary);
}

.sidebar-widget-area .widget.widget-categories .list-dropdown>a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 14px;
    width: 14px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
}

.sidebar-widget-area .widget.widget-categories .list-dropdown>a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: scale(0) translateY(-50%);
    left: 2px;
    opacity: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.sidebar-widget-area .widget.widget-categories .list-dropdown.open>a {
    color: var(--color-primary);
}

.sidebar-widget-area .widget.widget-categories .list-dropdown.open>.menu-collapse .open a {
    color: var(--color-primary);
}

.sidebar-widget-area .widget.widget-categories .list-dropdown.open>a::after {
    opacity: 1;
    transform: scale(1) translateY(-50%);
    top: 50%;
}

.sidebar-widget-area .widget.widget-categories .list-dropdown:hover .menu-collapse {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.sidebar-widget-area .widget.widget-categories .list-dropdown .menu-collapse {
    position: absolute;
    left: 104%;
    top: 30px;
    box-shadow: 0px 5px 40px rgba(49, 49, 49, 0.1);
    background: var(--color-light-2);
    border: 1px solid var(--border);
    width: max-content;
    padding: 20px;
    z-index: 2;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9;
}

.sidebar-widget-area .widget.widget-categories .list-dropdown .menu-collapse li {
    padding-bottom: 0;
}

.sidebar-widget-area .widget.widget-categories .list-dropdown .menu-collapse li a {
    padding-inline-start: 0;
}

.sidebar-widget-area .widget.widget-price .price-value {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sidebar-widget-area .widget.widget-price .price-value span {
    color: var(--color-dark);
    font-weight: 600;
}

.sidebar-widget-area .widget.widget-price .price-value .btn {
    font-size: var(--font-xsm);
}

.sidebar-widget-area .widget.widget-price .noUi-target {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 30px;
    height: 6px;
    background: var(--color-gray-1);
}

.sidebar-widget-area .widget.widget-price .noUi-connect {
    background: var(--color-primary);
}

.sidebar-widget-area .widget.widget-price .noUi-horizontal .noUi-handle {
    width: 16px;
    height: 16px;
    right: -8px;
    border-radius: 50%;
    border-width: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: var(--color-primary);
    cursor: pointer;
}

.sidebar-widget-area .widget.widget-price .noUi-horizontal .noUi-handle::before,
.sidebar-widget-area .widget.widget-price .noUi-horizontal .noUi-handle::after {
    content: none;
}

.sidebar-widget-area .widget.widget-color span:last-child,
.sidebar-widget-area .widget.widget-quantity span:last-child,
.sidebar-widget-area .widget.widget-categories span:last-child {
    font-size: var(--font-sm);
    float: right;
}

.sidebar-widget-area .widget.widget-categories span.show-more {
    float: left;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sidebar-widget-area .widget.widget-categories span.show-more:hover {
    color: var(--color-primary);
}

/* -----------------------------------------
	Pagination CSS
----------------------------------------- */
.pagination {
    padding-top: 20px;
    gap: 10px;
}

.pagination .page-link,
.pagination .page-numbers {
    color: var(--color-dark);
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 17px;
    margin: 0 0;
    border-radius: 5px;
    border: 1px solid var(--border);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-link:focus {
    z-index: 3;
    color: var(--color-white);
    background: var(--color-primary);
    outline: 0;
    box-shadow: none;
}

.pagination .page-numbers.current,
.pagination .page-link:hover,
.pagination .page-item.active .page-link,
.pagination .page-numbers:hover {
    color: var(--color-white);
    background: var(--color-primary);
    border: none;
    border: 1px solid var(--color-primary);
}

.pagination .page-numbers.next {
    border: none;
    -webkit-box-shadow: 0px 4px 10px rgba(29, 34, 31, 0.05);
    box-shadow: 0px 4px 10px rgba(29, 34, 31, 0.05);
}

/* -----------------------------------------
    Dashboard CSS
----------------------------------------- */
.user-dashboard {
    position: relative;
    overflow: hidden;
}

.user-dashboard .sidebar-widget-area .links li {
    display: block;
    border-bottom: 1px dashed var(--border);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.user-dashboard .sidebar-widget-area .links li:last-child {
    border-bottom: none;
}

.user-dashboard .sidebar-widget-area .links li:last-child a {
    padding-bottom: 0;
}

.user-dashboard .sidebar-widget-area .links li a {
    display: block;
    padding: 15px 0;
    color: var(--color-gray-1);
}

.user-dashboard .sidebar-widget-area .links li a.active {
    color: var(--color-primary);
}

.user-dashboard .sidebar-widget-area .links li:hover>a {
    color: var(--color-primary);
}

.user-dashboard .title {
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.user-dashboard .main-info {
    overflow: hidden;
    margin-left: -15px;
    padding-left: 15px;
}

.user-dashboard .main-info h4 {
    margin-bottom: 15px;
}

.user-dashboard .main-info ul.list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.user-profile-details ul.list li {
    margin-bottom: 15px;
}

.order-details ul.list li {
    margin-bottom: 0px;
}

.user-dashboard .main-info ul.list li {
    padding: 20px 30px;
    border-radius: 10px;
    background: var(--color-white);
    -webkit-box-shadow: 0px 5px 20px rgba(49, 49, 49, 0.09);
    box-shadow: 0px 5px 20px rgba(49, 49, 49, 0.09);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.user-dashboard .main-info ul.list li:not(:last-child) {
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
}

.user-dashboard .main-info ul.list li span:first-child {
    color: var(--color-dark);
    font-weight: var(--font-medium);
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}

.user-dashboard .main-info ul.list li p span {
    font-weight: 500;
    margin-right: 20px;
}

.user-dashboard .order-details {
    border: 1px solid var(--border);
    padding: 30px;
}

.user-dashboard .account-info {
    border: 1px solid var(--border);
    padding: 30px 30px 15px;
}


/* user-dashboard  card-box */
.user-dashboard .card-box .card-info h4 {
    margin-bottom: 10px;
}

.user-dashboard .card-box{
    padding: 30px;
    border: 1px solid var(--border-2);
    background: var(--color-white);
    box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.1);
    display: flex;
    gap: 15px;
}

.user-dashboard .card-box.color-1 .card-icon {
    color: #f9725f;
    background-color: rgba(249, 114, 95, 0.13);
}
.user-dashboard .card-box.color-2 .card-icon {
    color: #6231F0;
    background-color: rgba(98, 49, 240, 0.13);
}
.user-dashboard .card-box.color-3 .card-icon {
    color: #19d873;
    background-color: rgba(25, 216, 115, 0.13);
}
.user-dashboard .card-box .card-icon {
    max-width: 45px;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.08);
}
/* user-dashboard card-box */


.user-dashboard .progress-area-step {
    margin-bottom: 60px;
    display: block;
    overflow: hidden;
}

.user-dashboard .progress-steps li {
    width: 33.33%;
    float: left;
    text-align: center;
    position: relative;
}

.user-dashboard .progress-steps li .icon {
    height: 30px;
    width: 30px;
    text-align: center;
    margin: auto;
    background: var(--color-light);
    border-radius: 50%;
    line-height: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    position: relative;
}

.user-dashboard .progress-steps li:first-child:after {
    display: none;
}

.user-dashboard .progress-steps li:after {
    position: absolute;
    content: "";
    height: 3px;
    width: calc(100% - 30px);
    background: var(--color-light);
    top: 14px;
    z-index: 0;
    right: calc(50% + 15px);
}

.user-dashboard .progress-steps li .progress-title {
    padding-top: 10px;
}

.user-dashboard .progress-steps li.active .icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.user-dashboard .main-table .dataTables_wrapper .row:last-child {
    margin-bottom: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

.user-dashboard .main-table .dataTables_wrapper .row:first-child {
    margin-bottom: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.user-dashboard .main-table .dataTables_wrapper input[type="search"] {
    height: 35px;
    outline: none;
}

.user-dashboard .main-table .dataTables_wrapper input[type="search"]:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.user-dashboard .main-table .dataTables_wrapper th {
    color: var(--color-dark);
    padding: 10px;
    -webkit-box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.05);
}

.user-dashboard .main-table .dataTables_wrapper tr.odd td {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.user-dashboard .main-table .dataTables_wrapper tr.even td {
    -webkit-box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.05);
}

.user-dashboard .main-table .dataTables_wrapper td {
    padding: 10px 10px;
}

.user-dashboard .main-table .dataTables_wrapper .form-select {
    box-shadow: none;
}

.user-dashboard .main-table .dataTables_wrapper td span.pending {
    padding: 5px 10px;
    background: rgba(var(--color-orange-rgb), 0.13);
    color: var(--color-orange);
    border-radius: 3px;
    line-height: 18px;
    font-size: 13px;
    font-weight: 600;
}

.user-dashboard .product-list table>:not(:first-child) {
    border-top: 0;
}


.table_component {
    overflow: auto;
    width: 100%;
}

.table_component table {
    border: 1px solid var(--border);
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.table_component caption {
    caption-side: top;
    text-align: left;
}

.table_component th {
    border: 1px solid var(--border);
    ;
    background-color: var(--color-white);
    color: var(--color-dark);
    padding: 8px 20px;
}

.table_component td {
    border: 1px solid var(--border);
    background-color: var(--color-white);
    color: var(--color-dark);
    padding: 10px 10px;
    font-size: 15px;
}

/*  */
.table_component td p {
    color: var(--color-dark);
}

.table_component td:first-child {
    font-weight: 500;
    letter-spacing: 0.6px;
}

.table_component td:last-child {
    text-align: center;
}

/*===========================
    Ordered Table
=============================*/


.table_ordered thead th {
    padding: 10px 20px;
}

.table_ordered tbody td {
    padding: 10px 20px;
}

.table_ordered tbody .table_image_td {
    padding: 10px;
    text-align: center;
}

.table_ordered tbody .table-image {
    max-width: 70px;
}





/* Column widths with colgroup */
.table_component colgroup col:first-child {
    width: 70%;
    /* Set first column to 70% */
}

.table_component colgroup col:last-child {
    width: 30%;
    /* Set second column to 30% */
}

.rejected {
    padding: 5px 10px;
    background: rgba(var(--color-red-rgb), 0.13);
    color: var(--color-red);
    border-radius: 3px;
    line-height: 18px;
    font-size: 13px;
    font-weight: 600;
}

.user-dashboard .pending {
    padding: 5px 10px;
    background: rgba(var(--color-orange-rgb), 0.13);
    color: var(--color-orange);
    border-radius: 3px;
    line-height: 18px;
    font-size: 13px;
    font-weight: 600;
}

.user-dashboard .completed {
    padding: 5px 10px;
    background: rgba(var(--color-green-rgb), 0.13);
    color: var(--color-green);
    border-radius: 3px;
    line-height: 18px;
    font-size: 13px;
    font-weight: 600;
}

.user-dashboard .processing {
    padding: 5px 10px;
    background: rgba(var(--color-yellow-rgb), 0.13);
    color: var(--color-yellow);
    border-radius: 3px;
    line-height: 18px;
    font-size: 13px;
    font-weight: 600;
}

.user-dashboard .main-table .dataTables_wrapper td a.btn {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    font-size: 14px;
    line-height: 18px;
    border-radius: 3px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.user-dashboard .main-table .dataTables_wrapper td a.btn:hover {
    background: var(--color-primary);
    border-color: transparent;
    color: var(--color-white);
}

.user-dashboard .dataTables_wrapper .dataTables_paginate .paginate_button {
    border: none;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
}

.user-dashboard .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: none;
    border-bottom: none;
    background: transparent;
    background-color: transparent;
}

.user-dashboard .paginate_button .page-link {
    border: 1px solid var(--border);
    color: #123212;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.user-dashboard .paginate_button .page-link:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    color: var(--color-white);
    background-color: var(--color-primary) !important;
}

.user-dashboard .paginate_button.active .page-link {
    color: var(--color-white);
    background-color: var(--color-primary) !important;
    border-color: transparent;
}

.user-dashboard table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before {
    top: 15px;
}

.user-dashboard table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before {
    top: 15px;
}

.user-dashboard .view-order-page .order-info h3 {
    margin-bottom: 15px;
}

.user-dashboard .order-info-area {
    padding: 20px 30px 0;
    border-radius: 10px;
    background: var(--color-white);
    -webkit-box-shadow: 0px 5px 20px rgba(49, 49, 49, 0.09);
    box-shadow: 0px 5px 20px rgba(49, 49, 49, 0.09);
}

.user-dashboard .order-info-area .order-info span {
    color: var(--color-yellow);
}

.user-dashboard .order-info-area .prinit {
    float: right;
}

.user-dashboard .order-info-area .prinit .btn {
    background: var(--color-primary);
    color: var(--color-white);
}

.user-dashboard .order-info-area .prinit .btn i {
    margin-right: 10px;
}

.user-dashboard .billing-add-area .main-info ul.list li {
    width: 100%;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.user-dashboard .billing-add-area .main-info ul.list li:not(:last-child) {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
}

.user-dashboard .billing-add-area .main-info ul.list li:last-child {
    margin-bottom: 0;
}

.user-dashboard .billing-add-area .main-info ul.list li span:first-child {
    color: var(--color-dark);
    font-weight: var(--font-medium);
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}

.user-dashboard .product-list h5 {
    margin-bottom: 15px;
}

.user-dashboard .product-list table tr td b {
    line-height: 30px;
}

.user-dashboard .product-list table tr td span {
    margin-left: 10px;
}

.user-dashboard .product-list table tr td span.color {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #222;
}

.user-dashboard .payment-information h5 {
    margin-bottom: 20px;
}

.user-dashboard .edit-info-area {
    margin-top: 50px;
    overflow: hidden;
}

.user-dashboard .edit-info-area .upload-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

.user-dashboard .edit-info-area .upload-img .img-box {
    max-width: 100px;
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}

.user-dashboard .edit-info-area .upload-img .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-dashboard .edit-info-area .nice-select {
    width: 100%;
    border-color: var(--border);
    border-radius: 5px;
}

.user-dashboard .edit-info-area .nice-select .list {
    width: 100%;
}

.user-dashboard .btn {
    background: var(--color-primary);
    color: var(--color-white);
    text-transform: capitalize;
    outline: none;
}

.user-dashboard .btn:hover {
    color: var(--color-white);
}

.user-dashboard .btn.btn-remove {
    color: var(--color-red);
    transition: .3s;
    background: var(--color-red);
    color: var(--color-white);
    border: 1px solid var(--color-red);
}


.user-dashboard .btn:focus {
    color: var(--color-white);
}

.user-dashboard .file-upload-area {
    margin-left: 30px;
}

.user-dashboard .file-upload-area .upload-file {
    position: relative;
    cursor: pointer;
}

.user-dashboard .file-upload-area .upload-file input {
    width: 150px;
    visibility: visible;
    opacity: 0;
    cursor: pointer;
}

.user-dashboard .file-upload-area .upload-file span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* -----------------------------------------
    Shopping CSS
----------------------------------------- */


.shopping-area .form-control {
    height: 44px;
    line-height: 44px;
}



.shopping-area .shopping-table {
    width: 100%;
    border-collapse: collapse;
    vertical-align: middle;
}

.shopping-area p {
    line-height: 1;
    color: var(--color-gray-1);
}

.shopping-area .order-summary hr {
    margin: .5rem 0;
}

.shopping-area .table-heading {
    background-color: var(--color-light);
}

.shopping-area .table-heading th {
    color: var(--color-dark);
    padding: 15px 10px;
}

.shopping-area .table-heading .first {
    padding: 15px 0 15px 20px;
    border-radius: 10px 0 0 10px;
}

.shopping-area .table-heading .last {
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}

.shopping-area label {
    color: var(--color-dark);
    margin-bottom: 5px;
}

.shopping-area tbody {
    border: none !important;
}

.shopping-area tbody tr:not(:first-child) {
    border-top: 1px solid var(--border) !important;
}

.shopping-area tbody td {
    padding: 10px 10px;
}

/*===========================
========== cart-page css ====
============================*/

.shopping-table .product-desc{
    width: 600px;
}
.shopping-table .product-desc .product-desc-wrapper{
    width: 500px;
}

.shopping-table .product-desc .product-title {
    font-size: 18px;
}

.cart-page .shopping-table .qty{
    /* width: 200px; */
}

/* .cart-page.shopping-area .shopping-table tbody .quantity-input {
    width: 130px;
}
.cart-page.shopping-area .shopping-table tbody .quantity-input .quantity-btn {
    width: 35px;
    height: 33px;
    font-size: 16px;
} */


.shopping-table .btn-remove {
    color: var(--color-red);
    transition: .3s;
}

@media only screen and (max-width: 1399.99px) {
    .shopping-table .product-desc-wrapper {
        width: 440px;
    }
}

@media only screen and (max-width: 1199.99px) {
    .shopping-table .product-desc-wrapper {
        width: 440px;
    }
}

@media only screen and (max-width: 991.99px) {
    .shopping-table .product-desc-wrapper {
        width: 300px;
    }
}

.white-space-nowrap {
    white-space: nowrap;
}

.shopping-area tbody .custom-checkbox {
    padding: 10px 15px 10px 20px;
}

.shopping-area tbody .cart-item {
    -webkit-box-shadow: 0px 15px 120px rgba(49, 49, 49, 0.1);
    box-shadow: 0px 15px 120px rgba(49, 49, 49, 0.1);
}

.shopping-area .order-summery .image {
    padding-left: 0;
    max-width: 120px;
}

.shopping-area .product-single-qty .input-group {
    max-width: 90px;
}

.shopping-area .product-single-qty .form-control {
    height: 50px;
}

.shopping-area .form-block {
    padding: 20px;
}

.shopping-area .form-block h6 {
    color: var(--color-gray-1);
}

.shopping-area .order-summery .image {
    max-width: 90px;
}

.shopping-area .nice-select {
    width: 100%;
    border-color: var(--border);
}

.shopping-area .nice-select .list {
    width: 100%;
}

.checkout-guest {
    border: 1px solid var(--color-primary);
    padding: 10px 30px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    display: block;
    background: var(--color-primary);
    color: var(--color-white);
}

.checkout-guest:hover {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

/*s shopping  cart */
table,
th,
td {
    vertical-align: middle;
}

.shopping-area .item-list {
    overflow-x: auto;
}

.shopping-area .shopping-table {
    overflow-x: auto;
}


.cart-page .shopping-table .product-img {
    width: 100px;
    vertical-align: top;
}

.shopping-area .shopping-table .product-img .image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 1px solid var(--border-2);
}

.shopping-area .shopping-table .product-img img {
    width: 100%;
    height: auto;
}

.shopping-area .shopping-table tbody .quantity-input {
    width: 180px;
    border: 1px solid #ededed;
    border-radius: 0;
    overflow: hidden;
}

.shopping-area .shopping-table tbody .quantity-input input {
    width: 60px;
    height: 33px;
    border: 1px solid #dddddd;
    padding: 0 10px;
    text-align: center;
    margin: 0 0;
    color: #838b97;
    border-left: 0;
    border-right: 0;
}

.shopping-area .shopping-table tbody .quantity-input .quantity-btn {
    width: 60px;
    height: 33px;
    padding: 0 5px;
    background-color: var(--color-light);
    font-size: 18px;
    color: var(--color-dark);
    border: 1px solid var(--color-light);
    cursor: pointer;
    line-height: 33px;
    text-align: center;
    transition: 0.3s;
}

.shopping-area .shopping-table tbody .quantity-input .quantity-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
}

.shopping-area input[type="number"]::-webkit-outer-spin-button,
.shopping-area input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shopping-area input[type="number"] {
    -moz-appearance: textfield;
}


.shopping-area .order-summery .title {
    position: sticky;
    top: 0;
    z-index: 1;
}

.order-summery .order-summery-list-wrapper{
    height: 100%;
    max-height: 450px;
    overflow-y: auto;
    position: relative;
}
.order-summery .order-summery-list-item .product-item {
    display: flex;
    gap: 15px;
    padding: 15px 15px;
    border-top: 1px solid var(--border);
}
.order-summery .order-summery-list-item .product-item .product-title{
    font-size: 18px;
}
.order-summery .order-summery-list-item .product-item .product-img {
    max-width: 80px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.order-summery .order-summery-list-item .product-item .product-img .product-qty {
    position: absolute;
    right: -8px;
    top: -8px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background-color: rgba(var(--color-primary-rgb), 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 1;
}
.order-summery .order-summery-list-item .product-item .product-img .image {
    max-width: 130px;
    width: 100%;
    border: 1px solid var(--border);
}

.order-summery .order-summery-list-wrapper::-webkit-scrollbar {
    width: 5px;
}
.order-summery .order-summery-list-wrapper::-webkit-scrollbar-track {
    background-color: var(--color-light);
}
.order-summery .order-summery-list-wrapper::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background: rgba(var(--color-dark-rgb), 0.2);
}
/* Initially hide the variation area */
.order-summery .variation-area {
    display: none;
}

/* Optional styling for the Show Variation button */
.order-summery .show-variation {
    cursor: pointer;
    color: var(--color-dark);
    font-weight: 5;
    text-decoration: underline;
    font-size: 16px;
    transition: all 0.3s ease;
}

.order-summery .show-variation:hover {
    color: var(--color-primary); /* Change color on hover */
}





/* -----------------------------------------
purchase-message CSS
----------------------------------------- */
.purchase-success {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.success-icon-area {
    margin-bottom: 30px;
}

.purchase-success .congratulation {
    font-size: 54px;
    font-weight: 600;
    color: var(--color-primary);
}

.purchase-success .description {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1;
}

.purchase-success .btn-md {
    padding: 10px 30px;
    font-size: var(--font-sm);
}

.success-icon-area svg {
    width: 100%;
    height: 100%;
}

/* -----------------------------------------
Authentication CSS
----------------------------------------- */

.authentication-area {
    margin-top: -10px;
}

/* .authentication-area .auth-form {
    max-width: 640px;
    margin: auto;
    padding: 30px;
} */


.authentication-area .link {
    font-size: var(--font-sm);
    line-height: 1.3;
    margin-bottom: 10px;
}

.authentication-area .link a {
    display: inline-block;
    color: var(--color-primary);
}

.authentication-area .link a:hover {
    color: var(--color-primary);
}

.authentication-area .link.go-signup {
    text-align: right;
}

/* -----------------------------------------
Compare CSS
----------------------------------------- */
.compare-area .table {
    text-align: center;
    overflow-x: auto;
    min-width: 600px;
}

.compare-area .table::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

/* Handle */
.compare-area .table::-webkit-scrollbar-thumb {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

/* Handle on hover */
.compare-area .table::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Handle when the window is inactive */
.compare-area .table::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
}

/* Remove scrollbar buttons */
.compare-area .table::-webkit-scrollbar-button {
    display: none;
}


.compare-area .table>thead {
    background: #f5f5f5;
}

.compare-area .table>thead .cmp-remove {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--color-red);
    background: rgba(var(--color-red-rgb), 0.2) !important;
    border-radius: .25rem;
    font-size: 12px;
}

.compare-area .table>thead .cmp-remove:hover {
    color: var(--color-light-4);
    background: rgba(var(--color-red-rgb), 1) !important;
}

.compare-area .table thead .th-compare td {
    padding: 15px;
    font-size: var(--font-sm);
    font-weight: var(--font-bold);
    background: var(--color-light-1);
}

.compare-area .table thead .th-compare th {
    padding: 15px;
}

.compare-area .table tbody {
    border-top: 0;
}

.compare-area .table tbody p {
    margin: 0;
    font-weight: var(--font-normal);
}

.compare-area .table tbody tr th,
.compare-area .table tbody tr td {
    padding: 15px;
    font-size: var(--font-sm);
    font-weight: var(--font-bold);
}

.compare-area .table .product-price {
    font-size: var(--font-lg);
    font-weight: var(--font-normal);
    color: var(--color-primary);
}



.compare-area .compare_image img {
    width: auto;
    height: auto;
    max-height: 144px;
}

.compare-area .price-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.compare-area .price-area .price-btn .btn-icon {
    border: 1px solid var(--border-2);
    margin: 0 3px;
}

/* variation */
.variation-wrapper {
    gap: 20px;
    row-gap: 10px;
}

.compare-area .variation-header {
    display: flex;
    justify-content: space-around;
    background: #f5f5f5;
    margin-bottom: 10px;
    padding: 5px 0;
}

.compare-area .variation-item {
    display: grid;
    grid-gap: 32px;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding: 5px 15px;
}

.compare-area .variation-item:last-child {
    border-bottom: none;
}

.compare-area .variation-header .title {
    padding: 4px 20px;
    color: var(--color-gray-2);
    font-size: 14px;
}


@media only screen and (max-width: 768.99px) {

    .compare-area .table tbody tr th,
    .compare-area .table tbody tr td {
        padding: 10px;
        font-size: 12px;
    }
}


/*=================================
============= blog-card-css =======
==================================*/
.blog-card-style-1 {
    border-radius: 10px;
    box-shadow: 0 5px 30px -5px rgba(8, 0, 42, .1);
    transition: all 0.4s ease;
    overflow: hidden;
    border: none;
    border: 1px solid var(--border-2);
}

.blog-details-content .info-list,
.blog-card-style-1 .info-list {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.blog-details-content .info-list,
.list-item,
.blog-card-style-1 .info-list .list-item {
    color: var(--color-dark);
    transition: all 0.3s ease;
}
.blog-card-style-1 .info-list .list-item a{
    line-height: 22px;
}

.blog-details-content .info-list:hover,
.blog-card-style-1 .info-list .list-item:hover {
    color: var(--color-primary);
}

.blog-details-content .info-list,
.list-item i,
.blog-card-style-1 .info-list .list-item i {
    margin-right: 6px;
}

.blog-card-style-1 .card-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}

.blog-card-style-1 .card-image img {
    max-width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.blog-card-style-1:hover .card-image img {
    transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
}

.blog-card-style-1 .content {
    padding: 24px;
}

.blog-card-style-1:hover .card-title a {
    background-size: 100% 1px;
    color: var(--color-primary);
}

.blog-card-style-1 .card-title a {
    background: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary) 100%);
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: left 100%;
    transition: all 0.5s ease;
}

.blog-card-style-1 .card-text {
    transition: all 0.5s ease;
}

.blog-card-style-1 .card-btn {
    position: relative;
    padding-bottom: 3px;
}

.blog-card-style-1:hover .card-btn {
    letter-spacing: 2.5px;
    color: var(--color-primary);
}

.blog-card-style-1 .card-btn::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    background: var(--color-primary);
    height: 1px;
    width: 0%;
    transition: all 0.4s ease;
}

.blog-card-style-1:hover .card-btn::after {
    width: 100%;
}



/* ====================================
========== Blog Details CSS ==========
=====================================*/
.blog-details-area .blog-details-items .blog-details-content .title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}


.blog-social span {
    font-size: 18px;
    font-weight: 500;
    margin-right: 10px;
    color: var(--color-primary);
    font-weight: 600;
}

.blog-social ul {
    display: flex;
    gap: 7px;
}

.blog-social ul li a {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    display: block;
    transition: all 0.4s ease;
}

.blog-social ul li a:hover {
    transform: translateY(-3px);
}

.wishlist-action-btn {
    display: flex;
    justify-content: space-around;
    align-items: center;
}


/*# sourceMappingURL=inner-pages.css.map */