* {
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'Minion Pro';
    background: #EEE7D7;
    font-size: 14px;
    color: #221E1F;
    font-weight: 500;
}
a, a:hover {
    text-decoration: none;
    color: #F05657;
    font-family: "Mont";
}
img, input, select, textarea {
    width: 100%;
    max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Mont';
    font-weight: bold;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
label {
    margin-bottom: 6px;
}
textarea {
    background: transparent;
    border: none;
}
input:focus, select:focus, textarea:focus {
    outline: none;
}
table {
    width: 100%;
}
thead {
    background: #F4EEEB;
}
thead th {
    padding: 8px 20px;
    white-space: nowrap;
}
tbody td {
    padding: 9px 20px;
}
tbody tr:not(:last-child) {
    border-bottom: 1px solid #f4eeeb;
}
tbody tr:hover {
    background: #f4eeeb;
}
.dark-bg {
    background: #00676A;
}
.light-bg {
    background: #FCDAD0;
}
.orange-bg {
    background: #F05657;
    color: #fff;
}
.green-bg {
    background: #41CE81;
}
.red-bg {
    background: #FF5151;
    color: #fff;
}
.round-btn.light-bg {
    color: #F05657;
}
.title-lg {
    font-size: clamp(20px, 2.5vw, 24px);
    margin-bottom: 0;
}
.title-md {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 0;
    font-family: "Mont";
    font-weight: 700;
}
.title-sm {
    font-size: clamp(14px, 1.5vw, 16px);
}
.gray-text {
    color: #8A8C8D;
}
.round-btn i.fa.cancel-icon {
    border: 1px solid #f05657;
    transform: rotate(45deg);
}
.outline-btn {
    background: #F05657;
    font-size: 14px;
    font-weight: 600;
    font-family: "Mont";
    color: #fff;
    padding: 7px 16px;
    border: 1px solid #FFD2D3;
    border-radius: 12px;
}
.green-lt-bg {
    background: rgb(0 103 106 / 20%);
    color: #00676A;
    font-weight: 700;
    border: 1px solid #00676A;
}
.read-more {
    font-size: 13px;
    font-weight: 600;
}
/* _______CSS For login form _______ */
.login-logo {
    max-width: 180px;
}
.form-wraper {
    background: #F4EEEB;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr 28px;
    align-items: center;
    padding: 6px 14px;
    gap: 10px;
    border: 1px solid #F4EEEB;  
}
.login-form {
    background: #fff;
    border-radius: 24px;
    border-bottom: 12px solid rgb(233 76 78 / 35%);
    padding: 30px 60px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.form-wraper input {
    background: transparent;
    border: none;
}

.form-wraper input::placeholder {
    color: rgb(34 36 37 / 70%);
}
.login-form a {
    color: #F05657;
    font-size: 14px;
    font-weight: 600;
}
.login-form-wraper {
    min-height: 100vh;
}
.login-form .btn {
    background: #F05657;
    width: 100%;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    font-family: 'Mont' !important;
    padding: 8px 20px;
}
.hover {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0%);
    transition: .25s;
}
.hover:hover {
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.05);
    border-radius: 10px;
    background-color: #F6F6F6;
}
::-webkit-scrollbar {
    width: 5px;
    background-color: #F6F6F6;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.05);
    background-color: #EDE4D6;
}

