:root{
    --primary-color:#F82643;
    --cart-added: #0AC59A;
    --white-color:#ffffff;
    --primary-blue:#005BE3;
    --primary-orange:#F8A026;
    --secondary-green:#58B665;
    --yellow-light:#FFF9EB;
    --black-color:#000000;
    --green-btn:#79B52D;
    --border-color:#dddddd;
    --content-grey:#606060;
    --clarification-orange: #F8A026;
    --clarification-blue:#005BE3;
    --bg-color:#f5f5f5;
}
.commonPopup-body{
    padding: 40px;
}
.row-equal-coloumn{
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.myAccount-section{
    padding: 0 0 40px;
}
.myAcc-list{
    margin-top: 30px;
}
.myaccount-overview{
    border-top:1px solid var(--border-color);
}
.myaccount-overview h2{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
}
.myAccount-list{
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
    border:1px solid var(--border-color);
    background-color: var(--white-color);
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
    position: relative;
    height: 100%;
}
.myAccount-list:hover{
    transform: scale(1.01);
    box-shadow: 0px 10px 9px 0px rgba(0, 0, 0, 0.10);
}
.myAccount-list .myAccount-list-img img{
    width: 40px;
    -webkit-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.myAccount-list:hover .myAccount-list-img img{
    animation: rotate-scale-down-ver 1s linear 0s 1 normal none;
}
@keyframes rotate-scale-down-ver {
			
    0% {
        transform:scale(1) rotateY(0);
    }
    50% {
        transform:scale(.5) rotateY(180deg);
    }
    100% {
        transform:scale(1) rotateY(360deg);
    }
}
.myAccount-list-content h4{
    font-weight: 700;
    font-size: 14px;
    color: var(--black-color);
}
.myAccount-list-content p{
    font-size: 13px;
    font-weight: 400;
    color: var(--content-grey);
    line-height: 1.4;
}

/* My Orders List */
h1.myaccount-title{
    font-size: 21px;
    font-weight: 600;
    margin: 0;
}
.orders-search{
    margin:  0;
    position: relative;
    width: 240px;
}
.orders-search i{
    position: absolute;
    top: 13px;
    right: 13px;
    font-size: 16px;
    z-index: 9;
    color: #999999;
}
.orders-search input{
    position: relative;
    border-radius: 6px !important;
    border:1px solid var(--border-color) !important;
    height:40px;
}
.order-list-right{
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: end;
}
.order-list-right select{
    height:45px;
    font-size: 14px;
}
.order-list-right select:focus{
    border-color: var(--border-color);
    box-shadow: none;
}
.orderlist-table{
    border:1px solid var(--border-color);
}
.orderlist-table thead th{
    background-color: #F5F5F5;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--content-grey);
    padding: 15px;
}
.orderlist-table tbody tr td{
    font-size: 14px;
    padding: 15px;
    font-weight: 400;
    align-items: center;
    vertical-align: middle;
}
.orderlist-table tbody tr td p.order-list-type{
    padding:5px 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size:13px;
}
.orderlist-table tbody tr td p.order-list-type.open-order{
    background-color: #E0E5FF;
    border:1px solid #CAD2FC;
    color:#263FBE;
}
.orderlist-table tbody tr td p.order-list-type.processing-order{
    background-color: #FFF7D6;
    border:1px solid #F6E8AE;
    color:#D3AE17;
}
.orderlist-table tbody tr td p.payment-required{
    background-color: #ECFFE8;
    border:1px solid #C5F6BB;
    color:#3DB723;
}
.orderlist-table tbody tr td p.delete-order{
    background-color: #F5F5F5;
    border:1px solid #D4D2D2;
    color:#686868;
}
.orderlist-table tbody tr td p.ready-pickup{
    background-color: #E0FDFF;
    border:1px solid #B9EEF1;
    color:#098F99;
}
.orderlist-table tbody tr td p.shipping-tracking{
    color: var(--primary-blue);
    font-weight: 500;
}
.orders-button{
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.orders-button button, .orders-button a{
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    width: 80px;
    height:28px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
}
.orders-button .invoiceBtn button, .orders-button .invoiceBtn a{
    width: 90px;
}
.orderlist-table .orders-button a.pendingOrder-edit{
    width: max-content;
    color:var(--primary-blue);
    border:1px solid var(--border-color);
}
.orderlist-table .orders-button a.pendingOrder-edit:hover{
    color:var(--primary-blue);
}
.orderlist-table .orders-button a{
    color:#999999;
}
.orderlist-table .orders-button a:hover{
    color:var(--white-color);
}
.orders-button button span::before, .orders-button a span::before{
    font-size: 15px;
}
.order-list-view{
    background-color: var(--white-color);
    border:1px solid var(--border-color);
    color:#999999;
    transition: 0.5s all ease-in-out;
}
.order-list-view:hover{
    background-color: var(--primary-color);
    border:1px solid var(--primary-color);
    color:#ffffff;
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, border 0.5s ease-in-out;
}
.order-pdf-download{
    background-color: var(--primary-color);
    color:var(--white-color);
}
.invoice-acc-search{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.orders-view-daterange{
    position: relative;
}
.orders-view-daterange input{
    border:1px solid #dddddd;
    padding: 0 15px;
}
.orders-view-daterange span.wes-calendar{
    position: absolute;
    right:10px;
    top:14px;
}
.orders-view-daterange span.wes-calendar::before{
    font-size: 19px;
}
.orders-view-daterange input:focus-visible{
    border:0;
    box-shadow: none;
    outline: 1px solid var(--border-color);
}
.orderlist-table a{
    color:#000000;
}
.search-myOrders{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.search-myOrders input{
    width: 230px;
}
.search-myOrders button{
    width:150px;
    font-size: 15px;
    font-weight: 500;
}
.daterangepicker .drp-buttons .btn{
    margin-bottom: 0 !important;
}
.daterangepicker .drp-buttons .btn.applyBtn {
    background-color: var(--primary-color) !important;
    border:1px solid var(--primary-color);
}
.daterangepicker td.active, .daterangepicker td.active:hover{
    background-color: var(--primary-color) !important;
}
.daterangepicker td.in-range{
    background-color: #FFE1E5 !important;
}
.daterangepicker td.active, .daterangepicker td.active:hover{
    background-color: var(--primary-color) !important;
}
.orderStatus h6{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.orderStatus p.myorderStatus{
    font-size: 14px;
}
.orderStatus p.myorderStatus.myorderStatus-completed{
    color:#52C13B;
}
.orderStatus p.myorderCard{
    color: var(--content-grey);
    font-size: 14px;
    font-weight: 400;
}
.orderStatus p.myorderCard img{
    margin-right: 5px;
}
.orderStatus a.orderShipping{
    color: #005BE3;
    font-size: 14px;
}
.acc-shipp-confirmation{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.acc-shipp-confirmation span::before{
    font-size: 21px;
}
.acc-shipp-confirmation p{
    text-align: left;
    margin:0;
    font-weight:400 ;
    font-size: 14px;
}
.acc-shipp-confirmation p b{
    font-weight: 500;
}
.acc-shipp-button .popupBtns {
    padding: 0 25px;
}
.formError-msgShow{
    margin-top: 10px;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-color);
}
.formError-msgShow i{
    padding-right: 5px;
}
/* My Orders List */
.myAccount-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}
.myAccount-pagination ul {
    display: flex;
    column-gap: 10px;
}
.myAccount-pagination ul li.page-item a.page-link{
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    font-size: 15px;
    font-weight: 500;
    color:#999999;
    border-radius: 6px !important;
}
.myAccount-pagination ul li a{
    border:0px;
}
.myAccount-pagination ul li.page-item:not(:first-child) a.page-link {
    margin-left: calc(var(--bs-border-width)* -0);
}
.myAccount-pagination ul li.page-item.active .page-link{
    background-color: var(--primary-color);
    border:1px solid var(--primary-color);
    padding: 5px 12px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px !important;
}
.acc-pay a{
    padding: 7px 15px;
    border-radius: 6px;
    color: var(--white-color);
    font-weight: 500;
}
.backAccount a{
    color: var(--black-color);
    font-weight: 400;
    font-size:15px;
}
.backAccount a:hover{
    color: var(--primary-color);
}
.backAccount a i{
    font-size: 15px;
    padding-right: 5px;
}
.backAccount a:hover i{
    position: relative;
    -webkit-animation-name: anima2;
    animation-name: anima2;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes anima2 {
    0% {
        left: 0px;
    }
    50% {
        left: 5px;
    }
    100% {
        left: 0px;
    }
}
.acc-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top:1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.reorder-download{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.order-invoice{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.order-invoice p{
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color:var(--content-grey);
}
.order-invoice p span{
    font-weight: 600;
}
.order-invoice p:first-child{
    border-right:1px solid var(--border-color);
    padding-right: 15px;
}
.order-invoice.myFavoriteList p:first-child{
    border-right: 0;
}
.reorder-download button{
    font-size: 14px;
    padding:5px 20px;
    height:40px;
    font-weight: 400;
}
.reorder-download a{
    border:1px solid var(--primary-color);
    padding:5px 10px;
    border-radius: 6px;
    height:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color:var(--primary-color);
}
.reorder-download a span::before{
    color: var(--primary-color);
    font-size: 16px;
    padding-right: 5px;
}
.order-address-card{
    border:1px solid var(--border-color);
}
.order-address-card .card-header{
    background-color:#F5F5F5;
    border-bottom: 1px solid var(--border-color);
    padding: 15px;
    display: flex;
    align-items: center;
}
.order-address-card .card-header h5{
    font-weight: 600;
    margin-bottom: 0;
    font-size: 15px;
    display: flex;
    position: relative;
    top:3px;
}
.order-address-card .card-header h5 span{
    position: relative;
    top:-1px;
}
.order-address-card .card-header h5 span::before{
    font-size: 21px;
}
.order-address-card .card-header h5 span::before{
    color: var(--black-color);
    padding-right: 8px;
}
.order-address-body .addressDetails h6{
    font-size: 14px;
    font-weight: 600;
}
.order-address-body .addressDetails address{
    font-size: 14px;
    font-weight: 400;
    color: var(--content-grey);
}
.order-address-body .addressDetails address b, .addressDetails .addressDetails-contact p b{
    font-weight: 500;
}
.order-address-body .addressDetails-contact p{
    font-size: 14px;
    font-weight: 400;
    color: var(--content-grey);
    margin-bottom: 0;
}
.create-favList{
    height: 100%;
}
.create-favList p{
    font-size: 14px;
}
.create-favList a{
    background-color: var(--bg-color);
    padding: 15px;
    border-radius: 10px;
    border:1px solid var(--border-color);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    row-gap: 5px;
    height: 100%;
    color:var(--black-color);
}
.create-favList a span::before{
    font-size: 21px;
}
.create-favListAdd{
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 10px;
    border:1px solid var(--border-color);
    transition: all 0.3s ease-in-out;
}
.favListing{
    padding-bottom: 15px;
    border-bottom:1px solid var(--border-color);
}
.favListing p.favListing-lft{
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
}
.favListing p.favListing-lft.favListing-red{
    background-color: #FFE4E8;
    color:#F82643;
}
.favListing p.favListing-lft.favListing-blue{
    background-color: #E9E8FF;
    color:#635BFF;
}
.favListing{
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
}
.favListing .favListing-rht ul{
    display: flex;
    column-gap: 15px;
    align-items: center;
    padding: 0;
    margin: 0;
}
.favListing .favListing-rht ul li{
    font-size: 14px;
}
.favListing .favListing-rht a, .favListing .favListing-rht h1{
    font-size: 15px;
    font-weight: 700;
    color:var(--black-color);
}
.favListing .favListing-rht ul li span{
    font-weight: 400;
}
.favListing .favListing-rht ul li i{
    font-size: 6px;
    color:#999999;
}
.favListing-links{
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding-top: 15px;
    font-size: 14px;
}
.favListing-links a.favListing-links-edit{
    color:#005BE3;
    border-right:1px solid var(--border-color);
    padding-right: 15px;
}
.favListing-links a.favListing-links-delete{
    color:#F82643;
}
.favListing-products .favListing{
    border: 0;
}
.favListing-prodList{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.create-favListAdd:has(.favListing-links a.favListing-links-edit:hover){
    transform: scale(1.01);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.10);
}
.ordersFilter-show{
    display: none;
}
.myAccount-orderItem-img {
    max-width: 80px;
    height: 80px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.myAccount-orderItem-img img{
    max-width: 60px;
}
.myAccount-orderItem-lft{
    display: flex;
    align-items:flex-start;
    column-gap: 15px;
}
.myAccount-orderItem-lft h3{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}
.orderItem-features ul{
    padding: 0;
    margin: 0;
}
.orderItem-features ul li{
    display: inline-block;
    font-size: 14px;
    margin-right: 15px;
}
.orderItem-features ul li.orderItem-features-price{
    font-weight: 700;
    font-size: 15px;
}   
.myAccount-orderItem-details .product-quantity{
    width: 200px;
}
.myAccount-orderItem{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.cart-remove-wishlist.orderItem-wishlist button{
    width: 200px;
    padding: 5px 10px;
    font-size: 14px;
    column-gap: 5px;
    height: 40px;
}
.cart-remove-wishlist.orderItem-wishlist button:first-child{
    margin-bottom: 15px;
}
.cart-remove-wishlist.orderItem-wishlist button.cc-cart-wishlist .wishlist{
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-weight: 500;
    color:var(--content-grey);
}
.cart-remove-wishlist.orderItem-wishlist button.cc-cart-wishlist:hover span,
.cart-remove-wishlist.orderItem-wishlist button.cc-cart-wishlist:hover span .wesWishlist::before{
    color:var(--white-color);
}
.cart-remove-wishlist.orderItem-wishlist button.cc-cart-wishlist .wishlist:active{
    background-color: transparent;
    box-shadow: 0 2px 25px rgba(255, 0, 130, 0);
}
.cart-remove-wishlist.orderItem-wishlist button:hover{
    background-color:var(--primary-color);
    transform: scale(1);
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0);
    color: var(--white-color);
}
.cart-remove-wishlist.orderItem-wishlist button span.wesWishlist::before{
    font-size: 18px;
    color: var(--content-grey);
} 
.cart-remove-wishlist.orderItem-wishlist button span.wesWishlist.wes-whishlist-active::before{
    color:var(--primary-color);
}
/* My Account Details - Address */
/* Data Table */
.dataTables_length {
    display: none;
}
table.dataTable.display>tbody>tr.odd>.sorting_1, table.dataTable.order-column.stripe>tbody>tr.odd>.sorting_1{
    box-shadow:inset 0 0 0 0rgba(var(--dt-column-ordering), 0) !important;
}
table.dataTable tbody td {
    background-color: #fff !important;
    border-bottom: none !important;
}
table.dataTable thead th {
    background-color: #f9f9f9; /* or white */
}
/* Data Table */
/* My Account Details - Address */
/* Pending Orders */
a.pendingOrder-edit{
    border:1px solid #005BE3;
    color: #005BE3;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    height: 30px;
    font-size: 13px;
}
.pendingOrder-trash button, .pendingOrder-trash button:hover{
    background-color: var(--white-color);
    color:var(--primary-color);
    border:1px solid var(--primary-color);
    padding: 5px 8px;
    border-radius: 6px;
    font-weight: 500;
    height: 30px;
    display: flex;
    align-items: center;
    font-size: 13px;
    column-gap: 5px;
}
.tableFirst-cloumn{
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.tableFirst-cloumn span::before{
    font-size: 18px;
    font-weight: 400;
    color:var(--content-grey);
}
#pendingOrders.table span.wes-add, #myOrderList.table span.wes-add{
    display: none;
}
#pendingOrders.table.collapsed span.wes-add, #myOrderList.table.collapsed span.wes-add{
    display: block;
}
#myOrderList.table.collapsed tr td.orderCustomClass, 
#companyUsers.table.collapsed tr td.orderCustomClass{
    position: relative;
}
#myOrderList.table.collapsed tr td.orderCustomClass, 
#companyUsers.table.collapsed tr td.orderCustomClass{
    position: relative;
    display: flex;
}
#myOrderList.table.collapsed tr td.orderCustomClass p, 
#companyUsers.table.collapsed tr td.orderCustomClass p{
    position: relative;
    top:5px;
}
#myOrderList.table.collapsed tr td.orderCustomClass::before{
    margin-right: 5px;
    display: flex;
    color: var(--content-grey);
    content: "+";
    padding: 4px;
    line-height: 10px;
    border: 1px solid var(--content-grey);
    border-radius: 100px;
    font-size: 20px;
    font-weight: 500;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top:5px;
}
#myOrderList.table.collapsed tr.dt-hasChild td.orderCustomClass::before,
#companyUsers.table.collapsed tr.dt-hasChild td.orderCustomClass::before{
    margin-right: 5px;
    display: flex;
    color: var(--content-grey);
    content: "-";
    padding: 4px;
    line-height: 10px;
    border: 1px solid var(--content-grey);
    border-radius: 100px;
    font-size: 20px;
    font-weight: 500;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#companyUsers.table.collapsed tr td.orderCustomClass::before{
    margin-right: 5px;
    display: flex;
    color: var(--content-grey);
    content: "+";
    padding: 4px;
    line-height: 10px;
    border: 1px solid var(--content-grey);
    border-radius: 100px;
    font-size: 20px;
    font-weight: 500;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top:0;
}
table.dataTable tbody tr.child td {
    border-top: none !important;
}
/* Pending Orders */
/* Password Changed */
.pwd-success-section{
    border-top:1px solid var(--border-color);
}
.pwd-success-section .loginVerification-wrapper{
    margin: 80px 0;
}
.passwordInstructions{
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
}
.passwordInstructions span::before{
    font-size: 18px;
    position: relative;
    top:3px;
}
.passwordInstructions p{
    font-size: 14px;
}
.changedPwd span.wesPassword{
    position: absolute;
    top: 20px;
    right:15px;
}
.changedPwd span.wesPassword:before{
    font-size: 21px;
    color: #999999;
}
.accountBtns-list{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.accountBtns-list button{
    font-size: 14px;
    font-weight: 500;
}
.accountBtns-list a{
    font-size: 14px;
    color:var(--black-color);
}
.pwd-error-toast{
    box-shadow: none;
    background-color: #FFF2F4;
    border-color: var(--primary-color);
}
.pwd-ordernoNot-info h5{
    color:var(--primary-color);
    font-size: 15px;
    margin-bottom: 5px;
}
.pwdSuccessmsg h1{
    font-size: 21px;
    color: var(--green-btn);
}
.pwdSuccessmsg a.btn-products{
    width: 40%;
    font-size: 14px;
}
/* Password Changed */
/* Website Settings */
.website-settings-title{
    font-size: 16px;
    font-weight: 600;
}
#switchOff input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    display: none;
}
#switchOff label {
    cursor: pointer;
    text-indent: -9999px;
    width: 43px;
    height: 23px;
    background: #eeeeee;
    display: block;
    border-radius: 100px;
    position: relative;
}
#switchOff label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 19px;
    height: 19px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}
#switchOff input:checked + label {
    background: var(--primary-color);
}
#switchOff input:checked + label::after {
    left: calc(100% - 4px);
    transform: translateX(-100%);
}
#switchOff input:checked + label.active::after {
    width: 130px;
}
.checkoutOptions:has(.checkoutOptions-input input:checked) {
    background-color:#FFDCDD;
}
.checkoutOptions{
    border:1px solid var(--border-color);
    border-radius: 10px;
    padding:15px;
    display: flex;
    align-items:center;
    column-gap: 15px;
}
.checkoutOptions-info{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.checkoutOptions-info h4{
    font-size:14px;
    margin:0;
    line-height: 1.4;
}
.purchase-format .purchase-format-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.purchase-format .purchase-format-info h5{
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}
.poFormat, .poStartContent, .poLengthContent{
    display: none;
}
.poFormat-info{
    border:1px solid var(--border-color);
    padding:15px;
    border-radius: 10px;
    transition: 0.5s;
}
.poFormat-info label{
    width: 100%;
    position: relative;
    top:2px;
    font-size: 14px;
}
.poFormat-info .form-check{
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.poFormat-info:has(input.form-check-input:checked){
    background-color: #FFDCDD;
}
/* Website Settings */
/* Address List */
.accHeader-btn button{
    font-size: 14px;
    font-weight: 500;
}
.addressDetails{
    font-size: 14px;
    font-weight: 400;
}
/* Address List */
/* Company Users */
.acc-headerInner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.acc-header-inner h2{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.acc-header-inner p{
    font-size: 14px;
    font-weight: 400;
}
.userPermission {
    position: relative;
    overflow: hidden;
}

.userPermission .form-check-input {
    display: none;
}

.userPermission-info {
    position: relative;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 1rem;
    transition: color 0.3s ease;
    z-index: 1;
}
.userPermission-info::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 100%;
    background-color: #FFDCDD;
    border-radius: 6px;
    z-index: -1;
    transition: width 0.4s ease;
}
.userPermission .form-check-input:checked + label.userPermission-info {
    border-color: var(--primary-color);
    color: var(--black-color);
}
.userPermission .form-check-input:checked + label.userPermission-info::before {
    width: 100%;
}
.userPermission:has(.form-check-input:checked[type=radio])::before {
    content: "\f058"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--primary-color);
    z-index: 9;
}
.userPermission label {
    color: var(--content-grey);
    font-size: 14px;
}
.userPermission label span {
    display: block;
}
.userPermission .form-check-input:checked + label.userPermission-info span::before{
    color:var(--black-color);
}
.dropShipment-orders label{
    margin-left: 10px;
}
.dropShipment-orders .form-check {
    padding:0;
}
.dropShipment-orders .form-check input.form-check-input{
    margin-left: 0;
}
.company-userPwd h3{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.company-userPwd h3 a{
    font-size: 14px;
    font-weight: 500;
    color:var(--primary-blue);
}
/* Company Users */
/* My Wallet */
.my-wallet{
    border:1px solid #dddddd;
    padding: 15px;
    border-radius: 10px;
}
.my-wallet a{
    font-size: 13px;
    margin-top: 10px;
    color:var(--content-grey);
}
.walletSection{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.walletSection-lft{
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
}
.walletSection-lft h4{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}
.walletSection-lft p{
    font-size: 14px;
    color: var(--content-grey);
    margin-bottom: 5px;
}
.wallet-exp{
    margin-top: 10px;
    font-size: 13px;
    font-weight: 400;
    color:var(--content-grey);
}
.my-wallet.active {
    border: 1px solid var(--primary-color);
}
.my-wallet.active .myWallet-selection p{
    color:var(--primary-color);
    margin: 10px 0 0;
    cursor:inherit;
}
.my-wallet .myWallet-selection{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.my-wallet .myWallet-selection p{
    color:var(--content-grey);
    font-size: 14px;
    margin: 10px 0 0;
    cursor: pointer;
}
.default-wallet{
    margin-bottom: 0;
    font-weight: 600;
}
.myAccount-back a{
    font-size: 14px;
    font-weight: 400;
}
.myAccount-back a i{
    font-size: 12px;
}
.wallet-nosaved-Card{
    background-color: var(--bg-color);
}
.wallet-nosaved-Card h2{
    font-size: 18px;
}
.wallet-nosaved-Card p{
    font-size: 14px;
}
.wallet-nosaved-Card a{
    width: 200px;
    font-size: 14px;
    font-weight: 500;
}
.addWalletCard img{
    position: absolute;
    top:15px;
    right: 15px;
}
.company-editUsers span::before{
    font-size: 21px;
}
/* My Wallet */
/* Favourite List */
.product-found-title span::before{
    font-size: 40px;
    color:var(--white-color);
}
.favListing-sorting{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 15px;
}
.favListing-sorting .favListing-addProducts button{
    display: flex;
    align-items: center;
    column-gap: 6px;
    font-weight: 500;
    font-size: 14px;
}
.favListing-sorting .favListing-addProducts button span::before{
    font-size: 16px;
}
.favListing-sorting .favListing-addSelect{
    width: 220px;
}
.favListing-sorting .favListing-addSelect span.favProductIcon{
    display: flex;
    align-items: center;
    column-gap: 6px;
    font-size: 14px;
}
.favListing-sorting .favListing-addSelect span.favProductIcon span.wes-add-pros::before{
    font-size: 18px;
}
.favListing-sorting .sort-filters a{
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
span.wesWishAdded{
    background-color: rgba(248, 38, 67, 0.10);
    width: 27px;
    height: 27px;
    border-radius: 100px;
}
span.wesWishAdded::before{
    font-size: 14px;
    color:var(--primary-color);
}
.product-unavailable.fav-product-unavailable, .product-discontinued.fav-product-discontinued{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-unavailable.fav-product-unavailable p, .product-discontinued.fav-product-discontinued p{
    margin-bottom: 0;
}
.fav-list-dollar{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
}
.ct-row-products.fav-row-products img{
    width: 90px;
}
.ct-row-products.fav-row-products .row-pro-img{
    width: 100px;
    height: 100px;
}
.product-features.fav-product-feature{
    display: flex;
    align-items: center;
    column-gap: 24px;
}
.product-features.fav-product-feature p{
    font-weight: 800;
}
.product-features.fav-product-feature .product-code{
    margin: 0;
}
.product-features.fav-product-feature .favAvailablity span.favStocks{
    color: var(--primary-color);
}
.row-wishlist-products.fav-wishlist-products p.wishlistRow{
    background-color: rgba(248, 38, 67, 0.10);
    width: 30px;
    height: 30px;
}
.row-wishlist-products.fav-wishlist-products .favOrder-status{
    border:1px solid var(--border-color);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.row-wishlist-products.fav-wishlist-products .favOrder-status span::before{
    font-size: 18px;
} 
.row-wishlist-products.fav-wishlist-products p.wishlist span::before{
    font-size: 18px;
}
.search-row-products .ct-row-info .row-wishlist-products .product-quantity.fav-product-quantity{
    width: 200px;
}
.fav-error-toast{
    box-shadow: none;
    background-color: #FFFAEF;
    border: 1px solid #F8A026;
}
.fav-orderno-not{
    column-gap: 15px;
}
.fav-ordernoNot-lft{
    column-gap: 15px;
}
.fav-ordernoNot-info h5{
    color:#F8A026;
    font-size:15px;
}
.fav-excel-upload h5{
    font-size: 16px;
    font-weight: 600;
}
.product-found-body .fav-excel-upload p{
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
}
.product-found-body .fav-excel-upload p.fileChoose{
    font-size: 15px;
    font-weight: 400;
}
.product-found-body .fav-excel-upload p a{
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.product-found-body .fav-excel-upload p a:hover{
    cursor: pointer;
}
.product-found-body .fav-excel-upload .excelfile-Upload {
    padding: 40px;
    border:1px solid var(--border-color);
    background-color: var(--bg-color);
}
.product-found-body .fav-excel-upload .excelfile-Upload i{
    font-size: 30px;
}
.ct-fav-uploadedfile{
    column-gap: 15px;
}
.uploaded-fav-excel .ct-close button{
    font-size: 14px;
    --bs-btn-close-opacity:1;
}
.ct-fav-uploadedfile h6{
    font-size: 15px;
    font-weight: 500;
}
.ct-fav-uploadedfile span{
    font-size: 13px;
}
.removePro-fav h5{
    font-size: 16px;
}
.removePro-fav-info{
    background-color: var(--bg-color);
    border-radius: 10px;
    border:1px solid var(--border-color);
    padding: 15px;
    column-gap: 15px;
}
.removePro-fav-info .removePro-img{
    width: 100px;
    height: 100px;
    border-radius: 10px;
    padding: 15px;
    background-color: var(--white-color);
    border:1px solid var(--border-color);
}
.removePro-fav-info .removePro-img img{
    width: 70px;
}
.popupBtns .popupBtns-two{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.popupBtns .popupBtns-two button{
    font-size: 15px;
}
.popupBtns .popupBtns-two button.btn-unavailable{
    color: var(--black-color);
}
.favPro-codeAvail{
    display: flex;
    align-items:center;
    column-gap: 15px;
}
.fav-search .button-effect a, .fav-search .button-effect button{
    font-weight: 500;
}
.fav-search.addNew-book{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.fav-search.addNew-book a{
    height: 40px;
}
/* Favourite List */
.billingShipping-wrapper{
    margin-bottom: 50px;
}
/* Responsive */
@media only screen and (max-width:1199px){
    .favListing .favListing-rht ul{
        column-gap: 8px;
    }
}
@media only screen and (max-width:991px){
    .breadcrumb-section{
        padding: 15px 0;
    }
    .userPermission label{
        font-size: 13px;
    }
    .favListing-prodList{
        width: 100%;
    }
    .favListing-sorting{
        margin-bottom: 15px;
    }
    .favListing-prodList .favListing-options{
        flex: 1;
        width: 50%;
        box-sizing: border-box;
    }
    .favListing .favListing-rht ul li, .poFormat-info label{
        font-size: 13px;
    }
    .product-features.fav-product-feature{
        display: block;
    }
    .favPro-codeAvail{
        display: flex;
        column-gap: 12px;
    }
    .favListing .favListing-rht ul{
        column-gap: 15px;
    }
}
@media only screen and (max-width:767px){
    .search-myOrders button{
        width: 90px;
    }
    .myAccount-orderItem-rht{
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        gap: 12px;
        margin-top: 15px;
    }
    .cart-remove-wishlist.orderItem-wishlist button{
        width: 100%;
        height: 45px;
    }
    .acc-header{
        display: block;
    }
    .order-invoice p{
        margin-bottom: 12px;
    }
    .order-invoice p span{
        display: block;
    }
    .reorder-download{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap:15px;
        margin-bottom: 0;
    }
    table.dataTable thead th.dataTable-status {
        background-color: #f9f9f9; /* or white */
    }
    .product-found-body.acc-shipping-update, .commonPopup-body {
        padding: 20px;
    }
    .myacc-modal-content{
        background-color: transparent;
    }
    .acc-shipp-button .popupBtns{
        padding: 0;
    }
    .popupBtns .popupBtns-two{
        grid-template-columns: repeat(1, 1fr);
        gap:10px
    }
    .product-found-body .formCheck-selection .formCheck-selection-list, .commonPopup-body .formCheck-selection .formCheck-selection-list{
        margin: 0;
    }
    .popupBtns .popupBtns-two button{
        font-size: 14px;
    }
    .dtr-data{
        display: block;
    }
    table.dataTable > tbody > tr.child ul.dtr-details > li{
        border-bottom: 0 !important;
    }
    .acc-header .myAccount-header{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .myAccount-orderItem{
        display: block;
    }
    .dropShipment-check{
        display: flex;
        align-items: flex-start;
        padding:12px;
    }
    .fav-ordernoNot-info h5{
        font-size: 16px;
    }
    .orders-search{
        width: 100%;
    }
    .checkoutOptions{
        padding:12px;
    }
    .checkoutOptions-info{
        align-items: center;
    }
    .website-settings-title{
        font-size: 15px;
    }
    .checkoutOptions-info h4{
        font-size: 14px;
    }
    .addressDetails{
        font-size: 13px;
    }
    .favListing-prodList{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .favListing-sorting{
        display: block;
    }
    .favListing-sorting .favListing-addSelect{
        width: 100%;
    }
    .favListing-sorting .sort-filters{
        display: flex;
        justify-content: flex-end;
        margin: 12px 0;
    }
    .fav-list-dollar{
        gap:5px;
    }
    .fav-list-dollar span:nth-child(2){
        column-gap: 0;
    }
    .favListing-prodList .favListing-options{
        width: 100%;
        box-sizing: border-box;
    }
    .favListing-sorting{
        margin-bottom: 0;
    }
    .ct-row-products.fav-row-products{
        display: flex;
        align-items: flex-start;
        column-gap: 12px;
    }
    .ct-row-products.fav-row-products .row-products-details h6 a{
        margin: 0;
    }
    .ct-row-products.fav-row-products .row-pro-img{
        width: 60px;
        height: 60px;
    }
    .ct-row-products.fav-row-products img{
        width: 50px;
    }
    .search-row-products{
        padding: 12px;
    }
    .favPro-codeAvail{
        display: flex;
        column-gap: 12px;
    }
    .wishlist-products.row-wishlist-products.fav-wishlist-products{
        display: grid;
        grid-template-columns: 55px 55px 200px;
        gap: 5px;
    }
    .ct-row-products.fav-row-products .product-code.product-substituted p,  .ct-row-products.fav-row-products .product-code.product-substituted p a{
        display: flex;
    }
    .formCheck-selection.formCheck-accSelection label{
        font-weight: 500;
    }
    .fav-search.addNew-book{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .fav-search.addNew-book a{
        margin-top: 0 !important;
    }
    .acc-pay a{
        display: block;
        margin-top: 10px;
        width: fit-content;
    }
}
@media only screen and (max-width: 575px){
    
    .myAccount-orderItem-img{
        max-width:60px;
        height:60px;
    }
    .myAccount-orderItem-img img{
        max-width: 40px;
    }
    .myAccount-orderItem-lft h3{
        font-size: 15px;
    }
    .cart-remove-wishlist.orderItem-wishlist button:first-child{
        margin-bottom: 0;
    }
    .addressDetails{
        margin-bottom: 15px;
    }
    .order-address-card .card-header h5{
        font-size: 15px;
    }
    .reorder-download button, .reorder-download a{
        font-size: 13px;
    }
    .row-spacing-account{
        --bs-gutter-x: 0.8rem;
    }
    .myAccount-list{
        display: block;
        text-align: center;
        padding:12px;
        height:100%;
    }
    .myAcc-list h2{
        margin-bottom: 0;
        font-size: 18px;
    }
    .myAccount-list-content p{
        font-size:13px;
        line-height: 1.4;
    }
    .myAccount-list-img img{
        margin-bottom: 10px;
    }
    .myAccount-list-content h4{
        font-size: 14px;
    }
    .orderlist-table tbody tr td p.order-date{
        padding-left: 0;
    }
    .invoice-acc-search, .search-myOrders{
        display: block;
    }
    .invoice-acc-search{
        display: none;
    }
    .search-myOrders input{
        width: 100%;
    }
    .search-myOrders button{
        margin: 15px 0;
        width: 100%;
    }
    .my-orders-listTitle{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    h1.myaccount-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }
    .passwordInstructions p{
        font-size: 13px;
    }
    .pwd-ordernoNot-info h5{
        font-size: 14px;
    }
    .pwdSuccessmsg h1{
        font-size: 18px;
    }
    .acc-headerInner{
        padding: 12px 0;
        display: block;
    }
    .ordersFilter-show{
        display: inline-flex;
        border: 1px solid #ddd;
        align-items: center;
        column-gap: 5px;
        padding: 5px 15px;
        border-radius: 100px;
        background-color: #f5f5f5;
        color: #606060;
        font-weight: 400;
        font-size: 13px;
        transition: all 0.5s ease-in-out;
    }
    .ordersFilter-show span:before{
        font-size: 18px;
    }
    .userPermission:has(.form-check-input:checked[type=radio])::before{
        top:5px;
        right:8px;
    }
    .create-favList a{
        flex-direction: row;
        column-gap: 12px;
        font-size: 14px;
    }
    .create-favListAdd{
        padding:12px;
    }
    .favListing-links{
        padding-top: 12px;
    }
    .favListing{
        column-gap: 12px;
        padding-bottom: 12px;
    }
    .favListing .favListing-rht a, .favListing .favListing-rht h1{
        font-size: 15px;
    }
    .purchase-format .purchase-format-info h5{
        font-size: 13px;
    }
    .poFormat-info{
        padding: 10px;
    }
    .order-invoice.myFavoriteList p{
        margin: 5px 0 0;
        font-size: 13px;
    }
    .fav-search{
        margin-top: 10px;
    }
    .my-wallet{
        padding:12px;
    }
    .wallet-nosaved-Card h2{
        font-size: 16px;
    }
    .favListing-prodList{
        grid-template-columns: 1fr;
    }
    .favPro-codeAvail{
        display: flex;
        column-gap: 10px;
        font-size: 12px;
    }
    .product-features.fav-product-feature{
        display: block;
    }
    .ct-row-products.fav-row-products .row-products-details{
        min-width: auto;
        display: block;
    }
    .removePro-fav-info{
        padding: 12px;
    }
    .removePro-fav-info .removePro-img{
        width: 70px;
        height: 70px;
        padding: 10px;
    }
    .removePro-fav-info .removePro-img img{
        width: 50px;
    }
    .fav-search.addNew-book{
        display: block;
    }
    .fav-search.addNew-book a{
        margin-top: 10px !important;
    }
}
@media only screen and (max-width: 479px){
    .action-menus{
        display: none;
    }
    .orders-button button{
        width: min-content;
    }
    .floating-input label{
        width: 90%;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        background-color: transparent;
    }
    .favAvailablity, .product-features.fav-product-feature .product-code{
        font-size: 12px !important;
    }
    .wishlist-products.row-wishlist-products.fav-wishlist-products{
        grid-template-columns: 55px 55px 1fr;
    }
    .search-row-products .ct-row-info .row-wishlist-products .product-quantity.fav-product-quantity{
        width: 100%;
    }
    .search-row-products .ct-row-info .row-wishlist-products .product-quantity.fav-product-quantity .qty-container.row-qty-container{
        margin: 0;
    }
    .search-row-products .ct-row-info .row-wishlist-products .product-quantity.fav-product-quantity .qty-container.row-qty-container .input-qty{
        max-width: 80%;
    }
}
/* Responsive */
