/* General Blueprint Style */

a {outline : none;}
a img {outline : none;}

.products-list .row .new-product::before{
    content: 'New';
    position: absolute;
    z-index: 9999;
    background-color: red;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1px 4px;
}

.products-list .row .liquidation::before{
    content: 'Liquidation';
    position: absolute;
    z-index: 9999;
    background-color: red;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1px 4px;
}

.products-list div.info{
    position: relative;
}

.products-list div.info .to-compare{
    position: absolute;
    right: 0;
    top: 15px;
}

.products-list .stock li.yellow-disk, .products-list .stock li.green-disk, .products-list .stock li.red-disk, .products-list .stock li.white-disk,
.products-grid .stock li.yellow-disk, .products-grid .stock li.green-disk, .products-grid .stock li.red-disk, .products-grid .stock li.white-disk,
.compare .stock li.yellow-disk, .compare .stock li.green-disk, .compare .stock li.red-disk, .compare .stock li.white-disk{
    list-style: none;
}

.products-grid .stock, .compare .stock{
    text-align: center;
}

.products-list .stock li.yellow-disk:before, .products-list .stock li.green-disk:before, .products-list .stock li.red-disk:before, .products-list .stock li.white-disk:before,
.products-grid .stock li.yellow-disk:before, .products-grid .stock li.green-disk:before, .products-grid .stock li.red-disk:before, .products-grid .stock li.white-disk:before,
.compare .stock li.yellow-disk:before, .compare .stock li.green-disk:before, .compare .stock li.red-disk:before, .compare .stock li.white-disk:before{
    content: "";
    border: 6px #ffd90ef2 solid !important;
    border-radius: 50px;
    margin-top: 3px;
    margin-left: -16px;
    position: absolute;
}

html .products-list .stock li.green-disk:before, html .products-grid .stock li.green-disk:before, html .compare .stock li.green-disk:before{
    border: 6px green solid !important;
}

html .products-list .stock li.red-disk:before, html .products-grid .stock li.red-disk:before, html .compare .stock li.red-disk:before{
    border: 6px red solid !important;
}

html .products-list .stock li.white-disk:before, html .products-grid .stock li.white-disk:before, html .compare .stock li.white-disk:before{
    border: 6px blue solid !important;
}


div.products-grid .list{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(180px, 1fr) );
    grid-gap: 15px;
}

div.products-grid .list .prod{
    background-color: #FFF;
    border: 2px solid #FFF;
    border-radius: 5px;
    padding-bottom: 53px;
    position: relative;
}

div.products-grid .list .prod .to-compare{
    position: absolute;
    top: 2px;
    right: 5px;
}

div.products-grid .list .prod .gift{
    color: red;
    text-align: center;
    font-weight: bold;
}

div.products-grid .list .prod .gift a:link,
div.products-grid .list .prod .gift a:visited{
    color: red;
}

div.products-grid .list .prod .grid-discount-wrapper{
    position: absolute;
    top: 4px;
    left: -8px;
}

div.products-grid .list .prod .grid-discount-wrapper .discount-type,
div.product .grid-discount-wrapper .discount-type{
    background-color: #E74C3C;
    color: #FFF;
    padding: 6px 4px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 2px;
    border-radius: 4px;
    border-bottom-left-radius: 0;
}

div.products-grid .list .prod .grid-discount-wrapper .discount-percentige,
div.product .grid-discount-wrapper .discount-percentige{
    background-color: #2980B9;
    color: #FFF;
    padding: 6px 4px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    border-bottom-left-radius: 0;
}

div.products-grid .list .prod .cart-button{
    text-align: center;
    position: absolute;
    bottom: 8px;
    width: 100%;
}

div.products-grid .list .prod:hover{
    border: 2px solid #2196f3;
}