/* _________ CSS for root ________ */
.root {
    padding: 56px 20px 10px 10px;
}
header {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 11;
    width: calc(100% - 134px);
    padding: 10px 24px 10px 0px;
    background: #ebe4d4;
}
ul.dropdown {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.10);
    padding: 18px 12px;
    min-width: 250px;
    position: absolute;
    top: 100%;
    right: -5px;
    transition: .2s;
    transform: scaleY(0);
    transform-origin: top;
}
ul.dropdown a {
    color: #221E1F;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-family: "Mont";
}
ul.dropdown>li>a {
    border-radius: 7px;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.00);
}
ul.dropdown>li {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.00);
    padding: 12px 20px;
    margin-bottom: 5px;
    transition: .2s;
}
ul.dropdown>li:hover {
    background: #ebe4d4;
}
ul.header-right-text>li {
    position: relative;
}
ul.header-right-text>li:hover>a.orange_btn {
    color: #fff;
}
ul.header-right-text>li:hover .dropdown {
    opacity: 1;
    transform: scaleY(1);
}
.back-btn {
    color: #221E1F;
    font-family: "Mont";
    font-weight: 600;
}
.back-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F05657;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    margin-right: 10px;
}
.sidebar {
    position: fixed;
    padding: 24px 12px;
    background: #F05657;
    border-radius: 12px;
    width: 100px;
    left: 12px;
    top: 12px;
    bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.menu-items {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    width: 46px;
    height: 42px;
    border-radius: 11px;
    border: 1px solid rgb(255 255 255 / 0%);
}
.menu-items:hover, .menu-items.active {
    background: #F37A6F;
    border: 1px solid rgb(255 255 255 / 50%);
}
.menu-items svg {
    width: 22px;
    height: 22px;
}
.sidebar-menu {
    gap: 5px;
}
main {
    background: #fff;
    width: calc(100% - 124px);
    margin-left: auto;
    border-radius: 16px;
    box-shadow: 0 0 45px rgb(0 0 0 / 5%);
    height: auto;
    min-height: calc(100vh - 72px);
    padding: 16px 20px;
}
.round-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 30px;
    border: none;
    font-size: 13px;
    font-family: "mont";
    font-weight: 700;
    color: #fff;
    padding: 8px 16px;
    line-height: 1.15;
    text-align: center;
    justify-content: center;
    min-height: 33px;
}
.round-sm-btn {
    font-weight: 600;
    border-radius: 6px;
    min-height: 34px;
    line-height: 14px !important;
    transition: .25s;
}
.round-sm-btn:hover {
    box-shadow: 0 3px 8px rgb(0 0 0 / 17%);
}
.round-btn i.fa-plus {
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 3px;
    font-size: 8px;
    line-height: .9;
}
.gray-bg {
    color: #222425;
    background: #f6f6f6;
}
.content-topbar {
    border-bottom: 1px solid #F4EEEB;
    padding: 0 0 6px;
}
.dotted-card {
    border: 1px dashed #F05657;
    padding: 12px 20px;
    border-radius: 14px;
    background: #FCDBD2;
}
.admin-view .dotted-card {
    border: 1px dashed #00676A;
    background: rgb(0 103 106 / 10%);
}
.ctm-tabs {
    border-bottom: 1px solid #F4EEEB;
    gap: 45px;
}
.ctm-tabs .nav-link {
    margin-bottom: 0px;
    padding: 0;
    border:  none;
    color: #231F20;
    font-weight: 600;
    font-family: "Minion pro";
}
.ctm-tabs .nav-link:hover {
     border: none;
}
.ctm-tabs .nav-item.show .nav-link, ul.ctm-tabs .nav-link.active {
     border: none;
    border-bottom: 2px solid  #221E1F;
    padding-bottom: 10px;
}
.order-count {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-size: 13px;
    color: #fff;
    font-family: "Mont";
    font-weight: bold;
    transition: .25s;
    line-height: 28px;
}
.order-count-01 {
    background: rgb(243 122 111 / 20%);
    color: #F37A6F;
}
.order-count-01:hover, .active .order-count-01 {
    background: rgb(243 122 111 / 100%);
    color: #fff;
}
.order-count-02 {
    background: rgb(0 103 106 / 20%);
    color: #00676A;
}
.order-count-02:hover, .active .order-count-02 {
    background: rgb(0 103 106 / 100%);
    color: #fff;
}
.order-count-03 {
    background: rgb(247 149 94 / 20%);
    color: #F7955E;
}
.order-count-03:hover, .active .order-count-03 {
    background: rgb(247 149 94 / 100%);
    color: #fff;
}
.table-wraper {
    border-radius: 12px;
    overflow: auto;
    border: 1px solid #F4EEEB;
    overflow: auto;
    height: calc(100vh - 300px);
}
.tags {
    border-radius: 25px;
    padding: 4px 12px;
    background: red;
    font-size: 12px;
    font-family: "Mont";
    font-weight: 700;
    background: #C6D5D6;
    color: #231F20;
    white-space: nowrap;
    min-width: 66px;
    display: inline-block;
}
.tags-orange {
    background: #F7955E;
    color: #fff;
}
.tags-danger {
    background: #F05657;
    color: #fff;
}
.table-wraper tr td:last-child {
    opacity: 0;
}
.table-wraper tr:hover td:last-child {
    opacity: 1;
}
.tags-light {
    background: #F9B9AC;
    color: #221E1F;
}
.users img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}
.users {
    position: relative;
}
.online {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00676A;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    border: 1px solid #fff;
}
.header-right-text {
    gap: 12px;
}
.cart {
    border: 1px solid #B7BFC5;
    position: relative;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart span {
    position: absolute;
    right: -5px;
    top: -5px;
    background: #F05657;
    display: flex;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-family: "Mont";
    font-size: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 700;
}
.serach-form {
    border: 1px solid #EDE4D6;
    width: 100%;
    max-width: 255px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 36px;
    padding-left: 15px;
}
.serach-form input {
    background: transparent;
    border: navajowhite;
}
.serach-btn {
    border: navajowhite;
    background: transparent;
    margin: 4px 0;
    border-left: 1px solid #ede4d6;
}
.order-search {
    margin-left: auto;
    margin-bottom: -40px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}
.title-md i.fa-question {
    background: #C8C8C8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    width: 18px;
    height: 18px;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 16px;
    border-top: 1px solid #F4EEEB;
    padding-top: 10px;
    margin-top: 16px;
}
.product-items {
    border: 1px solid #f4eeeb;
    border-radius: 14px;
    padding: 12px;
    position: relative;
}
.sold-out-badge::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 75%);
    top: 0;
    left: 0;
    border-radius: 13px;
    cursor: not-allowed;
}
.product-items.sold-out-badge::after {
    content: "Sold out";
    position: absolute;
    width: 100%;
    background: #231F20;
    left: 0;
    top: 80%;
    transform: translateY(-50%);
    text-align: center;
    padding: 13px;
    color: #fff;
    font-family: "Mont";
    text-transform: uppercase;
    font-weight: 700;
    cursor: not-allowed;
}
.sold-out-badge .availablty {
    opacity: 0;
}
.quantity-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.round-btn.black-bg{
    background: #404040;
    color: #fff;
    font-family: "Minion pro";
    font-weight: 600;
}
.product-name {
    font-size: 16px;
    border-bottom: 1px solid #f4eeeb;
    margin: 10px -12px;
    padding: 0 12px 16px;
}
.availablty {
    display: block;
    background: #6A77F1;
    color: #fff;
    border-radius: 0 16px;
    width: max-content;
    margin: -12px -12px 0 auto;
    padding: 2px 15px;
}
.quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #C6BCBC;
    border-radius: 30px;
    padding: 4px 6px; 
}
.product-name {
    font-size: 15px;
    border-bottom: 1px solid #f4eeeb;
    margin: 8px -12px;
    padding: 0 10px 12px;
}
.quantity-btn {
    background: #fff;
    border: none;
    margin: 0;
    padding: 0px 5px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
}
.quantity-btn svg {
    width: 15px;
    height: 15px;
}
.quantity-input {
    outline: none;
    user-select: none;
    text-align: center;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-family: "Mont";
    font-size: 14px;
    font-weight: 700;
    color: #262828;
}
.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.add-to-cart {
    background: #F05657;
    border-radius: 11px;
    width: 100%;
    justify-content: center;
    padding: 12px;
    margin-top: 10px;
}
.add-to-cart img {
    width: 18px;
}

