#JCRT_F{
    position: fixed;
    display: none;
    cursor: pointer;
    background-color: var(--themeGradientBottom);
    right: 15px;
    top: calc(110px + var(--insetTop));
    border-radius: 100%;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0px 0px 14px -3px rgba(0,0,0,0.75);
    z-index: 14;
    transition: background-color 1s ease;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    border:1px solid #fff;
}
@keyframes animateCartBtn {
    0%{
        background-color: var(--themeMainColor);
        transform: scale(0);
    }
    25%{
        background-color: var(--themeMainColor);
        transform: scale(1);
    }
    75%{
        transform: scale(0.9);
    }
    100%{
        transform: scale(1);
    }
}
#JCRT_F.JCart__Filled{
    transform: scale(0);
    animation-name: animateCartBtn;
}
#JCRT_F.JCart__Empty{
    transform: scale(1);
    animation-name: animateCartBtn;
    animation-direction: reverse;
}
#JCRT_F > .icon{
    font-size: 30px;
}
#JCRT_F > .JCart__Counter{
    position: absolute;
    right: 2px;
    bottom: -5px;
    background-color: #eb4f2d;
    padding: 0px 2px;
    border-radius: 10px;
    min-width: 15px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-size: 14px;
    transition: transform 0.2s ease;
}
#JCart__Popup > .PB__Box{
    width: 100%;
}
#JCart__Popup .JOGUI__CalcWrapper{
    margin-left: auto;
}
#JCart__Popup .emptyCart{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    flex-direction: column;
}
#JCart__Popup .emptyCart > img{
    width: 100%;
    max-width: 250px;
}
#JCart__Popup .emptyCart > span{
    font-size: 26px;
    color: var(--themeLightShade);
}
#JCart__Popup .JCart__TotalDetails{
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    padding: 5px 10px;
    background-color: var(--themeLighterBG);
    border-radius: 5px;
    margin: 10px;
}
#JCart__Popup .JCart__TotalDetails > .JCart__TtlAmount{
    display: flex;
    flex-grow: 1;
    justify-content: end;
    align-items: center;
    color: var(--themeDarker);
}
#JCart__Popup .JCart__TotalDetails > .JCart__BtnEmptyCart{
    font-size: 20px;
    padding: 5px;
    min-width: 70px;
    box-sizing: border-box;
}
#JCart__Popup form > .DE__Wrapper{
    flex-grow: 1;
}
#JCart__Popup form > .DE__Wrapper.address{
    flex-basis: 100%;
}
#JCart__Popup [data-page-name="payment"] .JCart__CalcWrapper{
    padding: 20px;
    font-size: 14px;
}
#JCart__Popup [data-page-name="payment"] .JCart__CalcWrapper > table{
    border-spacing: 10px 5px;
    border-collapse: separate;
    font-size: 12px;
}
#JCart__Popup [data-page-name="payment"] .JCart__CalcWrapper > table .freeDelivery{
    font-size: 14px;
    color: var(--green);
}
#JCart__Popup textarea {
    max-width: 100%;
}
#orderPlacedSucc .PB__BodyWrapper{
    font-size: 14px;
}
#orderPlacedSucc .viewOrChatWrapper{
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}
#orderPlacedSucc .viewOrChatWrapper > a{
    color: var(--themeActiveLink);
}
#JCart__Popup .deliveryInfo{
    padding: 10px;
    border: 1px solid var(--themeBorderColorLight);
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#JCart__Popup .deliveryInfo > .glbAddrBlock{
    margin-bottom: 5px;
}
#JCart__Popup .deliveryInfo > .changeAddr{
    padding: 3px;
}
.profileSecured{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--linearBG);
    padding: 5px;
    border-radius: 7px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
    gap: 2px;
}
.profileSecured > .icon{
    width: 25px;
    height: 25px;
    display: inline-block;
}
@media screen and (min-width: 376px) and (max-width: 500px) {
    #JCart__Popup #deliveryInfo > div:last-child {
        flex-basis: 100%;
    }
}