/* input(1014,25): run-time error CSS1046: Expect comma, found '100'
input(1014,33): run-time error CSS1046: Expect comma, found '/' */
:root {
    --CardBlue: #5084fa;
    --CategoryHeaderText: #034C8E;
    --TspDrk: #0459a9;
    --TspLight: #0f6dc7;
    /*    --Black: #444444;
    --LightGray: #CCC;
    --LightGrayHighlight: #999;*/
}

.OrderSummarflatcard > section > .CardAddToCartButton {
     background: #085fae;
}
.OrderSummarflatcard > section > .CardItemQuantityWrapper {
    width: 100px;
    height: 50px;
}
.OrderSummarflatcard {
    width: 100px;
    height: 50px;
}
/*LOADING CARD TESTS*/
.loadingCircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100px;
    height: 100px;
}

ul.Breadcrumb {
    /*padding: 0 16px;*/
    padding: 0 7px !important;
    list-style: none;
    user-select: none;
    margin-bottom: 1rem;
}

    /* Display list items side by side */
    ul.Breadcrumb li {
        display: inline;
        font-size: 14px !important;
    }

        /* Add a slash symbol (/) before/behind each list item */
        ul.Breadcrumb li + li:before {
            padding: 0px 12px;
            text-align: center;
            /* display: flex; */
            flex-direction: row;
            content: "";
            background: url(/image/arrow.svg?v=SRagZ8JRVyI6bfw5RXxOgSEFGac) no-repeat center;
        }

        /* Add a color to all links inside the list */
        ul.Breadcrumb li a {
            color: var(--TspDrk);
            text-decoration: none;
        }

            /* Add a color on mouse-over */
            ul.Breadcrumb li a:hover {
                color: #01447e;
                text-decoration: underline;
            }

#Card .EditSection {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    /*margin-top: auto;*/
    align-items:center;
}

    .loadingCircle::before, .loadingCircle::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
        height: 100%;
        border: 5px solid #1759a7;
        box-shadow: 0 0 10px 5px #1759a7;
        border-radius: 50%;
        animation: animate 2s infinite linear;
    }

    .loadingCircle::before {
        animation-delay: 0s;
    }

    .loadingCircle::after {
        animation-delay: 1s;
    }

@keyframes animate {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}
.loadingBox {
    width: 50px;
    height: 50px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

    .loadingBox:before {
        content: "";
        width: 50px;
        height: 5px;
        background: #000;
        opacity: 0.1;
        position: absolute;
        top: 59px;
        left: 0;
        border-radius: 50%;
        animation: shadow 0.5s linear infinite;
    }

    .loadingBox:after {
        content: "";
        width: 50px;
        height: 50px;
        background: #1759a7;
        animation: animateLoadingBox 0.5s linear infinite;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 3px;
    }

@keyframes animateLoadingBox {
    17% {
        border-bottom-right-radius: 3px;
    }

    25% {
        transform: translateY(9px) rotate(22.5deg);
    }

    50% {
        transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 40px;
    }

    75% {
        transform: translateY(9px) rotate(67.5deg);
    }

    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes shadow {
    0%, 100% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1);
    }
}

/*LOADING TESTS END*/

#TabAndNavWrapper{
    display:flex;
    position:relative;
    flex-direction:row;
    justify-content:center;
    align-content:center;
    margin:1.5rem;
    /*min-width:600px;*/
}

.CardClickable {
    position: absolute;
    height: 70%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    cursor: pointer;
}

/*#Card .CardQuantityButtonIncrease, #Card .CardQuantityButtonDecrease {
    flex: 1;
    background-color: var(--Blue);
}*/

#Card .CardItemQuantityWrapper .EditWrapper .CardQuantityButtonIncrease,
#Card .CardItemQuantityWrapper .EditWrapper .CardQuantityButtonDecrease {
    /* flex: .5; */
    transition: all 200ms;
    height: 27px;
    width: 27px;
    /* background-color: var(--Blue); */
    /* box-shadow: 0 0 0 1px rgb(0 0 0 / 25%); */
    /*border: 1px solid rgb(0 0 0 /25%);*/
    /*color: rgb(0 0 0 / 50%);*/
    color: #fff;
    font-size: 22px;
    /* color: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /*border-radius: 50%;*/
    z-index: 5;
    background: #0459a9 !important;
}


