.myaddresscontainercontainer {
    width: 73%;
    margin: 30px auto 0px auto;
}
input[type=radio] {
    margin: 0px 0 0 !important;
}
.mainContainer{
    padding:5px 20px 20px 20px !important; 
}

.inneraddress {
    border: 1px solid #0e3696;
    border-radius: 10px;
}

.editaddresbutton {
    font-weight: 600;
    color: #0d6efd;
}

.addressbar,
.noaddress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.singleboxflexer {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    /* flex-direction: column */
}

.addressdetails {
    width: 85%;
}

.addressdetails p {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0px;
}

.adddressbrarcode {
    width: 66%;
}

/* modal */

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

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

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center
}

.modal-box {
    background: #edf3fd;
    border-radius: 8px;
    width: 45%;
    overflow: hidden;
    /* max-height: 427px; */
    /* height: 370px; */
}


.addressheadsetxyt {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.closes {
    width: 35px;
    height: 35px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #f2f2f2;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.432);
}

.addressheadsetxyt {
    padding: 10px;
    border-bottom: 1px solid #0e3696;
    background: #edf3fd;
    /* background: rgb(225, 238, 255); */
}

.twoboxermyt {
    display: flex;
    /* gap:10px; */
}

.createbuttonbox {
    width: 30%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-right: 1px solid #051f5a;
}

.addressListbox {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding: 15px;
    max-height: 410px;
    overflow-y: auto;
    scrollbar-width: none;

}

.buttonadd {
    width: 100%;
    background-color: #1a69df;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}


.buttonadd:active {

    background-color: #104a8c;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.15);
}

.listlining {
    width: 100%;
    background: #f2f2f2;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;

    transition: all 0.15s ease;
    user-select: none;
}

/* hover effect */
.listlining:hover {
    background: #e6e6e6;
}

/* active (click) effect */
/* .listlining:active{
    transform: scale(0.97);
    background: #dcdcdc;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.15);
}

.listlining.active{
    background: #dcdcdc;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.15);

} */


.address {
    display: flex;
    justify-content: space-between;
}















/* addresscretebox */

/* ===== MODAL BACKDROP ===== */
.newaddressmodal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    /* JS se open karna */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
}

/* show class */
.newaddressmodal.shower {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== MODAL BOX ===== */
.addmodal-overlay {
    width: 60%;

    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: popup 0.25s ease;
}

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

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

/* ===== HEADER ===== */
.createaddresbyvt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

.createaddresbyvt h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.closesnext {
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

/* ===== BODY ===== */
.addresscreationbox {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* OPTION CARDS */
.addresscreationbox .mapper,
.addresscreationbox .manual {
    border: 2px dashed #ddd;
    border-radius: 12px;
    /* padding: 18px 12px; */
    text-align: center;
    cursor: pointer;
    transition: .25s;
    font-weight: 500;
    background: #fafafa;
}

.addresscreationbox .mapper:hover,
.addresscreationbox .manual:hover {
    border-color: #1f3f7a;
    background: #f0f5ff;
    transform: translateY(-2px);
}

/* ===== MOBILE ===== */
/* @media(max-width:480px){
    .addmodal-overlay{
        max-width: 100%;
        border-radius: 12px;
    }

    .addresscreationbox{
        grid-template-columns: 1fr;
    }

    .createaddresbyvt h3{
        font-size: 16px;
    }
} */


/* address modal */



.footerContainer,
.copyRight {
    display: none !important;
}



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

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

.renderRemove {
    position: absolute;
    top: 0;
    right: 0;
}



.swal-title {
    color: rgb(12 12 12 / 96%) !important;
}

.swal-text {
    color: rgb(12 12 12 / 96%) !important;
}

.ship_online {
    margin-left: 11.5%;
    color: red;
}


.ship_online {
    margin-left: 4.5%;
    font-size: 13px;
}

.mobadr {
    margin-right: 10px;
    margin-left: 10px;
}


#checkoutForm .form-control {

    height: 30px !important;

}

.small-model {
    max-width: 500px !important;
}

.input-container {
    position: relative;
     /* background: #E8F4FF !important; */
  border-bottom: 1px solid #C9D8FF;
  color: #0E3696;
  margin-top:5px;
}
.input-container:hover {
    position: relative;
      /* background: #D6EBFF !important; */
  /* border-color: #1547C2; */
   
}

.input-container i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 15px;
}

.input-class {
    background: white;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    padding: 6px 16px 6px 30px;
    border: none;
    border-radius: 4px;
    width: 100%;
}

.input-icon {}

.chip {
    position: relative;
    padding: 6px 4px;
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    user-select: none;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); */
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.chip:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}

.chip.selected {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
    /* box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3); */
}

/* Ripple effect */
.ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.6);
    display: block;
    content: "";
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.close-btn {
    color: red;
    position: absolute;
    right: 8px;
    top: 8px;
    height: 25px;
    width: 25px;
    border-radius: 25px;
    border: none;
    background: white;
    box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.25);
    transform: translate(35%, -35%);
    z-index: 100;
}



