/*Shopping Bag Styles starts*/

#sb-items{
    margin-top: 8vh;
}


#sb-items--wrap {
    margin: 5vh auto 0;
    padding-bottom: 3vh;
    padding-left: 0;
}

#sb-items--container{
    margin: 0 auto;
    margin-left: 35px;
}

#sb-items--wrap .pageTitle {
    margin-bottom: 3vh;
   font-family: "Arimo Regural";
    font-size: 26px;
}

.sb-item{
    padding-left: 0;
    padding: 2%;
    border: 1px solid #e5e5e5;
    width: 85%;
}

.sb-item-img--wrap {
    position: relative;
    padding-left: 0;
    width: 25%;
}

.sb-item .toolAddFavorite, .sb-item .toolRemove {
    position: absolute;
    width: 24px;
}

.sb-item .toolAddFavorite{
    left: 1px;
    top: 1px;
}

.sb-item .toolRemove{
    left: 1px;
    bottom: 1px;
}

.sb-item-img {

    width: 200px;
}


.sb-item-details {
    padding-left: 0;
    width: 50%;
}

.sb-item-details .title {
    font-family: "Arimo Bold";
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    line-height: 26px;
}

.sb-item-details .code {
    width: 100%;
    font-family: "Arimo Regural";
    font-size: 14px;
    color: #000000;
}

.sb-item-details .availability {

}

.sb-item-details .availability span.available {
    color: #43a047;
    border: 2px solid #43a047;
    padding: 1%;
    font-family: "Arimo Regural";
    font-size: 11px;
}

.sb-item-details .price {

}

.sb-item-details .price .price--current {
    font-family: "Arimo Bold";
    font-size: 29px;
    color: #000000;
}

.sb-item-details .price .price--old {
    font-family: "Arimo Regural";
    font-size: 19px;
    text-decoration: line-through;
    color: #000000;
}

.sb-item-details .profit{
    font-family: "Arimo Regural";
    font-size: 13px;
    color: #000000;
}


.sb-item-summary {
    padding-top: 2%;
    padding-left: 0;
    margin-left: 2%;
    width: 20%;
}

.sb-item-summary .quantity--area {
    margin-left: 0;
    margin-bottom: 5%;
    margin-top: 10%;
}

.minusQuantity, .plusQuantity {
    width: 50px;
    height: 50px;
    border: 2px solid #000000;
    color: #000000;
    font-weight: bold;
    background: #ffffff;
    padding: 0;
}

.sb-item-summary .minusQuantity {
    border-right: none;
}


.sb-item-summary .quantity {
    border: 2px solid #000000;
    color: #000000;
    padding-left: 0;
    min-width: 80px;
    height: 50px;
    font-weight: bold;
}

.number-input input[type=number]::-webkit-inner-spin-button,
.number-input input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}


.number-input input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.plusQuantity {
    border-left: none;
}


.sb-item-summary  hr {
    border-top: 1px solid #000000;
}


.sb-item-summary .price--area .title{
    font-size: 19px;
    font-family: "Arimo Bold";
    color: #000000;
}


.sb-item-summary .price--area .total-price{
    float: right;
    font-size: 29px;
    font-family: "Arimo Bold";
    color: #000000;
}


.remove, .addFavorite{
    font-size: 25px;
    text-decoration: none;
    color: #b2b2b2 !important;
}


.price--area{
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}


/*Shopping Bag Styles ends*/


/*Shopping Bag summary styles starts*/


#sb-summary {
    background: #e5e5e5;
    margin-top: 8vh;
    right: 0;
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;

}

#sb-summary--wrap {
    margin: 4vh auto;
    padding-bottom: 6vh;
    width: 80%;
}


#sb-summary #transportation{
    padding-left: 0;
    margin-top: 11%;
}

#sb-summary #transportation .header{
    font-family: "Arimo Bold";
    font-size: 15px;
    color: #000000;
}

#sb-summary--wrap hr {
    border-top: 1px solid #ffffff;
}

#info-btn{
    width: 25px;
    cursor: pointer;
}


#transportation #info--wrap {
    position: absolute;
    height: auto;
    padding: 2% 2% 2% 2%;
    right: 23%;
    width: 30%;
    z-index: 9999999;
    background: #ffc94c;
    font-weight: 100;
}

#info--wrap .title{
    font-weight: bold;
}

#transportation #info--wrap.close{
    display: none;
}


#sb-summary--text{
    margin-top: 4%;
    font-family: "Arimo Regural";
    color: #000000;
    font-size: 15px;
}


#ammount-needed{
    font-weight: bold;
}


#sb-summary-prices {
    padding-left: 0;
    margin-top: 7%;
    margin-bottom: 6%;
}

#sb-summary-prices .price  {
    margin-top: 7px !important;
    font-family: "Arimo Bold";
    font-size: 14px;
    color: #000000;
    margin-left: 0;
}


#sb-summary-prices .title {
    padding-left: 0;
}



#sb-total-price .value{
    font-size: 25px;
    padding-left: 0;
}

#sb-summary-shop {
    background: #43a047;
    color: #ffffff;
    padding: 1%;
    border: 2px solid #43a047;
    font-family: "Arimo Bold";
    float: right;
}