#Card .CardItemQuantityWrapper .EditSection .EditWrapper .CardEditQuantityInput {
    width:24px;
    height:27px;
    flex: 0;
    border-radius: 0 !important;
    border: none;
    text-align: center;
    padding: 0;
    background: transparent;
    margin: 0;
    /*border-radius: 4px !important;*/
    transition: background 250ms;
    border-top: 1px solid #0459a9;
    border-bottom: 1px solid #0459a9;
    box-shadow:none;
}
.HomeUnitList {
    /*padding: 7px 7px 0 !important;*/
    display:flex;
    justify-content:center;
    align-items:center;
    padding-top:2px;
    font-size: 12px !important;
    width:36px;
    height:27px;
    border-top: 1px solid #0459a9;
    border-bottom: 1px solid #0459a9;
}
#Card .CardItemQuantityWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#Card .EditWrapper {
    display: flex;
    border-radius: 6px;
    margin-top: auto;
    /*border: 1px solid #0459a9;*/
}
.CardInputBorder{
    border:1px solid #000;
}

.CardProductCampaign {
    position: absolute;
    bottom: 25%;
    left: 0;
    width: 100%;
    background: var(--Orange);
    text-align: center;
    color: white;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: .3rem;
    /*border-radius:6px;*/
    /*margin-left:3%;*/
}

.TabNav {
    display: none;
    align-items: center;
    /*color: var(--Blue) !important;*/
    white-space: nowrap;
    /*   position: absolute;
    right: 0;
    top: 50%;*/
    /*transform: translate(-50%, -50%);*/
    float:right;
}

.TabNav[selected-tab=true]{
    display:flex;
}

.ShowcaseWrapper {
    padding-top: 20px;
    margin-bottom:30px;
}

.BannerShowcaseWrapper {
    display: flex;
    position:relative;
    flex-direction: row;
    align-items: center;
    justify-content:start;
    /*padding:20px;*/
    padding-top:0;
}

#ShowcaseBanner{
    display:block;
    cursor:pointer;
    /*margin-right:1.5%;*/
   border-radius:8px;
   user-select:none;
   max-width:300px;
/*   width:25%;
*/}

#sShowcaseBanner{
    border-radius:8px;
}


.Showcase {
    display: flex;
    flex-direction: row;
    position: relative;
    /*background-color: #f1f1f1;*/
 /*   padding: 20px;*/
    height: 370px;
    width: 76%;
    min-width:611px;
    padding-top: 0px;
}

.LinearOpacity {
    position: absolute;
    z-index: 2;
    min-height: 100%;
    width: 10px;
    user-select: none;
    pointer-events: none;
}

.RightOp.LinearOpacity {
    right: 0;
    background: linear-gradient(90deg,hsla(0,0%,100%,0),#fff);
}

.LeftOp.LinearOpacity {
    left: 0;
    background: linear-gradient(-90deg,hsla(0,0%,100%,0),#fff);
}




/*.Showcase::before {
  position:absolute;
    left: 0;
    background: linear-gradient(-90deg,hsla(0,0%,100%,0),#fff);
}

.Showcase:after {
    position:absolute;
    right: 0;
    background: linear-gradient(90deg,hsla(0,0%,100%,0),#fff);
}*/

.ShowcaseMainTitleWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 10px;
}

    .ShowcaseMainTitleWrapper > hr {
        width: 100%;
        margin-bottom: 0;
        border-bottom: 1px solid var(--TspDrk);
    }



.ShowcaseTitleWrapper {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: flex-end;
    /*justify-content: center;*/
    justify-content: space-between;
    width: 100%;
}

.ShowcaseTitleWrapper > a {
    position: absolute;
    right: 7%;
 }



.ShowcaseTitle {
    margin: 0;
    font-size: 21px;
    font-weight: bold;
    color: var(--TspLight);
    user-select: none;
    /*text-shadow: 0px 5px 4px rgb(0 0 0 / 15%);*/
}



#STab{
    cursor:pointer;
    user-select:none;
    text-align:center;
    /*width:12%;*/
    width:fit-content;
    width:-moz-fit-content;
}

#STab:focus{
    outline:none;
}