#footer-container {
    display: block;
}


.chip.selected {
    background-color: #0e3696 !important;
    color: white;
    border-color: #fff !important;
    /* box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3); */
}

.chip {
    padding: 10px 4px !important;
}



.row {
    margin: 20px 10px !important;
}

#addAddress,
#confirmButton {
    width: 100% !important;
}

.view {
    display: block !important;
}

.hide-container {
    display: none !important;
}

.w-45,
.w-55 {
    width: 100% !important;
}



.map-container {
    width: 100% !important;
    /* height: 0vh !important; */
}

#footerContainer {
    display: none;
}






.mappinbox {
    position: relative;
    height: 210px;
}



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

.col-sm-4,
.col-xs-12 {
    padding-right: 0px !important;
    padding-left: 5px !important;
}

.row {
    margin: 10px 0px !important;
}


.gpslocatorlocation {
    width: 100%;
    margin: 0px auto;
}

.gps-btn {
    width: 100%;
    color: #0e3696;
    background: #fff;
    border: 1px solid #0E3696;
   
    border-radius: 15px;
    padding: 14px 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
    /* background: linear-gradient(135deg, #0E3696, #1547C2); */
  /* color: #ffffff; */
  /* box-shadow: 0 6px 18px rgba(14, 54, 150, 0.35); */
}

.gps-btn:hover {
     background: linear-gradient(135deg, #1547C2, #0d296e);
     color: #fff;
     transition: 500ms;
     border: 1px solid #0E3696;
}

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

.gps-left i {
    font-size: 16px;
    /* color: #fff; */
}

.gps-arrow {
    font-size: 14px;
    color: #bbb;
}


.footer-1 {
    display: block !important;
}




.pac-container {
    z-index: 9999 !important;
    position: fixed !important;

}










































.modal-content {
    border-radius: 15px !important;
}


/* input groups */


@media(max-width:767px) {
    .buttongys {
        padding: 0 5px !important;
    }

    .row {
        margin: 20px 0px !important;
    }

    .modal-content {
        max-height: 650px;

    }

    .adddressbrarcode {
        width: 100%;
    }

    .singleboxflexer {
        flex-direction: column;
        align-items: start;
    }

    .addressdetails {
        width: 100%;
    }

    .addressbar {
        display: flex;
        justify-content: space-between;
        align-items: end;
        padding: 10px 5px;
    }

    .modal-box {
        background: #edf3fd;
        border-radius: 8px;
        width: 90%;
        overflow: hidden;
        /* max-height: 495px; */
        /* height: 370px; */
    }

    .twoninoneboxuui {
        flex-direction: column;
        align-items: start !important;
        gap: 5px !important;
    }

    .selectaddress {
        width: 100% !important;
    }

    .slecccc {
        width: 100% !important
    }

    .address-actions {
        gap: 10px !important;
        /* position: relative !important; */
        margin-top: 0px !important;
    }

    .address-card {
        padding: 5px 14px !important;
    }
    .myaddresscontainercontainer{
        width: 95%;
    }
    .checkoutform{
            display: flex
;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 10px;
    overflow-y: auto;
    scrollbar-width: none;
    height: 280px !important;
    }
}


.bluebutton {
    background: #0e3696 !important;
    color: white !important;
    border: none !important;
    margin: 0px 0px 5px 0px !important;

}


@media (max-width: 500px) {
    .myaddresscontainercontainer {
        width: 90%;
    }
}








/* button design */

/* From Uiverse.io by vinodjangid07 */
.Btn-Container {
    display: flex;
    width: 170px;
    height: fit-content;
    background-color: #0e3696;
    border-radius: 10px;
    box-shadow: 0px 5px 10px #bebebe;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
}

.icon-Container {
    width: 30px;
    height: 30px;
    background-color: #1f3f7a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #051f5a;
}

.text {
    width: calc(170px - 45px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    color: white;
    font-size: 1.1em;
    letter-spacing: 1.2px;
}

.icon-Container svg {
    transition-duration: 1.5s;
}

.Btn-Container:hover .icon-Container svg {
    transition-duration: 1.5s;
    animation: arrow 1s linear infinite;
}

@keyframes arrow {
    0% {
        opacity: 0;
        margin-left: 0px;
    }

    100% {
        opacity: 1;
        margin-left: 10px;
    }
}






.address-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 14px;
    /* margin-bottom: 12px; */
    background: #fff;
    position: relative;
}

.address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 600;

}



