@charset "utf-8";
/* CSS Document */
/*eshop*/

#catalogue {
    
}
#catalogue.empty {
    margin: 20px 0;
}
#catalogue.empty p {
    text-align: center;
    font-size: 16px;
}
    #catalogue .product-item, 
    #related-products .product-item {
        position: relative;
        width: 100%;
        min-height: 350px;
        text-align: center;
        margin-bottom: 30px;    
        border: 1px solid #ccc;
    }
    #catalogue .product-item:hover, 
    #related-products .product-item:hover {
        border: 1px solid transparent;
    }
        #catalogue .product-item img.manufacturer, 
        #related-products .product-item img.manufacturer {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 1;
        }
        #catalogue .product-item .img-container, 
        #related-products .product-item .img-container {
            position: relative;
            width: 100%;
            height: auto;
            height: 190px;
            overflow: hidden;
        }
        #catalogue .product-item .img-container > a, 
        #related-products .product-item .img-container > a {
            display: inline-block;
            width: 100%;
            height: 120px;
            margin: 30px auto;
            text-align: center;
        }
        #catalogue .product-item .img-container > a img, 
        #related-products .product-item .img-container > a img {
            max-height: 170px;
            width: auto;
            margin: -14px auto;
            webkit-transform:   scale(1);
            -moz-transform:     scale(1);
            -o-transform:       scale(1);
            -ms-transform:      scale(1);
            transform:          scale(1);
            -webkit-transition: all 0.3s cubic-bezier(.63,.08,.35,.92);
            -moz-transition:    all 0.3s cubic-bezier(.63,.08,.35,.92);
            -o-transition:      all 0.3s cubic-bezier(.63,.08,.35,.92);
            -ms-transition:     all 0.3s cubic-bezier(.63,.08,.35,.92);
            transition:         all 0.3s cubic-bezier(.63,.08,.35,.92);
        }
        #catalogue .product-item:hover .img-container > a img, 
        #related-products .product-item:hover .img-container > a img {
            /*-webkit-transform:  scale(1.4);
            -moz-transform:     scale(1.4);
            -o-transform:       scale(1.4);
            -ms-transform:      scale(1.4);
            transform:          scale(1.4);*/
        }
        #catalogue .product-item .img-container > a center, 
        #related-products .product-item .img-container > a center {
            line-height: 120px;
        }


        #catalogue .product-item .status-container, 
        #related-products .product-item .status-container, 
        #product-detail #product-detail-description .status-container {
            position: absolute;
            top: 0;
            right: -4px;
        }
        #product-detail #product-detail-description .status-container {
            right: -15px;
        }
        #catalogue .product-item .status-container > span, 
        #related-products .product-item .status-container > span, 
        #product-detail #product-detail-description .status-container > span {
            position: relative;
            display: block;
            height: 20px;
            margin: 10px 0;
            padding: 2px 10px;
            color: #fff;
            text-align: center;
            text-transform: uppercase;
            font-size: 11px;            
        }
        #product-detail #product-detail-description .status-container > span {
        /*    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
            box-shadow:         -4px 2px 6px 0px rgba(0,0,0,0.50);
            -webkit-box-shadow: -4px 2px 6px 0px rgba(0,0,0,0.50);
            -moz-box-shadow:    -4px 2px 6px 0px rgba(0,0,0,0.50);
            
        }        
        #product-detail #product-detail-description .status-container > span:before {
        
            -webkit-filter: drop-shadow(-4px 2px 3px #999);
            filter:         drop-shadow(-4px 2px 3px #999); 
        }

        #product-detail #product-detail-description .status-container > span {
            height: 30px;
            padding: 5px 20px;
            font-size: 14px;
            font-weight: bold;
        }        
        #product-detail #product-detail-description .status-container > span:first-child {
            margin-top: 0;
        }
        #catalogue .product-item .status-container > span:before, 
        #related-products .product-item .status-container > span:before, 
        #product-detail #product-detail-description .status-container > span:before {
            content: '';
            position: absolute;
            height: 0;
            width: 0;
            top: 0px;
            left: -20px;
            border: 10px solid transparent;
            z-index: 1;
        }
        #product-detail #product-detail-description .status-container > span:after {
            content: '';
            position: absolute;
            height: 0;
            width: 0;
            bottom: -5px;
            right: 0px;
            z-index: 1;
            border-style: solid;
            border-width: 5px 15px 0 0;          
        }
        #product-detail #product-detail-description .status-container > span:before {
            left: -30px;
            border: 15px solid transparent;
        }
            #catalogue .product-item .status-container > span.new, 
            #related-products .product-item .status-container > span.new, 
            #product-detail #product-detail-description .status-container > span.new {
                background-color: #ff0000;
            }
            #catalogue .product-item .status-container > span.new:before, 
            #related-products .product-item .status-container > span.new:before, 
            #product-detail #product-detail-description .status-container > span.new:before {
                border-right-color: #ff0000;
            }
            #product-detail #product-detail-description .status-container > span.new:after {
                border-color: #990000 transparent transparent transparent;
            }
            #catalogue .product-item .status-container > span.sale, 
            #related-products .product-item .status-container > span.sale, 
            #product-detail #product-detail-description .status-container > span.sale {
                background-color: #00b000;
            }
            #catalogue .product-item .status-container > span.sale:before, 
            #related-products .product-item .status-container > span.sale:before, 
            #product-detail #product-detail-description .status-container > span.sale:before {
                border-right-color: #00b000;
            }
            #product-detail #product-detail-description .status-container > span.sale:after {
                border-color: #006600 transparent transparent transparent;
            }
            #catalogue .product-item .status-container > span.recommend, 
            #related-products .product-item .status-container > span.recommend, 
            #product-detail #product-detail-description .status-container > span.recommend {
                background-color: #00aeff;
            }
            #catalogue .product-item .status-container > span.recommend:before, 
            #related-products .product-item .status-container > span.recommend:before, 
            #product-detail #product-detail-description .status-container > span.recommend:before {
                border-right-color: #00aeff;
            }
            #product-detail #product-detail-description .status-container > span.recommend:after {
                border-color: #006699 transparent transparent transparent;
            }
            #catalogue .product-item .status-container > span.action, 
            #related-products .product-item .status-container > span.action, 
            #product-detail #product-detail-description .status-container > span.action {
                background-color: #ff00d4;
            }
            #catalogue .product-item .status-container > span.action:before, 
            #related-products .product-item .status-container > span.action:before, 
            #product-detail #product-detail-description .status-container > span.action:before {
                border-right-color: #ff00d4;
            }
            #product-detail #product-detail-description .status-container > span.action:after {
                border-color: #990099 transparent transparent transparent;
            }



    #catalogue .product-item h2, 
    #related-products .product-item h2 {
        margin: 10px;
        text-align: center;
        text-transform: none;
        border: none;
    }
    #catalogue .product-item h2 a, 
    #related-products .product-item h2 a {
        width: 100%;
        font-size: 16px;
        color: #000;
    }
    #catalogue .product-item:hover h2 a, 
    #related-products .product-item:hover h2 a {
        color: #222;
    }
    #catalogue .product-item .item-footer, 
    #related-products .product-item .item-footer {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
    }
    #catalogue .product-item .price, 
    #related-products .product-item .price {
        position: relative;
        height: 30px;
        width: 120px;
        margin: 15px auto;
        padding: 3px 10px;
        background-color: #FF6900;
        color: #fff;
        text-align: center;
        font-size: 18px;
        line-height: 24px;
        font-weight: bold;
        border-radius:          4px;
        -webkit-border-radius:  4px;
        -moz-border-radius:     4px;
        -ms-border-radius:      4px;
        -o-border-radius:       4px;
        behavior: url(pie/PIE.htc);
    }
    #catalogue .product-item .price:after, 
    #related-products .product-item .price:after {
        content: ' ';
        position: absolute;
        height: 0;
        width: 0;
        top: 0px;
        right: -28px;
        border: 15px solid transparent;
        border-left-color: #ff6900;
        -moz-border-left-colors: #FF6900;
        z-index: 1;
    }

    #catalogue .product-item:hover .price, 
    #related-products .product-item:hover .price {
    }
    #catalogue .product-item .old-price, 
    #related-products .product-item .old-price {
        text-decoration: line-through;
        font-size: 13px;
        margin-bottom: -15px;
        color: #ff6900;
    }
    #catalogue .product-item .add-to-cart, 
    #related-products .product-item .add-to-cart {
        position: relative;
        width: 100%;
        height: 40px;
        padding: 4px 0;
        background-color: #67b709;
        text-align: center;
        font-size: 18px;
    }
    #catalogue .product-item:hover .add-to-cart, 
    #related-products .product-item:hover .add-to-cart {
    }
    #catalogue .product-item .add-to-cart a, 
    #related-products .product-item .add-to-cart a {
        color: #fff;
    }
    #catalogue .product-item:hover .add-to-cart a, 
    #related-products .product-item:hover .add-to-cart a {
        /*color: #222;*/
    }
    #catalogue .product-item .add-to-cart a i, 
    #related-products .product-item .add-to-cart a i {
        font-size: 110%;
    }


