.shopping-cart-counter {
    position:absolute;
    background-color:#C0392B;
    padding:0 6px 1px;
    color:#FFFFFF;
    font-size:11px;
    font-weight:bold;
    border-radius:4px;
    right:-10px;
    top:5px;
}

/*------------------------------
        ESHOP
------------------------------*/

#eshop .eshop-banner {
    margin-bottom:30px;
}

#eshop .eshop-banner .row {
    margin:0;
}

#eshop .eshop-banner .row > a {
    position:relative;
    padding:0;
}

#eshop .eshop-banner .row > a:before {
    background-color:rgba(0,0,0,0.5);
    content:"";
    display:block;
    position:absolute;
    width:100%;
    height:100%;
    transition: background-color 0.5s ease;
}

#eshop .eshop-banner .row > a:hover:before {
    background-color:rgba(0,0,0,0);
    content:"";
    display:block;
    position:absolute;
    width:100%;
    height:100%;
}

#eshop .eshop-banner span {
    position:absolute;
    bottom:20px;
    width:100%;
    text-align:center;
    font-weight:500;
    color:#f0f0f0;
    font-size:20px;
    background-color:rgba(255,255,255,0.2);
    padding:5px 0;
    transition: background-color 0.5s ease;
}

#eshop .eshop-banner .row > a:hover span {
    background-color:rgba(0,0,0,0.4);
}

#eshop .eshop-header ul li {
    line-height: 40px;
}

#eshop .eshop-main {
    margin-top:30px;
    margin-bottom:20px;
}

.select-perpage.form-control {
    float:right;
    transition-duration:0;
}

/* ESHOP SIDEBAR */

#eshop .eshop-sidebar h3 {
    margin:0 0 15px;
}

#eshop .eshop-sidebar h4 {
    font-weight:bold;
}

/* ESHOP PRODUCTS */

.eshop-product {
    background-color:#F9F9F9;
    box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);
    margin:0 0 30px;
}

.eshop-product h3 {
    margin:0 0 7px;
    font-weight:600;
    font-size:22px;
    line-height:30px;
}

.eshop-product .product-price {
    margin:-8px 15px 0 0;
}

.eshop-product .product-price .old-price {
    text-decoration:line-through;
    font-size:14px;
    font-weight:700;
}

.eshop-product .product-price .new-price {
    font-weight:bold;
    font-size:18px;
    color: #C0392B;
    margin-left:5px;
}

/* ESHOP - GRID  */

.eshop-grid .eshop-product {
    position:relative;
    border: 1px dotted #CCCCCC;
}

.eshop-grid .eshop-product img {
    margin:8px auto;
}

.eshop-grid .eshop-product h3 {
    font-size: 16px;
}

.eshop-grid .eshop-product .new-price {
    font-size: 14px;
    color: #555;
}

.eshop-grid .eshop-product .eshop-product-body {
    border-top:1px solid #EBEBEB;
    background-color: #FFFFFF;
    padding:10px 20px 15px;
}

.eshop-grid .eshop-product .product-price {
    margin:0;
}

.eshop-grid .eshop-product .product-price .btn {
    font-size:14px;
    padding: 2px 7px 2px 5px;
}

.eshop-grid .eshop-product .product-price .btn i {
    margin:0;
}

.eshop-grid .eshop-product .product-tags {
    padding:0 10px 10px;
    position:absolute;
    top:5px;
}

/* ESHOP - ALERT */

#eshop-cart-alert {
    position:fixed;
    bottom:0;
    width:100%;
    margin:0;
    border-radius:0;
    padding: 40px 60px 10px;
    font-size:24px;
    display:none;
    z-index:1030;
}

#eshop-cart-alert .close {
    font-size: 60px;
    top: -15px;
}

#eshop-cart-alert.active {
    display:block;
}

/* ESHOP - LIST */

.eshop-list .eshop-product img {
    padding:25px 0 25px 25px;
}

.eshop-list .eshop-product > .row {
    display:flex;
}

.eshop-list .eshop-product > .row >:last-child {
    padding-left:0;
}

.eshop-list .eshop-product .eshop-product-body {
    padding:20px;
}

.eshop-list .eshop-product h3 {
    margin:12px 0;
    font-size:26px;
}

.eshop-list .eshop-product p {
    color:#555555;
    margin:0 0 15px;
    line-height:24px;
}

.eshop-list .eshop-product .product-price {
    background-color:#F9F9F9;
    border:2px dashed #E0E0E0;
    padding:5px 12px;
}

/* ESHOP - DETAIL */

.eshop-detail .eshop-product {
    margin:0 0 30px;
    padding:30px;
    position:relative;
}

.eshop-product .product-sale-label {
    position:absolute;
    top:-35px;
    right:-30px;
    border:3px solid #119178;
    color:#FFFFFF;
    width:95px;
    height:95px;
    border-radius:50%;
    text-align:center;
    font-size:30px;
    font-weight:bold;
    z-index:990;
}

.eshop-product .product-sale-label .text {
    font-size:20px;
    font-weight:600;
    color: rgba(255,255,255,0.5);
    text-transform:uppercase;
}

.eshop-product .product-sale-label .number {
    position:relative;
    top:-10px;
}

.eshop-detail .eshop-product .label {
    font-size:14px;
    padding: 7px 10x;
}

.eshop-detail .eshop-product h3 {
    margin:20px 0;
    font-size:32px;
}

.eshop-detail .eshop-product .product-price {
    margin:20px 0;
    padding:5px 10px;
    background-color:#FFFFFF;
    text-align:left;
    border:2px dashed #E0E0E0;
}

.eshop-detail .eshop-product .product-price .old-price {
    font-size:18px;
}