.quantity-btn i {
    font-size: 10px;
}
.border-cards {
    border: 1px solid #F4EEEB;
    border-radius: 16px;
    padding: 20px 20px 12px;
    height: 100%;
    overflow-y: auto;
}
.arrow-btn {
    width: 35px;
    height: 35px;
    background: rgb(240 86 87 / 10%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    transition: .25s;
}
.arrow-btn svg path {
    stroke: #f05657;
    fill: #f05657;
}
.arrow-btn svg path {
    stroke: #f05657;
}
.arrow-btn:hover {
    background: rgb(240 86 87 / 100%);
}
.arrow-btn:hover svg path {
    stroke: #ffffff;
    fill: #fff;
}
.mini-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}
.mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.listing-lg {
    font-size: 15px;
    display: block;
    line-height: 1;
    font-weight: 700;
}
.listing-sm {
    font-size: 13px;
    color: #848484;
    line-height: 1;
}
.listing-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: calc(100% - 42px);
}
.title-des {
    width: calc(100% - 60px);
}
.left-listing {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
div > .left-listing:not(:last-child) {
    border-bottom: 1px solid #f4eeeb;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
div > .left-listing.bottom-dashed-bdr:not(:last-child) {
    border-bottom: 1px dashed #DDD6D3;
}
.one-third-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 20px;
    height: 100%;
    overflow: hidden;
}
.equal-third-row {
    display: grid;
    grid-template-columns: 350px 1fr 1fr;
    gap: 20px;
}
.double-col-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.double-col-form .title-sm {
    width: 100%;
    margin-bottom: 12px;
}
.double-col-form .form-group {
    width: calc(50% - 12px);
}
/*.recipient-form-cont {
    height: calc(100vh - 200px);
    overflow-y: auto;
}*/
.product-scroll {
    height: calc(100vh - 215px);
    overflow-y: auto;
}
.order-scroll {
    height: calc(100vh - 235px);
    overflow-y: auto;
}
.order-summary {
    height: calc(100vh - 158px);
    overflow-y: auto;
}
.customer-info-scroll {
    height: calc(100vh - 175px);
    overflow-y: auto;
}
.address-recipient-cont {
    height: calc(100vh - 285px);
    overflow-y: auto    ;
}
.order-notecard {
    height: calc(100vh - 160px);
    max-height: calc(100vh - 160px);
    overflow: auto;
}
.order-summary-detail {
    height: calc(100vh - 160px);
    overflow: auto;
}
.delivery-list-items {
    display: grid;
    background: #fff;
    border: 1px solid #F4EEEB;
    border-radius: 12px;
    align-items: center;
    padding: 6px 6px 6px 12px;
    grid-template-columns: 1fr 105px;
    margin-bottom: 10px;
    box-shadow: 0 10px 35px rgb(252 145 122 / 3%);
    transition: .25s;
}
.delivery-list-items:hover {
    background: rgb(252 145 122 / 10%);
    border: 1px solid #FC917A;
}
.summary-close.hover {
    background: transparent;
    border: 2px solid #8A8C8D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    color: #8A8C8D;
    display: flex;
    transform: rotate(45deg);
    width: 20px;
    height: 20px;
}
.summary-double-column {
    display: grid;
    grid-template-columns: 1fr 50px 24px;
    align-items: center;
    border-bottom: 1px dashed #F4EEEB;
    margin-bottom: 6px;
    padding-bottom: 6px;
}
.product-summary-all {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-top: 20px;
}
.round-btn img {
    width: 18px;
}
.custom-checkbox {
    display: grid;
    align-items: center;
    grid-template-columns: 24px 1fr;
    position: relative;
}
.custom-checkbox label {
    margin: 0;
}
.custom-checkbox input[type="checkbox"] {
    opacity: 0;
}
.custom-checkbox label::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #C8C8C8;
    border-radius: 3px;
    left: 0;
    top: 2px;
}