/*search form*/
.catalogue-control {
}
#search-form, 
#sorting-form {
    font-size: 12px;
    line-height: 30px;
}
#sorting-form {
    margin: 15px 0;
    height: 30px;
}
#sorting-form select {
    
}
#sorting-form select[name="sort_by"] {
    margin: 0 0 0 10px;
}
#sorting-form .sorters-container {
    float: left;
}
#sorting-form .limit-control-container {
    float: right;
}
#sorting-form .limit-control-container select {
    margin: 0 0 0 10px;
}
#search-form {
    width: 240px;
    float: left;
}
#search-form input[type="text"] {
    float: left;
}
#search-form input[type="submit"] {
    float: left;
}
#search-form input[type="submit"], 
#sorting-form input[type="submit"] {
    margin: 0;
}
#sorting-form input[type="submit"] {
    height: 20px;
    line-height: 16px;
}
#sorting-form .catalogue_limit {
    margin: 0;
}




/*detail*/

/*
#product-detail > div > hr {
    width: 100%;
    height: 1px;
    margin: 0px auto 30px auto;
    background-color: #c8d5e8;
    color: #c8d5e8;
    border: 0px none;
}
*/
#product-detail-gallery {
    
}
#product-detail-gallery .img-container {
    margin-bottom: 40px;
    transition:         all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition:    all 0.2s ease-in-out;
    -o-transition:      all 0.2s ease-in-out;
    -ms-transition:     all 0.2s ease-in-out;
}
#product-detail-gallery .img-container:hover {
    transform:          scale(1.08);
    -webkit-transform:  scale(1.08);
    -moz-transform:     scale(1.08);
    -o-transform:       scale(1.08);
    -ms-transform:      scale(1.08);
}
#product-detail-gallery .img-container .gallery-item {
    width: 100%;
    height: auto;
    display: block;

    white-space: nowrap;
    text-align: center;
}
#product-detail-gallery .img-container .gallery-item span {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
#product-detail-gallery .img-container .gallery-item img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
#gallery {
    width: 100%;
    margin: 10px 0 0;
}
#gallery .gallery-item {
    width: 100%;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border: thin solid #ccc;
}
#gallery .gallery-item:hover {
    border: thin solid transparent;
}
#gallery .gallery-item img {
    max-width: 90%;
    max-height: 90%;
    display: inline-block;
    vertical-align: middle;
}
.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
#right-column > span.code {
    margin: 0 0 5px;
    display: block;
}
#product-detail-description {
    text-align: justify;

}
    #product-detail-description h1 {
        border-bottom: 1px solid #e3e3e3;
        text-align: left;
    }
    #product-detail-description h1 img {
        margin: 2px 0 0 10px;
        float: right;
    }    
    #product-detail-description h1 img {
        margin: 2px 0 0 10px;
        float: right;
    }

    #product-detail-description p {
        text-align: justify;
        margin-bottom: 15px;
    }

    #product-detail-description ul { 
       list-style-type: disc; 
       list-style-position: outside;
       margin-left: 40px;
    }
    #product-detail-description ol { 
       list-style-type: decimal; 
       list-style-position: outside;
       margin-left: 40px; 
    }
    #product-detail-description ul ul, 
    #product-detail-description ol ul { 
       list-style-type: circle; 
       list-style-position: outside; 
       margin-left: 55px; 
    }
    #product-detail-description ol ol, 
    #product-detail-description ul ol { 
       list-style-type: lower-latin; 
       list-style-position: outside; 
       margin-left: 55px; 
    }