.ShowcaseTab {
    display: flex;
    flex-direction: row;
/*    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);*/
    /*position: absolute;*/
    justify-content: center;
    align-items: center;
    /*font-size: x-large;*/
    gap: 1rem;
    width: 100%;
    padding: var(--TabTranslatePixel) 0;
    overflow-x: auto;
    padding:5px;
    /*overflow-x:hidden;*/
    /*overflow-x:scroll;*/
}








.ShowcaseTab > .VerticalSeperator{
    height:8vh;
    margin:0;
}

.ShowcaseTabItemOne > div {
    padding: .5rem;
    /*border-radius: 8px;*/
    /*box-shadow: 0px 0px 4px rgb(0 0 0 / 25%);*/
    /*color: var(--TspDrk);*/
    color: #ACB8C3;
    padding: 7px 17px;
    font-size: 17px !important;
    background-color: white;
    font-weight: 600;
    /*margin: .6%;*/
    font-size: initial;
    transition: transform .2s;
    white-space: nowrap;
    /*width: 25%;*/
    /*max-width: 140px;*/
    text-overflow: ellipsis;
    overflow: hidden;
    /* text-align: center; */
    font-family:'Source Sans Pro',sans-serif !important;
    /*   overflow: hidden;
    text-overflow: ellipsis;*/
}

.ShowcaseTabItemOne[selected-tab=true] > div {
    /*background-color: var(--TspDrk);*/
    transform: translateY(calc(var(--TabTranslatePixel) * -1));
    box-shadow: none;
    /*color:white*/
    color: #0459a9;
    border-bottom: 3px solid #0459a9;
}

.ShowcaseTabItemOne:hover > div {
    /*background-color: var(--TspLight);*/
    transform: translateY(calc(var(--TabTranslatePixel) * -1));
    box-shadow: none;
    /*color: white*/
    color: #0459a9;
    /*border-bottom: 3px solid #0459a9;*/
}

/*.ShowcaseTabItemOne:not(last-child):after {
    content: ' || ';
    color: green;
    font-weight: bold;
}*/

.ShowcaseMainContent{
    position:relative;
    overflow:hidden;
}

.ShowcaseMainContent:focus{
    outline:none;
}

.ShowcaseMainContent:not([tabindex ='0']) {
    display: none;
}



.ShowcaseCards {
    display: flex;
    flex-direction: row;
    /*gap: .5rem;*/
    gap: .8rem;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 4px 10px 14px 10px;
    position: relative;
    /*margin: 0 6px;*/
    scroll-behavior: smooth;
    /* padding-bottom: 250px;
    margin-bottom: -250px;*/
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: all 250ms ease-in;
}
.ShowcaseShadow {
    display: flex;
    justify-content: flex-end;
    width: 16px;
    height: 310px;
    float: right;
    box-shadow: -8px 0px 9px #fff;
    z-index:99;
    position:relative;
}
/*.ShowcaseCardsGrid {*/
/* display: flex;
    flex-direction: row;*/
/*display:grid;
   grid-template-columns:repeat(5,1fr);
   grid-column-gap:1rem;

    overflow-x: scroll;
    padding: 10px;
    margin: 0 6px;
    scroll-behavior: smooth;
    padding-bottom: 250px;
    margin-bottom: -250px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: all 250ms ease-in;
}

.ShowcaseCardsGrid > .ShowcaseCardOne{
    margin:0;
}

    .ShowcaseCardsGrid:not([tabindex ='0']) {
        display: none;
    }*/
/*.ShowcaseCards:not([tabindex ='0']) {
    display: none;
}*/
.ShowcaseCards:focus {
    outline: none;
}

.ShowcaseCards::-webkit-scrollbar {
    display: none;
}

.ShowcaseCards[scrolling=true] {
    /*opacity:0.5;*/
    animation: HalfOpacity 2s infinite;
}

.ShowcaseCardOne {
    position: relative;
    background: #FFFFFF;
    border: 1px solid var(--LightGray);
    border-radius: 6px;
    width: 20%;
    height: 300px;
    min-width: 194px;
    /*min-width: 198px;*/
    max-width: 200px;
    /* margin: 0 1%;*/
    transition: all .2s;
    /*margin: 0 0.4% 0 0;*/
}
.ShowcaseCardOne:hover {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    /*transform: scale(1.03);*/
}

.ShowcaseCardOne:hover .CardManageWrapper {
    /*background-color: #176bb9;*/
    /* color: white !important;*/
}



