@import url(../scss/abstracts/_variable.scss);
.alert-box {
    display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    min-width: 200px;
    text-align: center;
    padding: 5px;
    box-shadow: 0px 3px 5px 0px #f2f2f2;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
}
.custom-popover {
  --bs-popover-max-width: 100px;
  --bs-popover-border-color: var(--main);
  --bs-popover-header-bg: var(--main);
  --bs-popover-header-color: var(--white);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: .5rem;
}
.popover-header{
    line-height: 1;
}
.checkout-sticky{
    top: 100px;
}
.mrp-price{
    color: var(--primary) !important;
    text-decoration: line-through;
}
.emptycart{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.addresses-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.address-card{
    width: calc(33.3% - 15px);
    position: relative;
}
.address-card label{
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-weight: normal;
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 1;
}
.addres-type{
    font-weight: 600;
    text-transform: capitalize;
    color: var(--text);
}
.address-card input{
    visibility: hidden;
    width: 0;
    height: 0;
    position: absolute;
}
.address-card input:checked + label{
    border-color: var(--bs-indigo);
}
.address-card input:checked + label:after{
    position: absolute;
    right: -5px;
    top: -5px;
    content: '';
    width: 18px;
    height: 18px;
    background: var(--bs-indigo);
    border-radius: 10px;    
    font-family: "icomoon";
    content: "\e911";
    position: absolute;
    color: var(--white);
    font-size: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.select-custom::after{
    z-index: 0;
}
button:disabled{
    opacity: 0.5;
    cursor: not-allowed;
}
.text-indigo{
    color: var(--bs-indigo);
}
.checkout--items li + li {
    border-top: 1px dashed var(--line);
    padding-top: 15px;
}
.tf-cart-footer-inner .widget-wrap-checkout{
    border-top: 5px solid var(--bs-indigo);
}
.inc-gst{
    font-size: 12px;
    color: var(--text-2);
}
.delivery-charges{
    color: var(--bs-gray-500);
}
@media (max-width: 768px){
    .address-card{
        width: calc(50% - 10px);
        position: relative;
    }
}