.selectaddress {
    color: #28a745;
    margin-top: 0px;
    margin-bottom: 0px;
}
.selectaddress:hover {
    color: #1d8135;
}

.address-header input {
    accent-color: #28a745;
}

.address-type {
    font-size: 16px;
}

.address-body {
    margin-top: 6px;
}

.address-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 0px;
}

.address-meta {
    display: flex;
    gap: 20px;
    font-size: 15px;
    color: #333;
}
.address-meta > span > strong{
    color: #0e3696;
    font-weight: 600;
    text-decoration: underline;
}

.address-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 8px;
    position: absolute;
    right: 15px;
    top: 0px
}

.address-actions a {
    color: #666;
    font-size: 16px;
    width: 25px;
    height: 25px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
    box-shadow: 0 0 5px 0px;
}

.address-actions a:hover {
    color: #000;
}

.default-badge {
    font-size: 11px;
    background: #e9f7ef;
    color: #28a745;
    padding: 2px 8px;
    border-radius: 20px;
}

.continuesbutton {
    border: none;
    outline: none;
    background: #ffffff;
  border: 1px solid #0E3696;
  color: #0E3696;
}

.continuesbutton:hover {
   background: #0E3696;
   transition: 500ms;
  color: #ffffff;
}

.continuesbutton:focus {
    background-color: #eee;
}

.pac-container {

    border-top: none !important;
}



.qty-controls{
    border: none !important;

}

.quantitySelect {
    border-radius: 5px;
    border: 1px solid #0e3696 !important;
    font-size:13px;
    font-weight: 500;
    color: #0e3696;
    text-align: start;
    width: 75px;
    padding: 3px 0px;
    position: relative;
    
}




select::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Firefox */
select {
    scrollbar-width: none;
}

/* Internet Explorer (old) */
select {
    -ms-overflow-style: none;
}












/* agar header fixed / sticky hai aur scroll hota hai */
header {
    overscroll-behavior: none;
}

#addressModal {
    overflow-y: auto;
    max-height: 100vh;
    -webkit-overflow-scrolling: touch;
    
}



html.modal-open,
body.modal-open {
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100%;
    touch-action: none;
}








/* ===== Quantity Select UI ===== */
.qty-controls {
    display: inline-flex !important;
    align-items: center;
}