#product-detail-description .product-status {
    margin: 0 4px 5px 0;
    padding: 2px 4px;
    color: #fff;
}
#product-detail-description .code {
    font-size: 11px;
    margin: 0 0 10px;
    display: block;
}
#price-container {
    margin-bottom: 50px;
}
#price-container > div {
    margin-right: 20px;
    float: left;
}
#price-container .old-price {
    display: block;
    height: 20px;
    color: #8BB33F;
    font-size: 13px;
    font-weight: normal;
    text-align: center;
    text-decoration: line-through;
}
#price-container .percentage-discount {
    display: block;
    height: 30px;
    background: #8BB33F;
    color: #ffffff;
    font-size: 16px;
    padding: 2px 5px;
    border-radius: 2px;
}
#price-container .price {
    display: block;
    height: 40px;
    color: #FF6900;
    font-size: 36px;
    line-height: 36px;
    font-weight: bold;
    text-align: right;
}
#price-container .price.vat-false {
    height: 50px;
    font-size: 48px;
    line-height: 48px;
}
#price-container .price-wo-vat {
    display: block;
    height: 10px;
    font-size: 11px;
    line-height: 11px;
    font-weight: normal;
    font-style: italic;
    text-align: center;
    color: #6c6c6c;
}
#price-container .price span span {
    text-decoration: line-through;
}
#product-detail-description .attribute {
    margin: 0 0 10px;
    display: block;
}
#product-detail-description .attribute > span {
    display: block;
    font-weight: bold;
    margin: 0 0 2px;
}
#product-detail-description .attribute select {
    width: 100%;
    margin: 2px 0 5px;
}