.custom-checkbox input[type="checkbox"]:checked + label::after {
    border: 1px solid #F05657;
    background: #F05657;
}
.custom-checkbox label::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 6px;
    border-bottom: 2px solid #fff;
    left: 2px;
    top: 5px;
    background: transparent;
    z-index: 1;
    border-left: 2px solid #fff;
    transform: rotate(-36deg);
}
/*.bottom-button {
    position: absolute;
    bottom: 16px;
    right: 20px;
} */  
.bottom-button {
    text-align: right;
}
.blue-btn {
    background: #6A77F1;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    gap: 8px;
}
.form-group-upload label[for="upload_file"] {
    width: 85px;
    height: 85px;
    border: 1px dashed#ccc;
    border-radius: 10px;
    background-image: url("file:///D:/DPO/assets/images/dummy-img.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    font-size: 12px;
    color: #8A8C8D;
}
.form-group-upload input[type="file"] {
    display: none;
}
.radio-btn [type="radio"]:checked,
.radio-btn [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.radio-btn [type="radio"]:checked + label,
.radio-btn [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.radio-btn [type="radio"]:checked + label:before,
.radio-btn [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #C8C8C8;
    border-radius: 100%;
    background: #fff;
}
.radio-btn [type="radio"]:checked + label:before {
    border: 1px solid #F05657;
}
.radio-btn [type="radio"]:checked + label:after,
.radio-btn [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #F05657;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.radio-btn [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.radio-btn [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 30px;
}
.round-btn.orange-bg {
    padding: 10px 24px;
}

/*________ CSS For baslet Modal _________*/
.basletModal {
    display: none; 
    position: fixed; 
    z-index: 33;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.7); 
}
.modal-basketList {
    position: relative;
    background-color: #fff;
    margin-left: auto;
    padding: 0;
    width: 100%;
    height: 100%;
    max-width: 400px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}
.closeBasket {
    font-size: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    line-height: 1;
    color: #868686;
    border: 1px solid #868686;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    cursor: pointer;
}
.basket-footer .round-btn {
    padding: 12px 20px;
    min-width: 125px;
    text-align: center;
    justify-content: center;
}
.basket-items-title {
    font-size: 14px;
    font-family: "Mont";
    font-weight: 600;
    color: #222425;
    display: block;
    margin-bottom: 2px;
}
.basket-brands {
    color: #848484;
    font-size: 12px;
}
.basket-items {
    display: grid;
    grid-template-columns: 1fr 85px;
    gap:  16px;
    padding: 12px 20px;
    border-top: 1px solid #F4EEEB;
}
.basket-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.delete-basket {
    background: transparent;
    border: navajowhite;
    padding: 0 2px;
}
.basket-divider {
    width: 1px;
    display: block;
    height: 16px;
    background: #EDEDED;
}
.items-quantity {
    font-size: 10px;
}
.items-quantity span {
    font-size: 14px;
    font-family: "Mont";
    display: inline-block;
    transform: translateY(1px);
}
.basketList-wraper {
    height: calc(100vh - 140px);
    overflow-y: scroll;
}    
.quantity-text {
    font-size: 16px;
    font-family: "Mont";
    font-weight: 700;
    color: #3E3E3E;
}
.dark-green {
    background: #599C9E;
    font-size: 12px;
    padding: 8px 12px;
    min-width: 120px;
    font-weight: bold;
    background: #599C9E;
    border: 3px solid #C5DDDD;
    transition: .25s;
}
.dark-green:hover {
    background: #00676A;
}
.order-notecard .textarea-half {
    max-width: 585px;
}
.buttons-list  {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.order-notecard .title-sm {
    font-size: 14px;
}

/*___________ CSS For comman Modal ____________ */
.commanModal {
    display: none; 
    position: fixed; 
    z-index: 22;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.7); 
}
.modal-contents {
    position: relative;
    background-color: #fcfbfc;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 450px;
    box-shadow: 0 0px 10px rgba(0,0,0,0.25);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.2s;
    animation-name: animatetop;
    animation-duration: 0.2s;
    border-radius: 10px;
}
@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}
.closeModal {
    font-size: 24px;
    cursor: pointer;
}
.product-pop-img {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}
.view-img-wraper .modal-contents {
    background-color: #fcfbfc;
}
.view-img-wraper img {
    display: block;
    width: 100%;
    max-width:350px;
    margin: 0 auto;
}
.modal-header {
    padding: 12px 20px;
}
.view-img-wraper .closeModal  {
    position: absolute;
    right: -30px;
    top: -36px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: center;
}
#deleteProduct {
    z-index: 222;
}
.modal-footer button {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    min-width: 100px;
    font-size: 14px;
}
.modal-footer button.closeModal {
    border: 1px solid #C8C8C8;
}
.modal-footer {
    border-top: 1px solid transparent;
    padding: 36px 20px 20px 
}
.modal-body {
    padding: 20px;
}