.qty-controls select.quantitySelect {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    min-width: 100px;
    height: 38px;
    padding: 6px 34px 6px 12px;

    font-size: 14px;
    font-weight: 500;
    color: #222;

    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background-color: #fff;

    cursor: pointer;
    transition: all 0.2s ease-in-out;

    /* Custom arrow */
    background-image:
        linear-gradient(45deg, transparent 50%, #555 50%),
        linear-gradient(135deg, #555 50%, transparent 50%),
        linear-gradient(to right, #ddd, #ddd);
    background-position:
        calc(100% - 18px) 15px,
        calc(100% - 13px) 15px,
        calc(100% - 30px) 6px;
    background-size:
        5px 5px,
        5px 5px,
        1px 26px;
    background-repeat: no-repeat;
}

/* Hover */
.qty-controls select.quantitySelect:hover {
    border-color: #4caf50;
}

/* Focus */
.qty-controls select.quantitySelect:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.15);
}

/* Option styling */
.qty-controls select.quantitySelect option {
    padding: 8px;
    font-size: 14px;
}

/* Mobile touch improvement */
@media (max-width: 768px) {
    .qty-controls select.quantitySelect {
        height: 42px;
        font-size: 15px;
    }
   

    
}


/* Fixed height dropdown with scroll */
.qty-controls select.quantitySelect {
    max-height: 50p;     /* total dropdown height */
    overflow-y: auto;
}



/* Webkit scrollbar (Chrome, Edge) */
.qty-controls select.quantitySelect::-webkit-scrollbar {
    width: 6px;
}

.qty-controls select.quantitySelect::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .qty-controls select.quantitySelect {
        max-height: 120px;
    }

    .address-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 15px;
    color: #333;
    }
}