#amount-container {
    display: inline-block;
    margin-right: 30px;
    float: left;
}
#amount-container input {
    width: 41px;
    height: 28px;
    padding: 2px 12px;
    margin: 0 6px 0 0;
    float: left;
    text-align: right;
    border: 1px solid #dedede;
    border-radius:          4px;
    -webkit-border-radius:  4px;
    -moz-border-radius:     4px;
    -ms-border-radius:      4px;
    -o-border-radius:       4px;
    behavior: url(pie/PIE.htc);
}
#inc-dec-control > div.amount-button {
    cursor: pointer;
    display: inline-block;
    float: left;
    width: 28px;
    height: 14px;
    margin: 0 6px 0 0;
    padding: 0px;
    background: transparent linear-gradient(to bottom, #FFF 0%, #EEE 100%) repeat scroll 0% 0%;
    border: 1px solid #dedede;
    color: #000;
    line-height: 12px;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
}
#inc-dec-control .inc {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}
#inc-dec-control .dec {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

#inc-dec-control > div.amount-button:hover {
    border: 1px solid #cfc4c5;
    background: #f6c7a6 linear-gradient(to bottom, #fff 1%, #f6c7a6 100%) repeat scroll 0% 0%;
    color: #a00;
}
#inc-dec-control > div.amount-button:active {
    background: #ff6900 linear-gradient(to bottom, #c60 1%, #ff6900 100%) repeat scroll 0% 0%;
    border: 1px solid #a30;
    color: #FFF;
}
#product-detail-description .product-description-content {
    margin: 20px 0 0; 
    padding-right: 15px;   
}
#product-detail-description .product-description-content *:not(h2) {
    /*padding-right: 15px;*/
}
input#add-to-cart {
    display: inline-block;
    float: left;
    width: 150px;
}
input#add-to-cart:hover {
}





/*related products*/

