#shoppingCartDefault .rowEven, #shoppingCartDefault .rowOdd{
    display:-ms-grid;
    display:grid;
    /* grid-gap:5px; */
            grid-template-areas: 'p_detial s_total';
    -ms-grid-rows:1fr;
    grid-template-rows:1fr;
    -ms-grid-columns:2fr 5px 0.5fr;
    grid-template-columns:2fr 0.5fr;
    margin: 5px 0;
    width:100%;
}

#shoppingCartDefault .rowOdd{
    background-color:rgba(231,231,231, 0.2);
}

.cart_product_detail{
    border:1px solid #B4B3B3;
    /* display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between; */
    padding:10px;
    gap: 0.5rem;
    display: grid;
    grid-template-columns: repeat( auto-fit,minmax(300px,1fr));
    align-items: center;
    border-right: none;
}


.detail_top a{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
}
.cart_s_total{
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: s_total;
    border:1px solid #B4B3B3;
    padding:5px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
    -ms-flex-line-pack:center;
        align-content:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    line-height:2em;
    border-left: 1px dashed #B4B3B3;
}


.cart_img{

}
.cart_img img{
    max-width: none;
    border-radius: 5px;
    border: 1px solid #e7ebec;
}
.cart_pname{
   padding:5px 5px 5px 10px;
}

.detail_bottom{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    justify-content: end;
}

.price_qtt{
    margin:0 5px 0 0;
    line-height:1.2em;
}

.cart_price_ntax{
    text-align:right;
    font-size:0.9em;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
    justify-content: end;
    min-width: 150px;
}
.cart_price_ntax:nth-child(2){
    text-align:right;
}

.cart_qtt{
    text-align:right;
    font-size:0.9em;
}
.cart_qtt input{
    text-align:center;
    border-radius:3px;
    width: 5em;
    margin-top: 0.3rem;
}

.update_delete{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    margin-left:5px;
}
.cart_update{
    border:1px solid #6B9AB4;
    width:38px;
    height:38px;
    border-radius:5px;
    margin:0 10px;
}
.cart_update input[type="image"]{
    width:37px;
    height:37px;
    padding:8px;
}

.cart_delete{
    border:1px solid #909090;
    width:38px;
    height:38px;
    border-radius:5px;
    margin:0 10px;
}
.cart_delete img{
    width:37px;
    height:37px;
    padding:8px;
}



.cart_price_total{
    border:1px solid #B4B3B3;
    line-height:2em;
    font-size:1.2em;
    text-align:right;
    padding:1em;
}


#shoppingCartDefault .alert{
    margin-bottom:0;
}

#cart_h_line {
    border-bottom: 3px solid #FBFBFB;
    border-top: 1px solid #D2D2D2;
    margin-bottom: 6px;
}

.estimate_button{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
    position: relative;
    margin-bottom: 40px;
}

.estimate_button::after {
    content: "";
    position: absolute;
    border-bottom: 3px solid #FBFBFB;
    width: 100%;
    bottom: -10px;
    z-index: -20;
}

.estimate_button::before {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: #D2D2D2;
}

.estimate_button input[type="button"] {
    text-transform: uppercase;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    padding: 0.3em 4em;
}

.estimate_button input[type="button"]:disabled {
    filter: grayscale(1);
    cursor: not-allowed;
    user-select: none;
    opacity: 0.3;
}

.estimate_button input[type="button"]:disabled:hover {
    opacity: 0.3;
}

#shoppingCartDefault .messageStackCaution,
#shoppingCartDefault .messageStackError,
#shoppingCartDefault .messageStackWarning {
    font-size: 0.8em;
}

.messageStackWarning, .messageStackError, .messageStackSuccess, .messageStackCaution{
    width: 100%;
}

#shoppingCartDefault .alertBlack{
    font-size: 0.9em;
    padding: 0.2em 0.5em;
    /* border: 1px solid #dea5a5; */
    border-radius: 5px;
    margin-left: 0.5em;
}

#shoppingCartDefault .alertBlack span.qmax,
#shoppingCartDefault .alertBlack span.qmin,
#shoppingCartDefault .alertBlack span.qunit {
    font-size: inherit;
    margin: 0 0.3em;
    padding: 0 0.5em;
    display: inline;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: inherit;
    white-space: nowrap;
}

#shoppingCartDefault .buttonRow{
    float:none !important;
}

#shoppingCartDefault .button_flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#cartInstructionsDisplay{
    margin: 1em 0 -1.5em 0;
    padding-left:0.5em;
    padding-right:0.5em;
    line-height: 1.7em;
}

.info_shipping_free{
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0.8em 1em 0.7em 1em;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #4A9ED1;
    color: #FFF;
    border-radius: 10px;
    letter-spacing:0.3px;
}
.info_main_text{
    font-weight: 500;
    font-size: 1.2em;
}
.info_sub_text{
    font-weight: normal;
    font-size: 0.9em;
}

@media screen and (max-width:639px){
    #shoppingCartDefault .rowEven , #shoppingCartDefault .rowOdd{
        grid-gap:0px;
            grid-template-areas: 'p_detial' 's_total';
        -ms-grid-rows:1fr;
        grid-template-rows:1fr;
        -ms-grid-columns:1fr;
        grid-template-columns:1fr;
        border:none;
        margin-bottom: 0px;
        margin-top: 5px;
        padding-bottom: 0px;
    }
    .cart_price_total{
        border:none;
        border-bottom:1px solid #B4B3B3;
        padding-bottom: 0;
        line-height: 3em;
    }
    .cart_product_detail{
        border-right: 1px solid #B4B3B3;
        border-bottom: 1px dashed #B4B3B3;
    }
    .cart_s_total{
        border-top:none;
        border-left: 1px solid #B4B3B3;
    }
    .cart_img img{
        width: 50px;
        height: 50px;
        border-radius: 3px;
    }
    
}

@media screen and (max-width:480px){
    .cart_product_detail{
        -ms-flex-pack:distribute;
            justify-content:space-between;
    }
    .info_main_text{
        font-weight: bold;
        font-size: 1rem;
    }
    .info_sub_text{
        border-top:1px dotted #fff;
        padding-top: 0.2em;
        font-size:0.75rem
    }

}