.eshop-detail .eshop-product .product-price .new-price {
    font-size:24px;
    margin-left:15px;
}

.eshop-detail .eshop-product h4 {
    font-size:20px;
    font-weight:600;
}

.eshop-detail .eshop-product form .btn-group {
    display:block;
}

.eshop-detail .eshop-product form .form-group {
    margin:10px 0;
}

#quantity.form-control {
    height: 44px;
}

.eshop-detail .eshop-product form button[type=submit] {
    margin-top:25px;
    float:right;
}

.eshop-detail .eshop-product .blog-post-buttons .pull-left {
    font-weight:bold;
}

.eshop-detail .eshop-product .blog-post-buttons .pull-left a i {
    margin-right:5px;
}

.eshop-detail .tab-content ul {
    margin-bottom:20px;
}

.eshop-detail .comments {
    background-color: #F9F9F9;
    box-shadow:none;
    padding:0;
}

/* ESHOP - SHOPPING CART */

.shopping-cart-header  {
    text-align:center;
    margin:10px 0 40px;
}

.shopping-cart-header i {
    font-size:50px;
    color: #DDDDDD;
}

.shopping-cart-header p {
    font-size:16px;
    font-weight:700;
    color: #AAAAAA;
    margin:10px 0 0;
}

.shopping-cart-header .active i {
    color: #999999;
}

.shopping-cart-header .active p {
    color: #777777;
}

.shopping-cart.tab-content {
    background-color:transparent;
    box-shadow:none;
    margin-bottom: 0;
    padding: 0;
}

.shopping-cart-item {
    background-color: #F9F9F9;
    box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);
    padding:10px 25px 20px 40px;
    position:relative;
    margin:0 0 15px;
}

.shopping-cart-item a.delete {
    position:absolute;
    display:block;
    font-size:20px;
    color:#CCCCCC;
    z-index:1000;
    left:15px;
    top:50%;
    margin-top:-14px;
}

.shopping-cart-item a.delete:hover {
    color:#AAAAAA;
}

.shopping-cart-item  img{
    margin-top:10px;
}

.shopping-cart-item h3 {
    color:#777777;
    margin:20px 0 10px;
    font-weight:600;
}

.shopping-cart-item p {
    color:#999999;
    margin:0 0 8px;
}

.shopping-cart-item .form-control {
    margin:18px 0 0;
}

.shopping-cart-item p.small-price,
.shopping-cart-item p.quantity {
    margin:30px 0 0;
}

.shopping-cart-item p.total-price,
.shopping-cart-footer p.total-price {
    margin:20px 0;
    font-weight:600;
    font-size:20px;
    text-align:right;
}

.shopping-cart-footer {
    background-color: #F9F9F9;
    box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);
    padding:25px 25px;
    margin-top:50px;
}

.shopping-cart-footer .btn {
    margin:5px 0 0;
    display:inline-block;
}

.shopping-cart-footer .input-group-btn .btn {
    margin: 0;
}

.shopping-cart-footer p.total-price-title {
    color:#555555;
    font-size:16px;
    margin:15px 0 0;
}

.shopping-cart-footer p.total-price {
    color:#C0392B;
    margin:6px 0 0;
    font-size:24px;
    font-weight:600;
}

@media (max-width:1024px) { /* 445 */
    .eshop-product .product-sale-label {
        right:0;
    }
}

/*------------------------------
        SMALL DEVICES

        AND

        EXTRA SMALL DEVICES
------------------------------*/

@media (max-width:991px) {

    /* ESHOP */

    .select-perpage.form-control {
        margin-bottom:10px;
    }

    #eshop-slider {
        margin-bottom:30px;
    }

    .eshop-detail .eshop-product form button[type=submit] {
        margin:0;
    }

    .shopping-cart-header p {
        margin:10px 0 20px;
    }

    .shopping-cart-header > div:last-child p {
        margin:10px 0 0;
    }

    #eshop .eshop-banner span {
        bottom:20px;
        padding:5px 10px;
        font-weight:bold;
        width:auto;
    }

}

/*------------------------------
        SMALL DEVICES
------------------------------*/

@media (max-width:767px) {

    .eshop-product .product-sale-label {
        top:-35px;
        width:75px;
        height:75px;
        font-size:24px;
    }

    .eshop-product .product-sale-label .text {
        font-size:16px;
    }	

}

@media (max-width:568px) {

    .eshop-list .eshop-product > .row > div {
        width:100%;
    }

}

@media (max-width:360px) {

    /* ESHOP */

    .eshop-detail .blog-post-buttons {
        display:none;
    }

    .eshop-detail .eshop-product .product-price .old-price {
        font-size:16px;
    }

    .eshop-detail .eshop-product .product-price .new-price {
        font-size:18px;
        margin-left:10px;
    }

    .shopping-cart-footer p.total-price-title {
        font-size:14px;
    }

    .shopping-cart-footer p.total-price {
        font-size:22px;
    }

}


/* custom */
.eshop-hr {
    border-top: 1px dotted #CCCCCC;
    padding: 16px 0;
}
.carousel-inner .eshop-img {
    width:100%;
    height: 200px !important;
}

#itemStoreCarousel .carousel-control {
    background: none;
    text-shadow: none;
    color: #DDD;
    margin: 72px 0;
}

/*
for the fontawesome icon to css value
http://astronautweb.co/snippet/font-awesome/
*/
ul.list_bulet_check {
    list-style-type: none;
}
ul.list_bulet_check li:before {
    font-family: 'FontAwesome';
    content: '\f138';
    margin:0 0.5em 0 -1.3em;
    color: #999;
}