#related-products h2 {
    margin-top: 30px;
    margin-bottom: 60px;
}
/*
#related-products {
    margin: 20px 0;
}
#related-products h2 {
    color: #929496;
    border-bottom: 1px solid #e3e3e3;
    margin: 0 0 10px;
    padding: 0 0 10px;
}
#related-products .item {
    width: 218px;
    float: left;
    margin: 0 11px 20px 1px;
    position: relative;
}
#related-products .item.last {
    margin: 0 1px 20px;
}
#related-products .item .image-container {
    width: 218px;
    height: 290px;
    text-align: center;
}
#related-products .item img {
    max-width: 218px;
    max-height: 290px;
    display: inline-block;
    vertical-align: middle;
}
#related-products .item a.title {
    font-size: 13px;
    font-weight: normal;
    font-family: 'ubuntubold', sans-serif;
    text-align: center;
    text-transform: none;
    margin: 10px 10px 0;
}
#related-products div.item p.price {
    margin: 5px 10px 0;
    text-align: center;
} 
#related-products div.item .add-to-cart {
    text-indent: -100px;
    width: 30px;
    height: 28px;
    position: absolute;
    right: 0;
    bottom: 48px;
}
#related-products div.item .add-to-cart a {
    background: url(../images/wrapper/icons-global.png) -124px 0 no-repeat;
    width: 30px;
    height: 28px;
    text-indent: -100px;
    display: block;
    overflow: hidden;
    border-radius: 2px;
}
#related-products div.item .add-to-cart a:hover {
    background-position: -124px -28px;
}
*/
/*pagination*/
ul.pagination {
    list-style: none;
    width: 100%;
    text-align: right;
    margin: 20px 0;
}
ul.pagination li {
    display: inline-block;
    margin: 0 5px;
}
ul.pagination li a, 
ul.pagination li span {
    height: 24px;
    line-height: 24px;
    display: block;
    padding: 0 5px;
    border: 0;
    background: transparent;
}
ul.pagination li:hover a {
    background: #e20022;
    color: #fff;
}
ul.pagination li.selected span {
    color: #e20022;
    font-weight: bold;
    background: transparent;
}
/*cart + proccess*/
#content.kosik, 
#content.step1, 
#content.step2, 
#content.step3 {
    width: 940px;
    padding: 20px;
}
#content.kosik button, #content.kosik input[type=submit] {
    padding: 0 15px;
}
#cart_table {
    width: 100%;
    margin: 10px 0 0;
}
#content.step1 #cart_table, 
#content.step2 #cart_table {
    margin: 10px 0 30px;
}
#cart_table > tbody > tr > th {
    color: #5dc35d;
    text-align: left;
}
#cart_table > tbody > tr > th[scope="col"] {
    min-width: 250px;
}
/*
#cart_table > tbody > tr:nth-child(even) {
    background: #efefef;
}
*/
#cart_table > tbody > tr:hover {
/*    background: #efefef;*/
}
#cart_table > tbody > tr:last-child {
    background: transparent;
}
#cart_table > tbody > tr > td {
    padding: 5px;
}
#cart_table > tbody > tr > td.item-photo {
/*    background: #efefef; */
    text-align: center;
}
#cart_table > tbody > tr > td.item-photo img {
    width: 50px;
    height: 50px;
}
#cart_table > tbody > tr > td.actions {
    text-align: center;
}
#cart_table > tbody > tr > td.actions a {
    width: 14px;
    display: inline-block;
}
#cart_table > tbody > tr > td.price {
/*    background: #efefef*/;
    padding: 10px 15px;
    border-top: thin solid #C8D5E8;
}
#cart_table > tbody > tr > td.price.big {
    font-size: 17px;
}
#cart_table > tbody > tr > td span {
    display: block;
    text-align: right;
}
#cart_table > tbody > tr > td > span > strong {
    width: 170px;
    display: inline-block;
}
#content.step1 #delivery, 
#content.step1 #payment,
#content.step2 #delivery, 
#content.step2 #payment {
    width: 50%;
    float: left;
    margin: 0 0 20px;
}

#content.step1 #delivery label, 
#content.step1 #payment label {
    display: block;
    margin: 0 0 5px;
}
#content.step1 #delivery label input, 
#content.step1 #payment label input {
    vertical-align: middle;
}
#content.step1 #payment label small {
    display: block;
    margin: 2px 0 0 15px;
}
#content.step1 #payment label small.price {
    display: inline-block;
    margin: 0;
}
#content #payment label span {
    font-weight: normal;
    font-size: 90%;
}
#step1-form > div.invoice-address > h3, 
#step1-form > div.delivery-address > h3 {
    color: #000;
}
form#step1-form .company-data,
form#step1-form .delivery-address,
form#step1-form .questionnaire {
    display: none;
}
form#step1-form .switch div label:not(:last-child) {
    margin-right: 30px;
}
#payment small.price {
    display: none !important;
}
#payment small {
    margin: 0 0 5px 17px;
    display: none;
}
/*
#step1-form > div.form-footer {
    width: 100%;
} */
#step1-form > div.form-footer label {
    display: block;
    margin: 0 0 5px;
}
#step1-form > div.form-footer label input {
    margin: 0 10px 0 0;
}
#step1-form > div.form-footer > a {
    margin: 0 0 0 20px;
}
#step1-form > div.form-footer > label > span {
    display: inline-block;
/*    width: 914px;*/
}
#step1-form > div.form-footer > label > input {
    vertical-align: top;
}
#step1-form > div.form-footer > input[type="submit"] {
    padding: 0 15px;
}
#content > div.invoice-address, 
#content > div.delivery-address {

}
#content > div.invoice-address > p, 
#content > div.delivery-address > p {
    line-height: 28px;
    margin: 0;
}
#content.step2 > button.button {
    padding: 0 15px;
}
#content.kosik .cart-empty a, 
#content.step3 .cart-empty a {
    color: #07b8d2;
}
#content.kosik .cart-empty a:hover, 
#content.step3 .cart-empty a:hover {
    color: #000;
}