/*.ShowcaseCardOne[discount-is-present=false]  .OldPriceWrapper {
    display:none;
}

.ShowcaseCardOne[discount-is-present=false]  .CardDiscountFlag {
    display: none;
}*/




    .CardDiscountFlag {
        /*background-color: #de0000;*/
        position: absolute;
        top: 0;
        left: -6%;
        /*padding: 6px;*/
    /*    border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;*/
        z-index: 1;
        /*cursor:pointer; */
    }

.CardDiscountWrapper{
    position:relative;
}

.CardDiscountText {
    position: absolute;
    transform: rotateZ( 270deg );
    top: 25%;
    left: 24%;
    color: white;
    font-size: x-small;
    font-weight: 900;
    user-select: none;
}

.DiscountPercent {
    position: absolute;
    text-align: center;
    color: red;
    font-size: medium;
    font-weight: 900;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10%;
    font-size:14px;
}

.CardDiscountFlag > p {
    color: white;
    margin: 0;
    text-align: center;
    user-select: none;
}

#Card .FavoriteIcon {
    z-index: 100;   
}

.FavoriteIcon {
    padding: 5px 5px 23px 23px;
    width: 47px;
    height: 47px;
    position: absolute;
    top: 0%;
    right: 0;
    fill: var(--LightGray);
    cursor: pointer;
    z-index: 2;
}
.FavoriteIcon2 {
    height: 20px;
     top: 2%;
    right: 0;
    fill: var(--LightGray);
    cursor: pointer;
    z-index: 2;
}

.ProductDetailFavoriteIcon > .FavoriteIcon {
    margin: 20px 20px 0 0;
    height: 25px;
}

#Card .SVGShoppingList {
    padding:7px 5px 4px 10px;
    position: absolute;
    height: 34px;
    width: 35px;
    top: 11%;
    right: 0%;
    fill: var(--LightGray);
    cursor: pointer;
    z-index: 99;
}

#Card .SVGShoppingList:hover {
    fill: #737373;
}

.FavoriteIcon[is-in-favorites=true] {
    fill: #FF3434!important;
}

/*.FavoriteIcon:hover[is-in-favorites=false] {
    fill: #FF3434;
}

.FavoriteIcon:hover[is-in-favorites=true] {
    fill: var(--LightGray);
}*/


.CardProductImage {
    position: absolute;
    top: 3%;
    height: 140px;
    width:140px;
    /* width: 41%; */
    /* height: 150px; */
    /* max-width: 150px; */
    /*width: 55%;*/
    user-select: none;
    left: 50%;
    transform: translate(-50%, 0);
}
.CardProductName {
    /*position: absolute;
    left: 50%;
    bottom: 40%;
    transform: translate(-50%, 0);
    text-align: center;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;*/


    position: absolute;
    left: 50%;
    bottom: 36%;
    transform: translate(-50%, 0);
    /*text-align: center;*/
    max-width: 90%;
    width: fit-content;
    width: -moz-fit-content;
    overflow: hidden;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /*color: var(--Black);*/
    color: #3c3c3c;

    }

.OldPriceWrapper {
   /* position: absolute;
    left: 50%;
    bottom: 28%;
    transform: translate(-50%, 0);*/
   display:flex;
   justify-content:center;
   align-items:center;
    max-width: 100px;
    color:dimgray;
}

.CardPriceBeforeDiscount {
    position: relative;
    /* left: 50%;
    bottom: 28%;*/
    /*color: var(--LightGrayHighlight);*/
    /* transform: translate(-50%, 0);*/
    text-align: center;
    /*max-width: 150px;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    /*font-size: larger;*/
}

    .CardPriceBeforeDiscount:before {
        position: absolute;
        content: "";
        left: 0;
        top: 50%;
        right: 0;
        border-top: 1.5px solid;
        border-color: inherit;
        background: red;
        -webkit-transform: rotate( -15deg ) translate(0, -50%);
        -moz-transform: rotate( -15deg ) translate(0, -50%);
        -ms-transform: rotate( -15deg ) translate(0, -50%);
        -o-transform: rotate( -15deg ) translate(0, -50%);
        transform: rotate( -15deg ) translate(0, -50%);
    }