/* ____________ Start css for Admin ___________ */
.admin-view, .admin-view header {
    background: #C5D4D5;
}
.admin-view .sidebar {
    background: #054746;
    overflow: auto;
}
.admin-view .menu-items:hover, .admin-view .menu-items.active {
    background: #136C6B;
}
.sidebar-menu .menu-items img {
    height: 22px;
    width: 42px;
    object-fit: contain;
}
.orange-highlighted-text {
    border-radius: 10px;
    background: #F05657;
    padding: 6px 6px 4px;
    border: 3px solid #FDE6E0;
    color: #fff;
    font-family: "Mont";
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}   
.admin-view .content-topbar {
    padding: 0 0 10px;
}
.content-topbar .title-sm {
    font-size: 14px;
}
.admin-view .table-wraper {
    height: unset;
}
.admin-scroll {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 68px);
    overflow: hidden;
}
.scrollable-wraper {
    height: 100%;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 20px;
    border: 1px solid #f4eeeb;
}
/*.admin-scroll .table-wraper {
    border: 0px solid #F4EEEB;
}*/
.active-dots {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #41ce81;
    border-radius: 50%;
    transform: translateY(-2px);
}
.admin-scroll .tab-content {
    height: 100%;
    overflow-y: auto;
}
.custom-col {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.customer-fliter span {
    font-size: 14px;
    white-space: nowrap;
}
.customer-fliter {
    gap: 10px;
}
.brand-col {
    display: grid;
    grid-template-columns: 1fr 1.35fr 100px;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}
.brand-col-field {
    border: 1px solid #F4EEEB;
    background: #F9F7F6;
    padding: 5px 14px;
    border-radius: 6px;
}
.brand-col label {
    margin: 0 0 6px;
    font-weight: 600;
}
.gray-select {
    border: 1px solid #F4EEEB;
    background: #F9F7F6;
    padding: 5px 14px;
    border-radius: 6px;
    color: #8A8C8D;
}
.gray-select-sm {
    max-width: 275px;
}
.gray-wraper {
    border: 1px solid #F4EEEB;
    background: #F9F7F6;
    display: grid;
    align-items: center;
    border-radius: 10px;
    grid-template-columns: 1fr 1fr;
    padding: 2px;
    position: relative;
    max-width: 135px;
}
.gray-wraper.actions {
    max-width: 90px;
}
.gray-wraper input {
    width: 47px;
    text-align: center;
    background: transparent;
    border: navajowhite;
    font-weight: 700;
}
.gray-wraper button.round-btn {
    border-radius: 0 8px 8px 0;
}
.gray-wraper .round-btn {
    padding: 8px;
    max-width: 65px;
}
.gray-edit svg {
    stroke: #41ce81;
    fill: #41ce81;
}
.manage-stock-table.table-wraper tr th:last-child {
    opacity: 1;
    padding: 9px 5px;
}
.manage-stock-table.table-wraper tr td:last-child {
    opacity: 1;
    padding: 9px 5px;
}
.round-btn.gray-edit,
.round-btn.red-remove {
    background: transparent;
}
.red-remove button svg {
    width: 20px;
    height: 17px;
    fill: #FF5151;
}
.red-remove svg {
    fill: #FF5151;
    width: 15px;
}
.gray-edit svg {
    stroke: #41ce81;
    fill: #41ce81;
    width: 20px;
    height: 20px;
}
.gray-wraper .round-btn {
    padding: 8px;
    min-width: 40px;
}
.gray-wraper .round-btn.gray-edit,
.gray-wraper .round-btn.red-remove  {
    padding: 4px;
    min-width: 40px;
}
.gray-wraper::after {
    position: absolute;
    width: 1px;
    height: 100%;
    content: "";
    background: #f4eeeb;
    left: 50%;
    top: 0;
}
.round-sm-btn {
    font-weight: 600;
    border-radius: 6px;
    min-height: 34px;
}
.delete-btn-icon {
    height: 16px;
    margin-bottom: 3px;
}
.highlighted-tag-box {
    background: #EEE7D7;
    padding: 5px 5px 5px 16px;
    border-radius: 7px;
    display: flex;
    justify-content: space-between;
}
.highlighted-tag-box {
    background: #EEE7D7;
    padding: 5px 5px 5px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
}
.highlighted-tag-box .title-sm {
    font-family: "Minion pro";
}
.highlighted-tag-box  .orange-highlighted-text {
    padding: 5px 5px 3px;
    font-size: 15px;
    margin-left: 36px;
}
.brand-filter-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 38%;
}
.filter-btn {
    border: 1px solid #FC917A;
    background: #FFF4F2;
    border-radius: 7px;
    padding: 5px 15px;
    color: #FC917A;
    font-family: "Mont";
    font-weight: 600;
}
.brand-filter .form-wraper {
    flex-grow: 1;
}
.container-sm  {
    max-width: 750px;
    margin: 0 auto;
}
.customer-sm-wraper {
    width: 100%;
    max-width: 750px;
    margin: 24px auto 10px;
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.customer-sm-wraper .table-wraper {
    border: 1px solid #F4EEEB;
}
.customer-btn-wraper {
    text-align: right;
    margin-top: 16px;
}
.customer-btn-wraper .round-btn {
    min-width: 115px;
}
.no-record-wraper {
    text-align: center;
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: center;
    border: 1px dashed #054746;
    border-radius: 8px;
    background: #f2f2f2;
    font-size: 16px;
    margin: 20px 0;
}
.gray-bdr-btn {
    border: 1px solid #C8C8C8;
    font-weight: 600;
    padding: 8px 13px;
    border-radius: 10px;
    min-width: 100px;
    font-size: 14px;
}
.shadow-card {
    box-shadow: 0 0 10px rgb(0 0 0 / 7%);
    margin: 8px;
    border-radius: 10px;
    border: 1px solid transparent;
}
.user-status {
    min-width: 125px;
}
.form-wraper .gray-select {
    background: transparent;
    padding: 0;
}
.packing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.packing-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    margin-top: 10px;
    border: 1px solid #C4D3D4;
    border-radius: 12px;
}
.packing-items label {
    margin: 0;
}
.packing-items .quantity-control {
    opacity: 0;
    transition: .25s;
    background: #AEC4C3;
}
.packing-items:hover .quantity-control {
    opacity: 1;
}
.packing-items:hover {
    background: rgb(5 71 70 / 10%);
}
.packing-cost {
    display: inline-block;
    background: #F6F6F6;
    padding: 6px 15px;
    border-radius: 8px;
}
.toatl-cost {
    font-weight: 700;
    font-size: 16px;
    margin-left: 7px;
}