div.products-grid .list .prod .prod-grid-img{
    text-align: center;
    padding: 5px 0;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.products-grid .list .prod .prod-grid-img a:link,
div.products-grid .list .prod .prod-grid-img a:visited{
    display: block;
    text-decoration: none;
    text-align: center;
    color: #504f4e;
    font-size: 14px;
}

div.products-grid .list .prod h3{
    color: #504f4e;
    font-size: 14px;
    /*font-weight: normal;*/
    padding: 6px 5px;
    text-align: center;
}

div.products-grid .list .prod .price{
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

div.products-grid .list .prod .price .old-price{
    text-decoration: line-through;
}

div.products-grid .list .prod .price .new-price{
    color: red;
    font-size: 16px;
}

div.products-grid .list .prod span.code-produs{
    display: block;
    text-align: center;
}

div.products-view, div.products_filters{
    display: inline-block;
}

div.products-view span.views{
    color: #2196f3;
    background: #FFF;
    border: solid 1px #ccc;
    display: inline-block;
    vertical-align: middle;
    border-radius: 3px;
    padding: 4px 2px 2px 6px;
}

div.products-view span.views:hover{
    color: #002b41;
}

div.products-view span.view-title{
    font-size: 15px;
    color: #333;
}

#content > div.products-list div.description > p{
    color: red;
    font-size: 19px;
    font-weight: bold;
}

div.list_activ span.list-view, div.grid_activ span.grid-view{
    color: #F00;
}

div.list_activ span.list-view:hover, div.grid_activ span.grid-view:hover{
    color: #F00;
}

ul.products li a.remove-from-favorites:link,
ul.products li a.remove-from-favorites:visited{
    padding-top:10px;
    display: block;
    color: #F00;
}

h1.category-list{
    font-size: 18px;
    padding-bottom: 8px;
}

h1.rounded{
    font-size: 18px;
    padding-bottom: 0px;
    color: red;
    border-bottom: solid 3px red;
}

h1.rounded span{
    background-color: red;
    color: #FFF;
    height: 100%;
    padding: 3px 6px;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

ul.category-list *, ul.product-list *{
    outline: none;
}

ul.category-list, ul.product-list, ul.products{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(170px, 1fr) );
    grid-gap: 17px;
    grid-auto-rows: minmax(160px, auto);
    list-style: none;
    margin-left: 0;
}

ul.category-list li, ul.product-list li, ul.products li{
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    background-color: #FFF;
    padding-bottom: 10px;
    border: 2px solid #FFF;
}

div.compatible ul.product-list li,
div.accessories ul.product-list li{
    display: none;
}

div.load-more-btn{
    background-color: #2196f3;
    color: #FFF;
    text-align: center;
    padding: 6px;
    margin-top: 12px;
    font-weight: bold;
    cursor: pointer;
}

ul.category-list li p.old-price, ul.product-list li p.old-price, ul.products li p.old-price{
    text-decoration: line-through;
}

ul.category-list li p.new-price, ul.product-list li p.new-price, ul.products li p.new-price{
    color: red;
    font-weight: bold;
}

ul.category-list li:hover, ul.product-list li:hover, ul.products li:hover{
    border: 2px solid #2196f3;
}

ul.category-list li h4, ul.product-list li h4,
ul.category-list li h2, ul.product-list li h2,
ul.products li h4, ul.products li h2{
    font-size:12px;
    line-height:12px;
    padding: 0 6px;
}

ul.category-list li .img-polaroid, ul.product-list li .img-polaroid,
ul.products li .img-polaroid{
    text-align: center;
}

ul.category-list li .image-block, ul.product-list li .image-block,
ul.products li .image-block{
    padding: 10px 0 0 0;
}

ul.category-list li .img-polaroid,
ul.products li .img-polaroid{
    display: flex;
    align-items: center;
    justify-content: center;
}

a.clear-filters:link, a.clear-filters:visited{
    color: red;
    display: block;
    margin:15px 0;
}

.eoshop .product ul.other-images{
    list-style: none;
    margin-left: 0;
}

.eoshop .product ul.other-images li{
    width: 150px;
    display: inline-block;
    vertical-align: top;
    *display: inline;
    *zoom: 1;
    margin: 5px;
}

.eoshop .product ul.other-images li img{
    text-align: center;
    padding: 4px;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.eoshop .product .quatity-wrapper .cart-quantity{
    margin-bottom: 0;
    width:26px;
}

.eoshop .product .user_name{
    font-size:14px;
    font-weight: bold;
}

.eoshop .product .comments-list .media{
    border-bottom: 1px dotted #ccc;
    margin-bottom: 30px;
}

.eoshop .product .write-rewiew h3{
    margin-top: 30px;
}

.eoshop .product .write-rewiew input.name,
.eoshop .product .write-rewiew input.subject{
    width:350px;
    padding:5px;
    color:#878986;
    border:solid 1px #000;
}

.eoshop .product .write-rewiew textarea.comment{
    width:350px;
    padding:5px;
    color:#878986;
    border:solid 1px #000;
}

.eoshop .product .write-rewiew div.submit{
    margin-bottom: 40px;
    width:362px;
}

.eoshop .product .write-rewiew .add-rate{
    width: 65%;
}

.eoshop .product .product-images{
    max-width: 300px;
}

.eoshop .product .manufacturer, .eoshop .product .manufacturer a:link, .eoshop .product .manufacturer a:visited{
    font-size: 16px;
    color: #F00;
}

.eoshop .product .description{
    /*padding-top: 35px;*/
}


.eoshop .product h3, .eoshop .product h1{
    font-size: 18px;
    /*line-height: 20px;*/
    margin-bottom: 20px;
    color: #0077b3;
}

.eoshop .product h2{
    font-size: 13px;
}

.eoshop .product .price{
    font-size: 15px;
}

.eoshop .product .technical-info{
    line-height: 1.7em;
}

.eoshop .product .price .old-price{
    text-decoration: line-through;
}

.eoshop .product .price .new-price{
    color: red;
    font-weight: bold;
}

.eoshop .product .default-code{
    color: red;
    font-size: 15px;
}

.eoshop .product .service{
    /*background-color: #0088cc;*/
    /*text-align: center;*/
    padding: 5px 0;
    margin-bottom: 3px;
}

.eoshop .product .service h3{
    color: #FFF;
    font-size: 16px;
    margin:0;
}
.eoshop .product .service p{
    margin: 5px 5px 0 5px;
    padding: 5px;
    background-color: #FFF;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

p.manufacturer{
    margin: 0 0 4px 0;
}

.eoshop .product .gifts{
    background-color: #0088cc;
    padding: 5px 0;
    margin-bottom: 3px;
}

.eoshop .product .gifts h3{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    margin: 0;
}

.eoshop .product .gifts .gift h4{
    font-size: 11px;
    margin: 3px 0;
}

.eoshop .product .gifts .gift p{
    margin: 0;
    font-size: 10px;
}

.eoshop .product .gifts .gift{
    background-color: #FFF;
    margin: 5px 5px 0 5px;
    padding: 5px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.eoshop .product .gifts .gift .gift-img{
    max-height: 80px;
    max-width: 80px;
    float: left;
    margin-right: 5px;
}

.eoshop .product .rating-summary-wrapper{
    background-color: #0088cc;
    padding: 5px 0;
    margin-bottom: 3px;
}

.eoshop .product .rating-summary-wrapper h3{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    margin: 0;
}

.eoshop .product .rating-summary-wrapper .rating-summary{
    background-color: #FFF;
    margin: 5px 5px 0 5px;
    padding: 5px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.eoshop .product .rating-summary-wrapper .rateyo-read-only-rate-summary{
    margin-bottom: 5px;
}

.eoshop .product ul.video-list{
    list-style: none;
    margin: 0;
}

.eoshop .product ul.video-list li{
    float: left;
    width: 510px;
    text-align: center;
    background-color: #0088cc;
    color: #FFF;
    padding: 6px 4px 0 4px;
    margin: 3px 5px 5px 0;
    font-size: 11px;
}

.eoshop .product .promotion-period{
    margin-top: 20px;
    font-size: 12px;
}

.eoshop .product .promotion-period p{
    margin: 0;
}

.eoshop .product p.price-without-tax{
    font-size: 12px;
}

.eoshop .product .tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.eoshop .product .tabs label {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    display: block;
    padding: 1rem 2rem;
    margin-right: 0.2rem;
    cursor: pointer;
    background: #e3e3e3;
    color: #000;
    font-weight: bold;
    -webkit-transition: background ease 0.2s;
    transition: background ease 0.2s;
}

.eoshop .product .tabs .tab {
    -webkit-box-ordinal-group: 100;
    -webkit-order: 99;
    -ms-flex-order: 99;
    order: 99;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 1rem;
    background: #fafafa;
}

.eoshop .product .tabs input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.eoshop .product .tabs input[type="radio"]:checked + label {
    background: #0077b3;
    color: #FFF;
}
.eoshop .product .tabs input[type="radio"]:checked + label + .tab {
    display: block;
}

.eoshop .product .discount{
    width: 45px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #FFF;
    background-color: #2980B9;
    padding: 5px 2px;
    border-radius: 4px;
}

.eoshop .product label.compare-label{
    margin-top: 15px;
    font-weight: bold;
}

.eoshop .product label.compare-label input[type='checkbox']{
    margin-top: -3px;
}

.eoshop .product label.compare-label span{
    padding-left: 5px;
}

@media (max-width: 45em) {
    .eoshop .product .tabs .tab,  .eoshop .product .tabs label {
        -webkit-box-ordinal-group: NaN;
        -webkit-order: initial;
        -ms-flex-order: initial;
        order: initial;
    }

    .eoshop .product .tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }
}

.eoshop .product h2.archived,
.eoshop .product h2.archived span{
    font-size: 21px;
    font-weight: normal;
    margin-top: 20px;
}

.btn-group-xs>.btn, body .btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-group-sm>.btn, body .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-group-lg>.btn, body .btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.eoshop .cart-detail input.cart-quantity{
    width: 60px;
    margin-bottom: 0;
}

.eoshop .cart-detail p{
    text-align: left;
    padding-top: 5px;
}

.eoshop .cart-detail p.gift a:link,
.eoshop .cart-detail p.gift a:visited{
    font-weight: bold;
    font-size: 12px;
    color: red;
}

.eoshop .cart-detail .empty-cart{
    font-weight: bold;
    font-size: 13px;
    padding: 25px 0;
    text-align: center;
}

table td.to-left{
    text-align: left;
}

table td.to-center{
    text-align: center;
}

table td.to-right{
    text-align: right;
}

div.payment_type label.payment_type{
    margin-bottom: 7px;
}

div.payment_types .radio-btn{
    margin: 0;
}

.form-control {
    display: block;
    width: 90%;
    padding: 5px 7px;
    line-height: 1.5;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.eoshop .order h3{
    margin-top:35px;
}

.eoshop .order p,
.eoshop .guestordersummary p{
    padding-top: 5px;
}

.eoshop .order p.gift a:link,
.eoshop .order p.gift a:visited,
.eoshop .guestordersummary p.gift a:link,
.eoshop .guestordersummary p.gift a:visited{
    font-weight: bold;
    font-size: 12px;
    color: red;
}

.eoshop .order span.total-wrapper, 
.eoshop .order span.currency-wrapper,
.eoshop .guestordersummary span.total-wrapper, 
.eoshop .guestordersummary span.currency-wrapper
{
    font-size:18px;
}

.eoshop .order div.payment-type-description,
.eoshop .guestordersummary div.payment-type-description,
.eoshop .order div.delivery-type-description,
.eoshop .guestordersummary div.delivery-type-description{
    margin: 8px 0 20px 0;
}


@media (max-width: 1024px) {
    .eoshop .order table{
        border-radius: 0;
    }

    .eoshop .order table thead {
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .eoshop .order table tr {
        display: block;
        border-radius: 0;
    }

    .eoshop .order table td {
        display: block;
        text-align: right;
        border-radius: 0;
    }

    .eoshop .order table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
    }
}


.status-upload {
    background: none repeat scroll 0 0 #f5f5f5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    float: left;
    width: 100%;
}
.status-upload form {
    float: left;
    width: 100%;
}
.status-upload form textarea {
    background: none repeat scroll 0 0 #fff;
    border: medium none;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    -o-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    color: #777777;
    float: left;
    font-family: Lato;
    font-size: 14px;
    height: 142px;
    letter-spacing: 0.3px;
    padding: 20px;
    width: 100%;
    resize:vertical;
    outline:none;
    border: 1px solid #F2F2F2;
}

.status-upload ul {
    float: left;
    list-style: none outside none;
    margin: 0;
    padding: 0 0 0 15px;
    width: auto;
}
.status-upload ul > li {
    float: left;
}
.status-upload ul > li > a {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    color: #777777;
    float: left;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin: 10px 0 10px 10px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 30px;
    cursor: pointer;
}
.status-upload ul > li > a:hover {
    background: none repeat scroll 0 0 #606060;
    color: #fff;
}
.status-upload form button {
    border: medium none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    float: right;
    font-family: Lato;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-right: 9px;
    margin-top: 9px;
    padding: 6px 15px;
}
.dropdown > a > span.green:before {
    border-left-color: #2dcb73;
}
.status-upload form button > i {
    margin-right: 7px;
}



/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/* Products Box Styles Starts */

.products-list{
    margin-bottom:15px;
    padding-left: 20px;
}
.products-list .manufacturer, .products-list .manufacturer a:link, .products-list .manufacturer a:visited{
    color:#F00;
}
.products-list .info{
    padding: 15px 0;
}
.products-list .image{
    text-align: center;
}
.product-head{
    padding: 14px 20px;
    margin:0 0 20px;
    font-size:24px;
    background:#252a2f;
    color:#fff;
    text-transform:uppercase;
}
.product-col{
    padding:0px 10px 5px;
    margin-bottom:20px;
    background:#fff;
    border:1px solid #e8e8e8;
}
.product-col.list .image{
    padding:18px 10px 5px 0;
    float:left;
    /*width:130px;*/
}
.product-col .caption{
    padding: 5px 0;
}
.product-col h2, .product-col h4{
    font-size:13px;
    /*text-transform:uppercase;*/
    line-height: normal;
    margin: 0 0 10px 0;
}
.product-col .description{
    padding:5px 0;
    font-size:12px;
    line-height:18px;
    /*text-align:justify;*/
    color:#333;
}
.product-col.list .description{
    padding:15px 20px 0 0;
}

.product-col.list .description p.gift a:link,
.product-col.list .description p.gift a:visited{
    color: red;
    font-size: 13px;
    font-weight: bold;
}
.product-col.list .description p.gift h4{
    font-size: 13px;
}
.product-col .price{
    padding:1px 0;
}
.products-list .prod-row{
    position: relative;
}
.products-list .prod-row .discount-wrapper{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
}
.products-list .prod-row .discount-wrapper .discount-type{
    background-color: red;
    color: #FFF;
    padding: 1px 4px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 2px;
}

.products-list .prod-row .discount-wrapper .discount-percentige{
    background-color: #2980B9;
    color: #FFF;
    padding: 1px 4px;
    font-weight: bold;
    text-transform: uppercase;
}
.product-col .price .price-tax{
    font-size:14px;
    color:#08c;
    text-transform:uppercase;
}
.product-col .price span.price-new{
    color:#2f353b;
    font-size:14px;
    padding-right:5px;
}
.product-col .price span.price-old{
    font-size:18px;
    color:#808080;
    text-decoration:line-through;
}
.product-col .cart-button{
    padding-top:5px;
}

.product-col .price .old-price{
    text-decoration: line-through;
}

.product-col .price .new-price{
    color: red;
    font-weight: bold;
}

.product-col .cart-button .btn{
    -webkit-border-radius:0;
    -moz-border-radius:0;
    border-radius:0;
}
.product-col .btn-wishlist, 
.product-col .btn-compare{
    color:#fff;
    background:#303030;
    margin-right:3px;
}
.product-col .btn-wishlist:hover, 
.product-col .btn-compare:hover, 
.product-col .btn-cart, 
.product-col .btn-cart:hover .fa {
    background:#4bac52;             
}
.product-col .btn-cart{
    padding:0 0 0 15px;
    font-size:18px;
    color:#fff;
    text-transform:uppercase;
    border:none;
}
.product-col .btn-cart .fa{
    margin-left:10px;
    padding:10px;
}
.product-col .btn-cart .fa, 
.product-col .btn-cart:hover{
    background:#303030;
}
.product-col .cart-button.button-group .btn-cart{
    padding:5px 12px;
    font-size:17px;
}
.product-col .cart-button.button-group .btn-cart .fa {
    margin-left:0;
    padding:0;
    background:none;
}

.product-col .image .prod-img{
    height: auto;
}

.manufacturer h1{
    font-size: 18px;
    line-height: 20px;
}

.manufacturer li h2{
    font-size: 12px;
    line-height: 16px;
}

.manufacturers h1{
    font-size: 18px;
}

.manufacturers li h2{
    font-size: 12px;
    line-height: 16px;
}

ul.manufacturers{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(130px, 1fr) );
    grid-gap: 17px;
    grid-auto-rows: minmax(130px, auto);
    list-style: none;
    margin-left: 0;
}

ul.manufacturers li, ul.manufacturer-categories li{
    text-align: center;
    background-color: #FFF;
    border: 2px solid #FFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding-bottom: 10px
}

ul.manufacturers li:hover, ul.manufacturer-categories li:hover{
    border: 2px solid #2196f3;
}

ul.manufacturers li div.img-polaroid{
    display: flex;
    align-items: center;
    justify-content: center;
}


ul.manufacturer-categories{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(170px, 1fr) );
    grid-gap: 17px;
    grid-auto-rows: minmax(160px, auto);
    list-style: none;
    margin-left: 0;
}


ul.manufacturer-categories li a:link, ul.manufacturer-categories li a:visited{
    text-decoration: none;
}

ul.manufacturer-categories li .image-block .img-polaroid{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

ul.manufacturer-categories li h4{
    font-size:12px;
}

.well ul.menu li ul{
    padding-left:10px;
}

.well ul.menu li ul li ul{
    padding-left:10px;
}

ul.document-list, ul.document-list li{
    list-style: none;
    padding: 0;
    margin: 0;
}

.eoshop .compare {padding: 5px;}
.eoshop .compare img.prod-compare-img{max-height: 200px;}
.eoshop .compare table.tbl-items tr th{text-align: center;vertical-align: top;}
/*.eoshop .compare table.tbl-items tr th .image-wrapper{text-align: center;}*/
.eoshop .compare a.compare-rem-prod:link, .eoshop .compare a.compare-rem-prod:visited{color: red;white-space: nowrap;display: block;text-align: right;}
.eoshop .compare h3.product-name{text-align: left;font-size:13px;}
.eoshop .compare table td p{margin-bottom:0;}
.eoshop .compare table td p.old-price{text-decoration:line-through;}
.eoshop .compare table td p.new-price{color:red;}
.eoshop .compare .eo_cart_btn{text-align: left;}



/** Force up and down arrow for number input */
.number-input input[type=number]::-webkit-inner-spin-button,
.number-input input[type=number]::-webkit-outer-spin-button {
   opacity: 1;
}

/**   **************  */
.number-input input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.number-input input[type=number]::-webkit-inner-spin-button,
.number-input input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.number-input {
    border: 1px solid #ddd;
    display: inline-flex;
}

.number-input,
.number-input * {
    box-sizing: border-box;
}

.number-input button {
    outline:none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.number-input button:before,
.number-input button:after {
    display: inline-block;
    position: absolute;
    content: '';
    width: 1rem;
    height: 2px;
    background-color: #212121;
    transform: translate(-50%, -50%);
}
.number-input button.plus:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.number-input input[type=number] {
    max-width: 4.25rem;
    padding: .2rem;
    border: solid #ddd;
    border-width: 0 5px;
    font-size: 1.6rem;
    height: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
}

#scule_product_clipboard{
    position: absolute;
    left: -9999999px;
}

#scule_product_clipboard{
    background-color: #FFF;
}

#scule_product_clipboard table tr td{
    text-align: left;
}

p.first-review{
    font-weight: bold;
    padding-top: 25px;
    font-size: 16px;
}

div.products_filters .filter{
    display: inline-block;
    /*width: 200px;*/
    margin-right: 15px;
}

.product .stock li.yellow-disk, .product .stock li.green-disk, .product .stock li.red-disk, .product .stock li.white-disk{
    list-style: none;
}

.product .stock li.yellow-disk:before, .product .stock li.green-disk:before, .product .stock li.red-disk:before, .product .stock li.white-disk:before{
    content: "";
    border: 6px #ffd90ef2 solid !important;
    border-radius: 50px;
    margin-top: 3px;
    margin-left: -16px;
    position: absolute;
}

html .product .stock li.green-disk:before{
    border: 6px green solid !important;
}

html .product .stock li.red-disk:before{
    border: 6px red solid !important;
}

html .product .stock li.white-disk:before{
    border: 6px blue solid !important;
}

.eoshop .profile-detail{
    padding: 20px;
}

.eoshop .product .uom-hoder{
    padding-bottom: 12px;
}
.eoshop .product .uom-hoder span.label-uom{
    font-weight: bold;
}

.eoshop .profile-detail p.line label, .eoshop .profile-detail div.line label{
    font-weight: bold;
    /*padding-right: 10px;*/
}

/*.eoshop .profile-detail p.line label, .eoshop .profile-detail p.line span{
    display: inline;
}
*/

/*.eoshop .profile-detail p.line{
    display: flex !important;
    justify-content: space-between;
    flex-direction: row;
}*/

.eoshop .profile-detail p.line, .eoshop .profile-detail div.line{
    display: grid;
    grid-template-columns: 190px 1fr;
    margin-bottom: 5px;
}
.profile-detail .base-address, .profile-detail .additional-address{
    border:solid 1px #00000073;
    padding: 8px;
    margin-bottom: 10px;
}

.profile-detail legend{
    margin: 7px 0;
}

.profile-detail legend label{
    font-size: 19px;
    padding-bottom: 6px;
}

.profile-detail legend label span, .profile-detail legend.delivery-title span{
    font-size: 15px;
    font-weight: bold;
}

.profile-detail .profile-buttons{
    margin-top: 15px;
}

.profile-detail .control-buttons{
    margin-top: 15px;
}

.profile-detail input.partner-group{
    margin-top: -3px;
}

.eoshop .paymentmode{
    padding: 15px;
}

.eoshop .paymentmode .payment_type{
    margin-top: 20px;
    margin-bottom: 8px;
}

.eoshop .paymentmode .btn{
    margin-top: 20px;
    margin-left: 0;
}

.eoshop #orderForm #delivery_date{
    padding: 3px;
}

.eoshop .profile-detail .notification{
    font-weight: bold;
    font-size: 16px;
    color: red;
}

p.gift a:link,
p.gift a:visited{
    display: initial;
}

.eo_cart_btn_link{
    display: inline-block;
    width: 170px;
    margin-left: 2%;
    padding: 0px !important;
    height: 35px;
    text-align: center;
    font-size: 15px !important;
    line-height: 35px !important;
    font-weight: normal;
    border-radius: 5px !important;
    background: #2196f3 !important;
}

.eo_cart_btn_link:hover{
  background-color: #0069c0 !important;
}

.eo_cart_btn_link > .icon-cart{
    width: 35px;
    height: 35px;
    color: #fff;
    background: #e74C3C;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    float: left;
}

.black-friday .eo_cart_btn_link > .icon-cart{
  background: red;
}

.eoshop p.multiple-products{
    text-align: center;
}

p.not-in-borg-msg{font-size: 12px;}

div.cg-on-the-company{
    margin-top: 30px;
}

div.cg-on-the-company div.control-label{
    display: inline;
}

div.cg-on-the-company div.controls{
    display: inline;
}

div.cg-on-the-company div.controls #on-the-company_lbl{
    margin-top: -5px;
}