.CardPricesWrapper {
    display:flex;
    position:absolute;
    left: 50%;
    bottom: 15%;
    width:70%;
    transform: translate(-50%, 0);
    font-size:medium;
}

    .CardPricesWrapper > * {
        flex:1;
    }



    .CardPriceWrapper {
        display: flex;
        justify-content: center;
        align-content: center;
        color: var(--Black);
        padding: 4px;
        border-radius: 8px;
    }
.CardPriceWrapperDynamicColor[discount-is-present=true] {
    /*background-color: #04AF00;
    color:white;*/
    color: #04AF00;
    font-weight: bold;
}
.CardPrice {
    color:inherit;
    text-align: center;
    /*max-width: 150px;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    font-size:14px;
    /*font-weight:600;*/
    color:#000;
    float:left;
    /*font-size:larger;*/
}
.CardManageWrapper {
    position: absolute;
    left: 50%;
    bottom: 3%;
    transform: translate(-50%, 0);
    background-color: transparent;
    border-radius: 10px;
    /*border: 1px solid var(--LightGray);*/
    width: 83%;
    height: 11.5%;
    /*height: 9.5%;*/
    display: flex;
    justify-content: center;
    user-select: none;
}
/*.CardManageWrapper:hover {
    background-color: #176bb9;
    color:white;
}*/

#Card .CardAddToCartButton {
    /*background:var(--CategoryHeaderText)*/
    background: #085fae;
}

.CardAddToCartButton {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: inherit;
    cursor: pointer;
    border-radius:4px;
}

#Card .CardItemQuantityWrapper {
    display:flex;
    height: 100%;
    width: 100%;
    border-radius:inherit;
}
/*.CardQuantityButtonIncrease,
.CardQuantityButtonDecrease {*/
    /*flex:1;*/
    /*background-color: var(--Blue);*/
    /*color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor:pointer;
}*/

.CardQuantityButtonDecrease {
    border-top-left-radius:3px;
    border-bottom-left-radius: 3px;
}

.CardQuantityButtonIncrease {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.CardQuantityButtonIncrease:hover,
.CardQuantityButtonDecrease:hover{
    background-color:var(--BlueHighlight);
}

.CardQuantityButtonIncrease:active,
.CardQuantityButtonDecrease:active {
    background-color: var(--BlueClick);
}


.CardEditQuantityInput {
    flex: 2;
    border-radius: 0 !important;
    border: none;
    border-top: 2px solid var(--LightGray);
    border-bottom: 2px solid var(--LightGray);
    text-align:center;
}

.CardEditQuantityInput:focus {
    outline: none;
  /*  border-top: 2px solid var(--CardBlue);
    border-bottom: 2px solid var(--CardBlue);*/
}

/*.CardEditQuantityInput:focus .CardQuantityButtonIncrease {
    border-top: inset 2px var(--CardBlue);
    border-right: inset 2px var(--CardBlue);
    border-bottom: inset 2px var(--CardBlue);
}*/



.CardManageWrapper[item-is-in-cart=true] > .CardAddToCartButton {
    display: none;
}

.CardManageWrapper[item-is-in-cart=true] {
    border: none;
}

.CardManageWrapper[item-is-in-cart=false] > .CardItemQuantityWrapper {
    display: none!important;
}
.CardAddToCartButton > p {
    margin: 0;
    color: white;
    white-space: nowrap;
    font-size: 13px;
    color:#fff;
}


.CardAddToCartButton > p {
    color:  white;
}



#LeftMoveBtn {
    left: 1%;
}

#RightMoveBtn {
    right: 1%;
}

.CardMoveButton {
    display: flex;
    z-index: 999;
    position: absolute;
    justify-content: center;
    align-items: center;
    /* border: 3px solid #7b7b7b;*/
    /*box-shadow: 0px 0px 0px 1px rgb(0 0 0 / 50%);*/
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    border:1px solid #d5d5d5;
    border-radius: 100%;
    padding: 10px;
    height: 40px;
    width: 40px;
    margin: auto 0;
    cursor: pointer;
    bottom: 50%;
    background-color: white;
    /*transform: translate(0, -50%);*/
}

.CardMoveButton > svg{
    width:24px;
}

.CardMoveButton:hover{
    border-color:var(--LightGrayHighlight)
}
.CardMoveButton:hover > svg {
    fill:var(--LightGrayHighlight);
}

.HalvenOpacity{
    animation: HalfOpacity 1s 1;
}