/* _______ Updated css for scrollbale table _________ */
.tabs-updated .tab-content {
    height: 100%;
    overflow: hidden;
}
.tabs-updated .tab-pane {
    height: 100%;
    overflow: hidden;
}
.scrollable-wraper.tabs-updated {
    border-radius: 0px;
    border: 0px solid #f4eeeb;
}
.tabs-updated .listing-text {
    width: 100%;
    background: #fff;
    padding:  10px;
    margin: 8px 0;
    border: 1px solid #DFDFDF;
    border-radius: 12px;
    transition: .2s;
}
.tabs-updated .listing-text:hover {
    background: #EFF1F3;
}
.msg-time-wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.msg-time {
    font-size: 12px;
    color: #97A3B0;
}
.msg-time {
    font-size: 12px;
    color: #97A3B0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.tabs-updated .listing-sm {
    line-height: 1.25;
    display: block;
}
.tabs-updated .listing-lg {
    font-size: 14px;
}
.tabs-updated .mini-img {
    width: 48px;
    height: 48px;
    border: 1px solid #fff;
}
.tabs-updated .border-cards {
    padding: 12px;
}
.message-des {
    display: grid;
    grid-template-columns: 65px 1fr;
    align-items: center;
    gap: 12px;
}
.message-detail span {
    font-size: 14px;
    color: #ADAEAF;
}
.message-detail .messager-name {
    font-size: 16px;
    font-weight: 600;
    color: #565656;
    padding-right: 10px;
}
.message-times span {
    font-size: 12px;
}
.seprator-line {
    padding: 0 8px;
    color: #afafaf;
}
.message-des .mini-img {
    width: 65px;
    height: 65px;
}
.message-text {
    color: #737373;
    margin: 20px 0 30px;
}
.messgae-size {
    max-width: 650px;
}
.dashed-seprator {
    border-top: 1px dashed #E8E2DF;
    margin: 0 -12px 16px;
}
#newMessage .modal-footer {
    padding: 0px 20px 20px;
}