div.compare div.extra_warranty{
    text-align: center;
}


/*Iconite livrare si plata */
.product-col .description .code-produs{
  width:100%;
  display:block;
}
.product-col .description a{
  display: inline-block;
  width: 70%;
}
.product-col .description .extra_warranty{
display: inline-block;
  width: 28%;
  text-align: center;
  vertical-align: top;
}
.guestordersummary{
  padding: 20px;
}
.delivery_types{
  text-align:left;
}
.delivery_type_bg_id_1 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/ridicare_din_magazin.jpg");
  height: 50px;
  width: 210px;
  margin: 5px;
  vertical-align: middle;
}
.delivery_type_bg_id_2 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/livrare_prin_curier.jpg");
  height: 50px;
  width: 210px;
  margin: 5px;
  vertical-align: middle;
}
.delivery_type_bg_id_3 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/ridicare_din_easybox.jpg");
  height: 50px;
  width: 210px;
  margin: 5px;
  vertical-align: middle;
}
.delivery_type_bg_id_4 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/ridicare_din_fanbox.jpg");
  height: 50px;
  width: 210px;
  margin: 5px;
  vertical-align: middle;
}
.payment_type_bg_id_1 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/plata_ramburs.jpg");
  height: 50px;
  width: 210px;
  margin:5px;
  vertical-align: middle;
}
.payment_type_bg_id_2 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/plata_card_la_curier.jpg");
  height: 50px;
  width: 210px;
  margin:5px;
  vertical-align: middle;
}
.payment_type_bg_id_3 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/ridicare_din_magazin.jpg");
  height: 50px;
  width: 210px;
  margin:5px;
  vertical-align: middle;
}
.payment_type_bg_id_4 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/ordin_de_plata.jpg");
  height: 50px;
  width: 210px;
  margin:5px;
  vertical-align: middle;
}
.payment_type_bg_id_5 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/plata_online_cu_cardul.jpg");
  height: 50px;
  width: 210px;
  margin:5px;
  vertical-align: middle;
}
.payment_type_bg_id_6 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/plata_card_la_curier.jpg");
  height: 50px;
  width: 210px;
  margin:5px;
  vertical-align: middle;
}
.payment_type_bg_id_7 span{
  display: inline-block;
  background-image: url("/components/com_eoshop3/assets/images/order/plata_in_rate.jpg");
  height: 50px;
  width: 210px;
  margin:5px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .delivery_type_bg_id_1, .delivery_type_bg_id_2, .delivery_type_bg_id_3, .delivery_type_bg_id_4,.payment_type_bg_id_1, .payment_type_bg_id_2, .payment_type_bg_id_3, .payment_type_bg_id_4, .payment_type_bg_id_5, .payment_type_bg_id_6, .payment_type_bg_id_7{
    text-align: center;
  }
  .delivery_type_bg_id_1 span, .delivery_type_bg_id_2 span, .delivery_type_bg_id_3 span, .delivery_type_bg_id_4 span, .payment_type_bg_id_1 span,.payment_type_bg_id_2 span, .payment_type_bg_id_3 span, .payment_type_bg_id_4 span, .payment_type_bg_id_5 span, .payment_type_bg_id_6 span, .payment_type_bg_id_7 span {
    width: 92%;
    margin: 5px;
    background-repeat: no-repeat;
    text-align: center;
    background-position: center;
  }

}