.newboxscheduleaddress {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 10px 18px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

/* Hover = clickable feel */
.newboxscheduleaddress:hover {
    border-color: #0e3696;
    box-shadow: 0 12px 28px rgba(14, 54, 150, 0.18);
    transform: translateY(-2px);
}

/* Active / selected state (add this class via JS if needed) */
.newboxscheduleaddress.active {
    border-color: #0e3696;
    background: #f3f6ff;
}



.newboxscheduleaddress > div:last-child {
    margin-bottom: 0;
}

/* Label (Name, Mobile, ZIP, Address) */
.newboxscheduleaddress .titlecontentsector {
    color: #000;
    font-weight: 600;
}

/* Text values */
.newboxscheduleaddress .datalinesector {
    font-size: 14px;
    line-height: 1.6;
    color: #111827;
}



/* Click hint */
.newboxscheduleaddress::after {
 
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 11px;
    color: #6b7280;
    opacity: 0;
    transition: 0.2s;
}

.newboxscheduleaddress:hover::after {
    opacity: 1;
}

/* Mobile friendly */
@media (max-width: 768px) {
    .newboxscheduleaddress {
        padding: 14px 14px;
    }
}

























.quantitySelect{

}




.optioncount{
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 10px;
    right: 30px;
    background: #C9D8FF;
    width:73px;
}

.quantitySelect:active > .optioncount{ 
    display: flex;
}


.twoboxflexdivcon{
    display:flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 768px) {
    .twoboxflexdivcon{
    display:flex;
    flex-direction: column;
    gap: 0px;
    align-items: start;
    }

    .address-actions{
        right:10px;
        top: 8px;
    }

    .addressListbox {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding: 15px;
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: none;
    }
}
























.custom-qty-dropdown {
    position: relative;
    
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.selected-qty {
    background: linear-gradient(145deg, #ffffff, #eef3ff);
    border: 2px solid #0e3696;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 6px 10px;
    width: 80px;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: #0e3696;
    /* box-shadow: 0 4px 10px rgba(14,54,150,0.15); */
    transition: 0.3s;
}

.selected-qty:hover {
    transform: translateY(-2px);

/*    box-shadow: 0 6px 14px rgba(14,54,150,0.25);*/

}

.qty-options {
    position: absolute;
    top: 110%;
    right: 0;
    width: 220px;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 998;
    padding: 0px 0;
    text-align: center;
    scrollbar-width: none;
    border: 2px solid #0e3696;
}

.qty-option {
    padding: 8px 10px;
    /* text-align: center; */
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    justify-content: space-between;
    font-weight:500;
    align-items: center;
    /* border-bottom: 1px solid #0e3696; */

}
.qty-option:last-child{
    border-bottom:none;
}

.qty-option:hover {
    background: #e9effd;
}

.qty-option.active {
    background: #d3e0ff;
    color: #000;
}

.fast-badge {
    font-size: 11px;
    background: #ff6b00;
    color: #fff;
    padding: 2px 6px;
    border-radius: 6px;
}

.qty-options::-webkit-scrollbar {
    width: 6px;
}
.qty-options::-webkit-scrollbar-thumb {
    background: #0e3696;
    border-radius: 10px;
}


.qty-controls {
    overflow: visible !important;
}

.qty-options {
    display: none;
}



.arrow-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Jab open ho */
.selected-qty.active .arrow-icon {
    transform: rotate(180deg);
}


 .quantitybadge{
    background-color: #0e3696;
    color: #fff;
    border-radius: 10px;
    padding: 4px 6px;
    font-size: 10px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
   
}

.fa-bolt{
    color: #fff;
}



.buttonbox{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btndiliverhere{
    background: #0e3696;
    color: #fff !important;
    padding: 10px 80px;
    margin: 12px 0px;
    border-radius: 10px;
    cursor: pointer;
    
}

.btndiliverhere:hover{
    background: #1547C2;
    transition: 500ms;
}






@media(max-width: 768px){
    .showinphone{
        display:block !important;
    }
    .showindesktop{
        display: none !important;
    }
}
.showinphone{
    display: none;
}

.showindesktop{
    display:block;
}













/* responsiveness */

@media(max-width: 1440px) and (min-width: 1280px){
    .slecccc{
        width:80% !important;
        font-size: 20px;
    }
}

@media (max-width: 1280px) and (min-width: 768px){
    .myaddresscontainercontainer{
        width:96%;
        margin: 30px auto 0px auto;
    }
    .singleboxflexer {
    display: flex;
    align-items: center;
    gap: 3px;
    width: 100%;
    /* flex-direction: column; */
    }

    .slecccc{
        width:80% !important;
        font-size: 18px;
    }
    .modal-box{
        width:55%;
    }
}

@media (max-width: 930px) and (min-width: 768px){
.myaddresscontainercontainer{
        width:95%;
        margin: 30px auto 0px auto;
    }
     .slecccc{
        width:80% !important;
        font-size: 16px;
    }
}

@media (max-width: 600px){
    .qty-options {
    position: absolute;
   
    width: 220px;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 996;
    padding: 0px 0;
    text-align: center;
    scrollbar-width: none;
    border: 2px solid #0e3696;
}

.closes{
    position: absolute;
    top: 5px;
    right: 5px;
    padding-top:0px;
    line-height: 0px;
}
}





.serachedlocation {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top:10px;
    padding: 0px 0;
    flex-wrap: nowrap; 
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid #0e3696;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.searhtirle {
    font-weight: 600;
    font-size: 14px;
    color: #0E3696;
    flex-shrink: 0;
}

.locationsetboxme {
    flex: 1;
    font-size: 14px;
    color: #222;
    white-space: nowrap;         
    overflow-x: auto;            
    overflow-y: hidden;
    word-break: normal;          
    cursor: default;
    display: flex;
    align-items: center;
    gap: 5px;

    
    padding: 5px;
    scrollbar-width: none;
    scrollbar-color: #bbb transparent;
    transition: background 0.3s ease;
}



.locationsetboxme::-webkit-scrollbar {
    height: 5px;
}

.locationsetboxme::-webkit-scrollbar-track {
    background: transparent;
}

.locationsetboxme::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

.editbutton button {
    
    border-radius: 25px;
    border: none;
    color: #0d6efd;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.editbutton button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .serachedlocation {
        /* flex-direction: column; */
        align-items: flex-start;
        width: 100%;
        overflow: auto;
        gap: 5px;
        padding: 5px;
        background-color: #f8f8f8;
        border-radius: 12px;
        margin-top: 10px;
        flex-wrap:wrap;

    }
    .editbutton{
        align-self: center;
    }

    .editbutton button {
        width: auto;
        text-align: center;
    }
    .locationsetboxme{
        width: 78vw;
        padding: 0px 0px;
    }
    .gpslocatorlocation {
    width: 100%;
    margin: 0px auto;
}
}




@media (min-width: 769px) {
    .modal-dialog{
        max-width: 650px;
        /* width: auto !important; */
    }
}





#map {
    touch-action: none;
}
body.modal-open,html.modal-lock {
    overflow: hidden !important;
    height: 100vh;
    touch-action: none;
}





.marker-label {
 top: 35px;
    left: 0px;
    position: absolute;

    background: #000;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    font-family: "poppinspara", sans-serif !important;

    box-shadow: 0 8px 20px rgba(0,0,0,0.25);

    transform: translate(-50%, -100%);
    transition: all 0.2s ease;

    pointer-events: none;
    width: fit-content;
    width: 15vw;
    text-wrap: auto;
    word-wrap: break-word;

}

.mappinbox{
    border: 2px solid #0e3696;
    border-radius: 10px;
    overflow: hidden;
}


@media (max-width:500px) {
    .marker-label {
    top: 35px;
    left: 0px;
    position: absolute;
    background: #000;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    font-family: "poppinspara", sans-serif !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -100%);
    transition: all 0.2s ease;
    pointer-events: none;
    width: fit-content;
    width: 53vw;
    text-wrap: auto;
    word-wrap: break-word;
}

.modal-dialog {
    position: relative;
    width: 100%;
    margin: 0px !important;
}

    .custom-tooltip-container > div > p {
        margin:0px !important;
    }
}




input:disabled,
textarea:disabled,
select:disabled {
    background-color: #f5f5f5;
    color: #2e2e2e;
    cursor: not-allowed !important;
    opacity: 0.8;
    filter: blur(0.1px);   /* halka blur */
    
}


custom-alert-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    z-index: 999999 !important;
    display: flex
;
    align-items: center;
    justify-content: center;

 }

 @media (max-width: 500px) {
    .closes {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f2f2f2;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.432);
    display: flex;
    align-items: center;
    justify-content: center;
            /* line-height: 0px; */

    font-size: 20px;
    }

    
 }

  @media (max-width: 375px) {
    .closes {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #f2f2f2;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.432);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 18px;
            /* line-height: 0px; */

    }

    
 }