#sb-summary-container{
    padding-left: 0;
}
/*Shopping Bag summary styles ends*/
#sb-btn-area{
    visibility:hidden;
}

#phone-area {

    border-right: 0;
}


/*MEDIA QUERIES*/

@media (max-width: 1400px) {

    /*Shopping Bag Styles starts*/
    #sb-items {
        margin-top: 10vh;
    }

    #sb-items--wrap .pageTitle {
        font-size: 23px;
    }

    .sb-item {
        width: 95%;
    }

    .sb-item-details {
        width: 45%;
    }

    .sb-item-summary {
        width: 25%;
    }

    /*Shopping Bag Styles ends*/

    /*Shopping Bag summary styles starts*/
    #sb-summary {
        margin-top: 10vh;
    }


    #sb-summary #transportation .header {
        font-size: 13px;
        margin-left: 0;
    }

    #sb-summary #transportation .header .title, #info-btn{
        padding-left: 0;
    }

    #sb-summary--text {
        font-size: 14px;
    }

    #sb-summary-shop {
        font-size: 12px;
    }
    /*Shopping Bag summary styles ends*/
}


@media (max-width: 1280px) {

    /*Shopping Bag Styles starts*/
    #sb-items {
        margin-top: 6vw;
    }
    /*Shopping Bag Styles ends*/

    /*Shopping Bag summary styles starts*/

    #sb-summary {
        margin-top: 6vw;
    }
    /*Shopping Bag summary styles ends*/
}


@media (max-width: 1024px) {

    /*Shopping Bag Styles starts*/

    #sb-items {
        margin-top: 8vw;
        width:65%;
    }

    #sb-items--wrap {
        margin: 3vw auto 0;
    }

    .sb-item {
        padding: 5%;
    }

    .sb-item-img--wrap {
        width: 35%;
    }

    .sb-item-details {
        width: 65%;
    }

    .sb-item-summary {
        width: 40%;
        margin: 0 auto;
    }

    .sb-item-details .title {
        font-size: 17px;
        line-height: 21px;
    }

    .sb-item-details .code {
        font-size: 12px;
    }

    .sb-item-details .price .price--old {
        font-size: 15px;
    }

    .sb-item-details .price .price--current {
        font-size: 24px;
    }


    .sb-item-summary .price--area .title {
        font-size: 17px;
    }

    .sb-item-summary .price--area .total-price {
        font-size: 27px;
        line-height: 24px;
    }

    /*Shopping Bag Styles ends*/

    /*Shopping Bag summary styles starts*/
    #sb-summary {
        margin-top: 8vw;
        width: 35%;
    }

    #sb-summary--wrap {
        margin: 3vw auto;
    }


    #transportation #info--wrap {
        right: 32%;
    }

    /*Shopping Bag summary styles ends*/
}

@media (max-width: 815px) {

    /*Shopping Bag Styles starts*/

    .sb-item-summary {
        width: 60%;
    }
    /*Shopping Bag Styles ends*/

    /*Shopping Bag summary styles starts*/
    #sb-summary-shop {
        width: 100%;
    }
    /*Shopping Bag summary styles ends*/

}
@media (max-width: 605px) {

    /*Shopping Bag Styles starts*/
    /*Shopping Bag Styles ends*/

    /*Shopping Bag summary styles starts*/
    /*Shopping Bag summary styles ends*/
}

@media (max-width: 480px) {
    /*Shopping Bag Styles starts*/
    #sb-items {
        margin-top: 29vw;
        width: 100%;
    }

    .sb-item-img--wrap, .sb-item-summary {
        width: 100%;
    }

    .sb-item-details {
        width: 100%;
        margin-top: 4vw;
    }
    .sb-item-details .availability span.available {
        border:none;
    }


    .sb-item-img {
        width: 125px;
    }
    /*Shopping Bag Styles ends*/

    /*Shopping Bag summary styles starts*/
    #sb-summary {
        margin-top: 8vw;
        width: 100%;
    }
    /*Shopping Bag summary styles ends*/


    /*shopping bag nav mobiles styles starts*/
    #mb-sb--nav {
        display: block !important;
        visibility: visible;
        margin-top: 27vw;
        background: #e5e5e5;
        position: fixed;
        z-index: 999999;
    }

    #mb-sb--nav--wrap{
    width: 80%;
    margin: 2vw auto;
}


    #mb-sb--nav--wrap .title{
        font-family: "Arimo Regural";
        font-size: 19px;
        color: #000000;
    }

    #mb-sb--nav--wrap  .price--area{
        font-family: "Arimo Bold";
        font-size: 12px;
        color: #000000;
    }


    #mb-sb--nav--wrap .price{
        float: right;
    }

    #mb-sb-shop {
        background: #43a047;
        color: #ffffff;
        border: 2px solid #43a047;
        width: 50%;
        font-family: "Arimo Bold";
        font-size: 10px;
        margin: 10px auto;
        max-height: 40px;
        padding: 0 0 0 0;
    }

    /*shoppong bag nav mobiles styles ends*/
}

@media (max-width: 360px) {
    #sb-items {
        /*margin-top: 65vw;*/
        width: 100%;
    }
}