.BuildOpacity {
    animation: BuildOpacity 1.5s 1;
}


#CardContent{
    transition: all .3s;
}

#Card .SVGDiscountFlag{
    height:72px;
    width:72px;
    fill:red;
    /*position:relative;*/
}
.CardClickableMobile{
    display:none;
}

@keyframes HalfOpacity {
    0%{opacity:1}
    50%{opacity:0.3}
    100%{opacity:1}
}

@keyframes BuildOpacity{
    from{opacity:.1}
    to{opacity:1}
}

@media(max-width:920px){    
    .CardClickableMobile{
        display:block;
    }
    .ShowcaseCardOne{
        margin:0 1% 0 0;
    }
    .ShowcaseShadow{
        height:200px;
    }
    .ShowcaseCards{
        gap:0.1rem;
    }
}
@media only screen and (max-width: 568px) {/* Screen which has a maximum width of 900px */
    .CardMoveButton{
        display:none!important;
    }
    ul.Breadcrumb{
        overflow:hidden;
        white-space:nowrap;
        overflow:hidden;
        overflow-x:auto;
        padding:0 7px 7px 7px !important;
    }
    #Card .FavoriteIcon {
        padding: 5px 5px 5px 23px;
        width: 47px;
        height: 29px;
    }    
}
@media(max-width:768px) {
    /*.tabTopItem {
        padding: 0 20px;
    }*/
    ul.Breadcrumb li + li:before {
        padding: 0 8px;
    }

    .PriceBox > .CardPrice {
        font-size: 13px;
        text-align: end;
    }
    .ShowcaseTitleWrapper {
        width: 97%;
    }
    .ShowcaseTitle {
        font-size: 18px;
    }
    .ShowcaseMainTitleWrapper{
        margin:7px 0;
    }
    .CardManageWrapper{
        height:10.5%;
    }
}
@media (max-width:510px){
    .ShowcaseCards {
        padding:0;
        /*gap:0.3rem;*/
    }
    .ShowcaseCardOne {
        height: 250px;
        min-width: 150px;   
    }
    .CardClickable{
        height:63%;
    }
    .CardProductImage{
        width:100px;
        height:100px;
    }
    ul.Breadcrumb li{
        font-size:13px !important;
    }
    .ShowcaseTitleWrapper{
        width:98%;
    }
    .ShowcaseTitle {
        font-size:17px;
    }
    #Card .CardItemQuantityWrapper .EditWrapper .CardQuantityButtonIncrease,
    #Card .CardItemQuantityWrapper .EditWrapper .CardQuantityButtonDecrease {
        /* flex: .5; */
        transition: all 200ms;
        height: 27px;
        width: 27px;
        /* background-color: var(--Blue); */
        /* box-shadow: 0 0 0 1px rgb(0 0 0 / 25%); */
        /*border: 1px solid rgb(0 0 0 /25%);*/
        /*color: rgb(0 0 0 / 50%);*/
        color: #fff;
        font-size: 22px;
        /* color: white; */
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        /*border-radius: 50%;*/
        z-index: 5;
        background: #0459a9 !important;
    }
    .BannerShowcaseWrapper{
        padding:0 5px;
    }
    .ShowcaseTabItemOne > div{
        margin-left:10px;
        font-size:15px !important;
    }
    
    }
@media(max-width:410px){
    .ShowcaseCardOne{
        height:210px;
        min-width:130px;
    }
    .CardProductImage {
        width: 80px;
        height: 80px;
    }
    .CardProductName{
        bottom:42%;
    }
    .CardProductCampaign{
        font-size:12px;
        bottom:28%;
    }
    /*.FavoriteIcon{
        width:36px;
        height:39px;
        right:0px;
        padding:2px 3px 16px 16px;
    }*/
    .CardProductName{
        font-size:12px;
    }
    
    .HomeUnitList{
        font-size:11px !important;
    }
    .ShowcaseTabItemOne > div{
        padding:0.3rem;
    }
    #Card .CardItemQuantityWrapper .EditSection .EditWrapper .CardEditQuantityInput{
        width:20px;
    }
    .CardManageWrapper{
        height:11.5%;
    }
    
   
}
@media(max-width:300px){
    #MobileSelectAccountBtn {
        margin-left: 4px;
        font-size: 11px;
    }
    .MobileDropdownTitle{
        font-size:11px;
    }
}