.selected-qty {
    background: linear-gradient(145deg, #ffffff, #eef3ff);
    border: 2px solid #0e3696;
    border-radius: 8px;
    padding: 5px 2px;
    cursor: pointer;
    width: 100px;
    font-weight: 600;
    color: #0e3696;
    /* box-shadow: 0 4px 10px rgba(14, 54, 150, 0.15); */
    text-align: center;
    transition: 0.3s;
}

.selected-qty:hover {
    transform: translateY(-2px);
}

.qty-options {
    position: absolute;
    top: 110%;
    right: 0;
    width: 180px;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 998;
    padding: 6px;
    scrollbar-width: none;
}

.qty-option {
    padding: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}



.hideinproductpage{
    display: none
}




.selected-qty {
    display: flex;
    align-items: center;
    position: relative;
  }

  .selected-qty i {
    margin-left: 10px;
    font-size: 20px;
    transform: rotate(0deg); /* Initial position */
    transition: transform 0.3s ease; /* Smooth transition for rotation */
  }
#qtyToggle i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.selected-qty.active i {
    transform: rotate(180deg);
}

/* Default width (jab badge ho) */
.qty-options:has(.quantitybadge) {
    width: 180px;   /* tumhari current width */
}

/* Agar ek bhi badge nahi hai */
.qty-options:not(:has(.quantitybadge)) {
    width: 110px;   /* chhoti width */
    
}

.tit{
    justify-content: center;
    font-weight: 600;
    margin-bottom: 5px;
}