/*   __________________ CSS For New Product Listing __________________ */
.content-scroll-new {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 68px);
    overflow: hidden;
}
.content-scroll-new .one-third-row, .content-scroll-new .custom-col {
    height: 100%;
    overflow: hidden;
}
.content-scroll-new .border-cards {
    height: 100%;
    overflow: auto;
}
.content-scroll-new .product-list {
    height: 100%;
    overflow: auto;
}
.content-scroll-new .custom-col  {
    display: flex;
    flex-direction: column;
}
.content-scroll-new .quantity-btn {
    padding: 0px 3px;
    height: 12px;
}
.content-scroll-new .quantity-btn i {
    font-size: 8px;
}
.content-scroll-new .product-items {
    padding: 10px;
}
.product-varient {
    /* display: grid; */
    display: block;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    border-top: 1px solid #EBDCD0;
    padding: 7px 12px 0;
    margin: 10px -10px 0;
}
.content-scroll-new .add-to-cart {
    border-radius: 5px;
    padding: 7px;
    margin-top: 10px;
    font-size: 12px;
}
.content-scroll-new .quantity-input {
    width: 24px;
}
.content-scroll-new .quantity-control {
    padding: 1px 6px;
}
.varient-name {
    color: #262828;
    font-size: 12px;
    font-family: "Mont";
    font-weight: 600;
    display: inline-block;
}
/* .varient-value {
    background: #fff;
    border-radius: 3px;
    width: 100%;
    display: block;
    padding: 1px 5px;
    margin-top: 3px;
} */
.varient-value {
    background: transparent;
    border-radius: 3px;
    width: auto;
    display: inline-block;
    padding: 1px 5px;
    margin-top: 3px;
    font-weight: bold;
    text-transform: uppercase;
}
.product-items {
    background: #F4F0ED;
    border: 1px solid #EBDCD0;
}
.round-btn.black-bg {
    background: #888D93;
    font-family: "Mont";
    font-size: 11px;
    padding: 5px 8px;
}
.content-scroll-new .product-name {
    font-size: 13px;
    margin: 0px -10px;
    padding: 0 72px 10px 10px;
}
.content-scroll-new .product-items {
    position: relative;
}
.content-scroll-new .availablty {
    position: absolute;
    padding: 3px 10px;
    right: 0;
    top: 0;
    margin: 0;
    font-size: 11px;
    font-family: "Mont";
}
.product-list {
    gap: 12px;
    margin-top: 12px;
}


/* ___________________ CSS For Basket _______________ */
.modal-basketList {
    max-width: 485px;
}
.basket-items-title {
    font-size: 16px;
}
.basket-items {
    grid-template-columns: 1fr ;
    gap: 0px;
    border-top: 0px solid #F4EEEB;
    padding: 15px 20px;
}
.basketList-wraper .basket-items:nth-child(odd) {
    background: rgb(240 86 87 / 7%);
}
.basketList-wraper .basket-items {
    margin: 5px 5px 5px 0;
}
.basket-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.basket-varient-wraper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.basket-varient {
    display: flex;
    align-items: center;
    gap: 20px;
}
.basket-varient-name {
    font-size: 12px;
    font-family: "Mont";
    color: #262828;
    padding-right: 3px;
}
.basket-varient-value {
    font-size: 13px;
    color: #262828;
    font-weight: 400;
}
.msg-icons {
    border: 1px solid #B7BFC5;
    position: relative;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.msg-icons span {
    position: absolute;
    right: -5px;
    top: -5px;
    background: #61E86F;
    display: flex;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-family: "Mont";
    font-size: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 700;
}


.add-note-wraper {
    width: 100%;
}
.add-note-header {
    display: flex;
    align-items: center;
}
.add-note-header .round-btn {
    white-space: nowrap;
    border-radius: 8px;
}
.add-note-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    border: 1px solid #F4EEEB;
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 13px;
}
.add-note-title {
    flex-grow: 1;
}
.add-note-date {
    font-size: 12px;
    line-height: 1;
}
.add-note-time {
    line-height: 1;
    font-size: 11px;
    color: #8A8C8D;
}
.add-date-time {
    display: flex;
    flex-direction: column;
    margin-right: 8px;
    padding: 3px 18px 3px 0;
    gap: 5px;
    border-right: 1px solid rgb(127 127 127 / 15%);
}
.note-remove-btn {
    background: transparent;
    border: none;
}
.note-remove-btn svg {
    width: 15px;
    fill: #f05657;
}
.double-btn-group {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    width: 100%;
    margin-top: 30px;
}
.double-btn-group  .round-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 40px;
    border-radius: 8px;
}
.double-btn-group .round-btn span {
   padding-top: 3px;
}
.filter-wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.filter-wraper h4.title-sm {
    margin-bottom: 0;
}
.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #FC917A;
    background: #FFF4F2;
    border-radius: 6px;
    color: #FC917A;
    padding: 5px 20px;
}
#filterList .modal-basketList {
    margin-left: 0;
}
.modal-filterList {
    background: #fff;
    height: 100vh;
    width: 365px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.filterList-headers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}
.clearFilter {
    border: 1px solid #CECECE;
    padding: 3px 6px;
    border-radius: 6px;
    color: #A1A1A1;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}
.filterFooter .round-btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
}
.filterFooter .closeFilter {
    border: 1px solid #C8C8C8;
    color: #222425;
}
.filtertList-wraper {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex-grow: 1;
}
.filterList-top {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 16px;
}
.filterList-top h4 {
    font-size: 14px;
}
.appliedFilter {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 16px 10px;
    gap:  4px;
}
.appliedFilterTag {
    background: #6A77F1;
    padding: 6px 10px 4px;
    color: #fff;
    border-radius: 6px;
    font-family: "Mont";
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
}
.close-appliedFilter {
    font-size: 20px;
    line-height: 1;
}
.filtertList-wraper .radio-group {
    gap: 4px 30px;
    flex-direction: column;
}
.filterSelect {
    transform: scaleY(0);
    height: 0;
    padding-right: 16px;
    padding-left: 16px;
    transform-origin: top;
    transition: .15s;
    border-top: 1px solid transparent;
}
.active .filterSelect {
    transform: scaleY(1);
    height: auto;
}
.filterList-top span {
    transition: .15s;
}
.active .filterList-top span {
    transform: rotate(180deg);
}
.filtertList-wraper .filterList-items:not(:last-child) {
    border-bottom: 1px solid #F4EEEB;
}
.active .filterSelect {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #f4eeeb;
}
.scrollable-wraper {
    border-radius: 15px;
}
.sample-gray-text {
    color: #8A8C8D;
    padding-left: 3px;
    padding-right: 3px;
}
.tags-light-green {
    background: #CEF9AC;
}
.tab-content .tags {
    padding: 4px 7px;
    min-width: 100px;
}
/*______ Responsive css _______*/
@media (max-width: 1023px) {
    .ctm-tabs {
        gap: 16px;
    }
    .order-search {
        margin-bottom: 0;
    }
    .double-col-form .form-group {
        width: 100%;
    }
    .one-third-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}


@media (max-width: 767px) {
    .login-form {
        padding: 30px 25px;
    }

}