@charset "utf-8";
@import "/assets/css/reset.css";
@import url('https://fonts.googleapis.com/css?family=Muli:300,400,700,800&display=swap');

/* Large desktop */
@media (max-width: 1199px) {  }

/* Portrait tablet to landscape and desktop */
@media (max-width: 979px) {  }

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {  }

/* Landscape phones and down */
@media (max-width: 534px) {  }

/* Landscape phones and down */
@media (max-width: 320px) {  }


@-ms-viewport {
    width: device-width;
}


/***************************************************
Global styles
***************************************************/
html {
    width: 100%;
    height: 100%;
    -ms-text-size-adjust: none;
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: 'Muli', Arial, Tahoma, Helvetica, sans-serif;
    font-size: 13px;
    color: #1c1a20;
    background: #fff;
    margin: 0;
    min-width: 320px;
}

a {
    color: inherit;
}
a:hover {
    color: #e50002;
}


/***************************************************
Szkielet
***************************************************/

.container {
    margin: 0 auto;
    max-width: 1400px;
}

.header-wrapper {
    position: relative;
    margin-bottom: 10px;
    background: #fff;
}
.header-wrapper .container {
    position: relative;
    border-bottom: 1px solid #e9e9e9;
    height: 175px;
}

.header-social {
    float: left;
    margin: 36px 0 0 10px;
}
.header-social a {
    margin-right: 10px;
}

.header-logo img {
    position: absolute;
    left: 50%;
    top: 15px;
    margin-left: -92px;
}

.header-nav {
    float: right;
    margin: 35px 10px 0 0;
}
.header-nav > * {
    margin-left: 20px;
}

.header-nav-profile {
    display: inline-block;
    position: relative;
}
.header-nav-profile strong {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    vertical-align: middle;
    margin-right: 5px;
}

.header-nav-profile-sub {
    display: none;
    background: #f8f8f8;
    position: absolute;
    top: 30px;
    left: 50%;
    width: 150px;
    padding: 15px 0;
    z-index: 9;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.header-nav-profile-sub.opened {
    display: block;
}
.header-nav-profile-sub li {
    padding: 5px 15px;
}


.header-nav-search {
    display: inline-block;
    position: relative;
}
.header-nav-search-control {
    border: 1px solid #1c1a20;
    background: #fff;
    width: 210px;
    height: 44px;
    padding: 10px;
    transition: all .15s linear;
    -moz-transition: all .15s linear;
    -webkit-transition: all .15s linear;
    position: absolute;
    top: 35px;
    right: -10px;
    display: none;
    z-index: 999;
}
.header-nav-search-control:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 8px 7.5px;
    border-color: transparent transparent #000000 transparent;
    position: absolute;
    top: -8px;
    right: 15px;
}
.header-nav-search-control input {
    width: calc(100% - 22px);
    float: left;
    height: 22px;
    line-height: 22px;
    border: 0;
}
.header-nav-search-control .icon-search {
    margin-top: 1px;
}
.header-nav-search.opened .header-nav-search-control {
    display: block;
}

.header-nav-cart {
    display: inline-block;
}
.header-nav-cart #box-cart {
    vertical-align: middle;
    margin-left: 5px;
}

.header-nav-langs {
    display: inline-block;
    height: 30px;
    vertical-align: middle;
}
.header-nav-langs a {
    display: block;
}
.header-nav-langs a span {
    font-size: 14px;
    text-transform: uppercase;
    color: #19171d;
    padding: 6px 0;
    display: none;
    width: 30px;
    text-align: center;
}
.header-nav-langs a span.current {
    display: inline-block;
}
.header-nav-langs.opened span {
    color: #fff;
    display: inline-block;
    background: #19171d;
}
.header-nav-langs.opened a:hover span {
    color: #ff0000;
}



.sticky .header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    box-shadow: 0 0 3px 1px rgba(0,0,0,0.1);
}
.sticky .header-wrapper .container {
    height: 70px;
}
.sticky .header-logo img {
    left: 10px;
    top: 10px;
    margin-left: 0;
    height: 50px;
}

.sticky .header-social {
    display: none;
}

.sticky .header-nav {
    margin-top: 19px;
}

.sticky .header-nav > * {
    margin-left: 10px;
}
.sticky .header-nav-cart #box-cart {
    display: none;
}

.sticky .header-nav-profile strong {
    display: none;
}



@media (max-width: 979px) {
    .header-wrapper .container {
        height: 103px;
    }
    .header-nav-profile strong {
        display: none;
    }
    .header-social {
        display: none;
    }
    .sticky .header-logo img {
        left: 60px;
    }
}

@media (max-width: 767px) {

    .header-wrapper .container {
        height: 70px;
    }
    .header-logo img {
        left: 60px;
        top: 10px;
        margin-left: 0;
        height: 50px;
    }
    .header-nav {
        margin-top: 19px;
    }


}

@media (max-width: 534px) {

    .header-logo img {
        height: 36px;
        top: 17px;
    }

    .header-nav > * {
        margin-left: 10px;
    }
    .header-nav-cart #box-cart {
        display: none;
    }

}


.footer-wrapper {
    margin-top: 30px;
    background: #f8f8f8;
    width: 100%;
}
.footer-wrapper .container {
    padding: 50px 10px;
    box-sizing: border-box;
}
.footer-links li {
    margin: 0 0 10px 0;
}
.footer-links a {
    margin-right: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-info {
    font-size: 14px;
    text-align: right;
}
.footer-info h3 {
    font-size: 26px;
    font-weight: 500;
    margin: 15px 0;
}
.footer-info h3 span {
    margin-left: 10px;
}
.footer-info h4 {
    font-size: 20px;
    font-weight: 600;
}

.footer-newsletter form {
    max-width: 400px;
    display: inline-block;
}
.footer-newsletter p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
}
.footer-newsletter input[type=text] {
    background: transparent;
    border-bottom: 1px solid #c7c7c7;
    width: 100%;
    padding: 0 0 10px 0;
    margin: 20px 0;
}
.footer-newsletter .form-group {
    text-align: left;
    width: calc(100% - 100px);
    float: left;
    clear: none;
}
.footer-newsletter .form-group-checkbox input[type=checkbox] {
    left: 0;
}
.footer-newsletter .btn {
    color: #000;
    background: #c7c7c7;
    float: right;
    padding: 7px 10px;
}

.footer-copy {
    color: #c2c2c2;
    float: left;
}
.footer-make {
    float: right;
}
.footer-make .studiomh {
    display: inline-block;
    background: url(/assets/img/studiomh.gif) no-repeat top;
    width: 26px;
    height: 15px;
    margin: -5px 0 -1px 0!important;
}
.footer-make .studiomh:hover {
    background-position: bottom;
}


@media (max-width: 767px) {
    .footer-newsletter {
        text-align: center;
    }
    .footer-newsletter input[type=text] {
        text-align: center;
    }
    .footer-info {
        text-align: center;
    }
}




.g-grid {
    padding: 0 10px;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

.g-row {
    clear: both;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: -30px;
}
.g-row > [class*="g-col-"] {
    padding-left: 30px;
}

.g-row-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.g-row-top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.g-row-middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.g-row-bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end;
}

.g-row-left {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.g-row-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.g-row-right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.g-row-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.g-row-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

[class*="g-col-"] {
    min-height: 1px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
}

.g-col-center {
    margin-right: auto;
    margin-left: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.g-col-content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.g-col-auto {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0%;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
}

.g-col-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.g-col-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.g-col-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.g-col-right {
    margin-left: auto;
}

.g-col-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
}

.g-col-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

.g-col-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.g-col-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
}

.g-col-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
}

.g-col-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.g-col-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
}

.g-col-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
}

.g-col-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.g-col-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}

.g-col-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
}

.g-col-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.g-gutter-reset {
    margin-left: 0;
}

.g-gutter-reset > [class*="g-col-"] {
    padding-left: 0;
}

.g-gutter-10 {
    margin-left: -10px;
}

.g-gutter-10 > [class*="g-col-"] {
    padding-left: 10px;
}

.g-pdd {
    margin-top: -30px;
}
.g-pdd > * {
    padding-top: 30px;
}
.g-pdd-50 {
    margin-top: -50px;
}
.g-pdd-50 > * {
    padding-top: 50px;
}
.g-pdd-10 {
    margin-top: -10px;
}
.g-pdd-10 > * {
    padding-top: 10px;
}


@media (min-width: 535px) {
    .g-col-s-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .g-col-s-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .g-col-s-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .g-col-s-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .g-col-s-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .g-col-s-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .g-col-s-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .g-col-s-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .g-col-s-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .g-col-s-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .g-col-s-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .g-col-s-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .g-col-s-content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .g-col-s-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
    }
}

@media (min-width: 768px) {
    .g-col-m-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .g-col-m-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .g-col-m-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .g-col-m-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .g-col-m-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .g-col-m-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .g-col-m-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .g-col-m-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .g-col-m-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .g-col-m-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .g-col-m-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .g-col-m-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .g-col-m-content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .g-col-m-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
    }
}

@media (min-width: 980px) {
    .g-col-l-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .g-col-l-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .g-col-l-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .g-col-l-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .g-col-l-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .g-col-l-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .g-col-l-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .g-col-l-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .g-col-l-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .g-col-l-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .g-col-l-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .g-col-l-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .g-col-l-content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .g-col-l-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 0%;
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
    }
}

[class*="g-hide-"] {
    display: block;
}

[class*="g-show-"] {
    display: none;
}

@media (min-width: 980px) {
    .g-show-l {
        display: block;
    }
    .g-hide-l {
        display: none;
    }
}

@media (min-width: 768px) {
    .g-show-m {
        display: block;
    }
    .g-hide-m {
        display: none;
    }
}

@media (min-width: 535px) {
    .g-show-s {
        display: block;
    }
    .g-hide-s {
        display: none;
    }
}



/***************************************************
content
***************************************************/

.content {
    padding: 0 10px;
}

.content p {
    margin: 15px 0;
    line-height: 1.5em;
}

.content h1 {
    color: inherit;
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin: 30px 0;
}
.content h1.sec {
    margin-top: 35px;
}
.content h1 a {
    color: inherit;
}
.content h1 a:hover {
    text-decoration: underline;
}

.content h2, .content .h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 30px 0 25px 0;
    clear: both;
}

.content h3 {
    color: inherit;
    font-size: 16px;
    font-weight: bold;
    margin: 25px 0 20px 0;
}
.content h3:first-of-type:not(.second) {
    margin-top: 0;
}
.content h3.sec {
    margin-top: 25px!important;
}

.content h4 {
    color: #e50002;
    font-size: 17px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.content ul {
    display: block;
    list-style: disc outside;
    margin: 0;
    padding-left: 20px;
    line-height: 18px;
}

.content ol {
    display: block;
    list-style: decimal outside;
    margin: 0;
    padding-left: 20px;
    line-height: 18px;
}

/***************************************************
menu
***************************************************/

.navbar {
    border-top: 1px solid #e9e9e9;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.sticky .navbar {
    left: 140px;
    right: 150px;
    border-top: 0;
}
.navbar > ul {
    text-align: center;
}
.navbar > ul > li {
    display: inline-block;
    margin: 0 10px;
    position: relative;
}
.navbar > ul > li > a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 25px 10px;
    display: block;
}
.navbar > ul > li > a:hover, .navbar > ul > li > a.current {
    color: #e50002;
}
.sticky .navbar > ul > li > a {
    font-size: 13px;
    padding: 25px 0;
}

.navbar-sub {
    position: absolute;
    top: 60px;
    left: -10px;
    z-index: 999;
    background: #f8f8f8;
    padding: 20px;
    display: none;
    width: 250px;
}
.navbar > ul > li:hover .navbar-sub {
    display: block;
}
.navbar-sub li {
    margin: 10px 0;
    text-align: left;
}
.navbar-sub li a {
    font-size: 14px;
}


@media (max-width: 979px) {
    .navbar {
        display: none;
    }
}



.mobile-overlay {
    display: none;
    position: fixed;
    top: -200px;
    right: -200px;
    bottom: -200px;
    left: -200px;
    background: rgba(68, 68, 68, 0.5);
    z-index: 999998;
}

.sidr-animating .mobile-overlay,
.sidr-open .mobile-overlay {
    display: block;
}

.mobile-offcanvas {
    display: none;
}

@media (min-width: 980px) {
    .mobile-offcanvas {
        display: block;
    }
}

.mobile-nav {
    float: right;
    display: block;
    height: 52px;
    line-height: 52px;
    text-align: center;
    text-decoration: none;
    position: absolute;
    left: 10px;
    top: 25px;
}

@media (min-width: 980px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav:hover {
    text-decoration: none;
}

.mobile-nav span {
    position: relative;
    padding-left: 35px;
    color: #1c1a20;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}
.mobile-nav span::after {
    display: block;
    position: absolute;
    top: 24px;
    left: 0;
    width: 25px;
    height: 3px;
    background: #1c1a20;
    box-shadow: 0 6px 0 #1c1a20,
    0 -6px 0 #1c1a20;
    content: '';
}

@media (max-width: 979px) {
    .sticky .mobile-nav {
        top: 9px;
    }
    .sticky .mobile-nav span {
        width: 25px;
        overflow: hidden;
    }
}
@media (max-width: 767px) {
    .mobile-nav {
        top: 9px;
    }
    .mobile-nav span {
        width: 25px;
        overflow: hidden;
    }
}



.sidr {
    display: block;
    position: fixed;
    top: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 999999;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidr ul {
    margin: 30px 10px;
    padding: 0;
    list-style: none;
}
.sidr li {
    border-bottom: 1px solid #e4e4e4;
}
.sidr a {
    display: block;
    padding: 5px;
    margin: 5px 0;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}
.sidr a:hover {
    color: #e5001d;
}


.sidr-class-navbar-sub {
    margin: 0!important;
    display: none;
}
.sidr-class-navbar-sub li {
    border-top: 1px solid #e4e4e4;
    border-bottom: 0;
    padding-left: 30px;
}
.sidr-class-navbar-sub a {
    font-size: 13px;
    text-transform: none;
}


.sidr.right {
    right: -300px;
    left: auto;
}

.sidr.left {
    right: auto;
    left: -300px;
}

.sidr-open .sidr {
    box-shadow: 1px 0 0 #ccc;
}

/***************************************************
				   Ścieżka
***************************************************/

.breadcrumb {
    font-size: 12px;
    margin: 5px 0;
    padding: 0;
}
.breadcrumb span {
    margin: 1px 6px;
}
.breadcrumb a:last-of-type {
    font-weight: bold;
}



/***************************************************
Specifics
***************************************************/

.no-margin-top {
    margin-top: 0!important;
}

.right {
    float: right!important;
}
.left {
    float: left!important;
}
.center {
    float: none!important;
    margin-left: auto!important;
    margin-right: auto!important;
}

.txt-left {
    text-align: left!important;
}
.txt-right {
    text-align: right!important;
}
.txt-center {
    text-align: center;
}


.color1 {
    color: #e50002;
}

.label {
    color: #999999;
    width: 70px;
    display: inline-block;
}

.wciecie {
    text-indent: 30px;
}


.dark {
    color: #ccc;
}
.gray {
    color: #999999;
}

hr {
    background: #ebebeb;
    height: 1px;
    border: 0;
    margin: 30px 0;
}


.pagination {
    text-align: center;
    clear: both;
    position: relative;
    margin-top: 30px;
}
.pagination .pagination-pages {
    display: inline-block;
}

/*@media (max-width: 534px) {*/
    /*.pagination .pagination-pages {*/
        /*float: none;*/
        /*clear: both;*/
        /*display: block;*/
        /*margin: 10px 0;*/
    /*}*/
    /*.pagination .left, .pagination .right {*/
        /*float: none!important;*/
    /*}*/
/*}*/



.loader {
    background: url(/assets/img/loader.gif) no-repeat center;
    position: absolute;
    z-index: 9999;
    height: 100%;
    padding: 10px;
    margin: -10px;
}


#cookies {
    font-size: 12px;
    color: #000;
    text-align: center;
    position: fixed;
    bottom: 0;
    background: #fff;
    padding: 5px;
    width: 100%;
}
#cookies .ok {
    background: #e50002;
    color: #fff;
    padding: 1px 3px;
    margin: 0 5px;
}
#cookies .ok:hover {
    background: #000;
}


.price {

}

img.wide {
    margin: 10px -45px;
}

img.img {

}


.fb {
    position: absolute;
    display: block;
    width: 75px;
    height: 16px;
    background: url("/assets/img/fb.png") no-repeat top;
    right: 10px;
    top: 69px;
}
.fb:hover {
    background-position: bottom;
}

.color-inline {
    display: inline-block;
    width: 25px;
    height: 20px;
    margin: -3px 0 -3px 0;
    border: 1px solid #000;
    vertical-align: -2px;
}


/***************************************************
Zewnętrzne pluginy
***************************************************/

.qtip-error {
    font-size: 12px!important;
    background-color: #e50002!important;
    border-color: #e50002!important;
    color: #fff!important;
    border-radius: 0;
    -moz-border-radius: 0;
}
.qtip-error .qtip-content {
    padding: 4px 5px 3px 5px!important;
}
.qtip-info {
    background-color: #1c1a20!important;
    border-color: #1c1a20!important;
    border-radius: 0;
    -moz-border-radius: 0;
    padding: 15px!important;
    max-width: 400px!important;
}
.qtip-info .qtip-content {
    color: #fff!important;
    font-size: 14px!important;
    line-height: 17px !important;
}

#cboxTitle {
    font-weight: bold;
    color: #000!important;
}

/***************************************************
Forms
***************************************************/

fieldset.form {
    border: 0;
    padding: 0;
    margin: 0;
}
fieldset.form-center {
    max-width: 600px;
    margin: 0 auto;
}


/* wiersz */
.form-group {
    clear: both;
    margin-bottom: 15px;
}
* html .form-group {height: 1%; /* IE5-6 */}
*+html .form-group {display: inline-block; /* IE7not8 */}
.form-group:after, .form-group:before { /* FF, IE8, O, S, etc. */content: ".";display: block;height: 0;clear: both;visibility: hidden;overflow: hidden;}


/* odstęp */
.form-offset {
    padding-left: 35%;
}

/* buttony */
fieldset.form .form-btns {
    margin-top: 20px;
}
fieldset.form .form-btns .link {
    vertical-align: middle;
}
fieldset.form .form-btns .btn + .link {
    margin-left: 10px;
}

.form-group-checkbox {
    position: relative;
}
.form-group-checkbox label {
    padding-left: 17px;
    float: left;
}
.form-group-checkbox input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 35%;
}


/* podpis */
.form-label {
    text-align: left;
    display: block;
    width: 35%;
    float: left;
    padding: 12px 10px 12px 0;
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}


/* gwiazdka */
.form-req {
    position: absolute;
    color: #ff0000;
    right: 1px;
}


/* grupa kontolek */
.form-control-group {
    width: 65%;
    max-width: 600px;
    margin: 6px 0;
    float: left;
}

fieldset.form-info .form-label {
    padding-top: 0;
    padding-bottom: 0;
}
fieldset.form-info .form-control-group {
    margin: 0;
}


.form-error {
    display: none;
}


/* kontrolka */
.form-control {
    font-size: 13px;
    background: #fff;
    width: 65%;
    padding: 11px 7px;
    margin: 0;
    border: 1px solid #c7c7c7;
    outline: none;
    border-radius: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.form-control:hover {
    border-color: #cfcfcf;
}
.form-control:focus {
    border-color: #cfcfcf;
}
select.form-control {
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
}
textarea.form-control {
    height: 60px;
}
input[type=checkbox].form-control {

}
.form-control-checkbox {
    vertical-align: text-bottom;
    margin-right: 3px;
}

.form-control-lg {
    width: 400px;
}
.form-control-sm {
    width: 100px;
}

.form-control-range input {
    float: left;
    width: 40%;
}
.form-control-range span {
    width: 20%;
    float: left;
    text-align: center;
    margin: 9px 0;
}

.form-control-number .form-control {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - 98px);
    margin: 0 10px;
}
.form-control-number > * {
    float: left;
}


.form-control-group-checkboxes span {
    display: block;
    margin-bottom: 13px;
}

/***************************************************
Messages
***************************************************/

.msg {
    text-align: center;
    padding: 15px;
    margin: 0 -10px 20px -10px;

    color: #000;
    border: 1px solid #000;
    background: #fff;
}

.breadcrumb + .msg {
    margin-top: -20px;
}

.msg.msg-info {
    color: #3A87AD;
    border-radius: 3px;
    border: 1px solid #9acfea;
    background: #e2f1f9; /* Old browsers */
    background: -moz-linear-gradient(top,  #e2f1f9 0%, #b9def0 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2f1f9), color-stop(100%,#b9def0)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #e2f1f9 0%,#b9def0 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #e2f1f9 0%,#b9def0 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #e2f1f9 0%,#b9def0 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #e2f1f9 0%,#b9def0 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2f1f9', endColorstr='#b9def0',GradientType=0 ); /* IE6-9 */
}

.msg.msg-danger {
    color: #B94A48;
    border-radius: 3px;
    border: 1px solid #dca7a7;
    background: #f2dddd; /* Old browsers */
    background: -moz-linear-gradient(top,  #f2dddd 0%, #e7c3c3 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2dddd), color-stop(100%,#e7c3c3)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f2dddd 0%,#e7c3c3 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f2dddd 0%,#e7c3c3 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f2dddd 0%,#e7c3c3 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f2dddd 0%,#e7c3c3 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2dddd', endColorstr='#e7c3c3',GradientType=0 ); /* IE6-9 */
}

.msg.msg-success {
    color: #468847;
    border-radius: 3px;
    border: 1px solid #B2DBA1;
    background: #def0d7; /* Old browsers */
    background: -moz-linear-gradient(top,  #def0d7 0%, #c9e5bd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#def0d7), color-stop(100%,#c9e5bd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #def0d7 0%,#c9e5bd 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #def0d7 0%,#c9e5bd 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #def0d7 0%,#c9e5bd 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #def0d7 0%,#c9e5bd 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#def0d7', endColorstr='#c9e5bd',GradientType=0 ); /* IE6-9 */
}


/***************************************************
Buttons
***************************************************/

.btn {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-align: center;

    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;

    display: inline-block;
    padding: 10px 12px;
    border: 0;
    border-radius: 2px;
    -moz-border-radius: 2px;

    background: #e50002;
}
.btn:hover, .btn-current {
    color: #fff;
    background: #000;
}
.btn:hover:not(.btn-disabled) {
}
.btn-light {
    color: #000000;
    background: #ebebeb;
}

.btn-info {
    color: #fff;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.196);
    background: #59bfdd; /* Old browsers */
    background: -moz-linear-gradient(top,  #59bfdd 0%, #2aabd2 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#59bfdd), color-stop(100%,#2AABD2)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #59bfdd 0%,#2AABD2 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #59bfdd 0%,#2AABD2 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #59bfdd 0%,#2AABD2 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #59bfdd 0%,#2AABD2 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#59bfdd', endColorstr='#2AABD2',GradientType=0 ); /* IE6-9 */
}
.btn-info:hover:not(.btn-disabled) {
    color: #fff;
    background: #42b5d8; /* Old browsers */
    background: -moz-linear-gradient(top,  #42b5d8 0%, #2aabd2 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#42b5d8), color-stop(100%,#2aabd2)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #42b5d8 0%,#2aabd2 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #42b5d8 0%,#2aabd2 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #42b5d8 0%,#2aabd2 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #42b5d8 0%,#2aabd2 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#42b5d8', endColorstr='#2aabd2',GradientType=0 ); /* IE6-9 */
}

.btn-success {
    color: #fff;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.196);
    background: #5bb65b; /* Old browsers */
    background: -moz-linear-gradient(top,  #5bb65b 0%, #419741 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5bb65b), color-stop(100%,#419741)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #5bb65b 0%,#419741 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #5bb65b 0%,#419741 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #5bb65b 0%,#419741 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #5bb65b 0%,#419741 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5bb65b', endColorstr='#419741',GradientType=0 ); /* IE6-9 */
}
.btn-success:hover:not(.btn-disabled) {
    color: #fff;
    background: #4da54d; /* Old browsers */
    background: -moz-linear-gradient(top,  #4da54d 0%, #419741 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4da54d), color-stop(100%,#419741)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #4da54d 0%,#419741 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #4da54d 0%,#419741 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #4da54d 0%,#419741 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #4da54d 0%,#419741 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4da54d', endColorstr='#419741',GradientType=0 ); /* IE6-9 */
}


.btn-danger {
    color: #fff;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.196);
    background: #d7504c; /* Old browsers */
    background: -moz-linear-gradient(top,  #d7504c 0%, #c12f2b 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d7504c), color-stop(100%,#c12f2b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #d7504c 0%,#c12f2b 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #d7504c 0%,#c12f2b 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #d7504c 0%,#c12f2b 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #d7504c 0%,#c12f2b 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7504c', endColorstr='#c12f2b',GradientType=0 ); /* IE6-9 */
}
.btn-danger:hover:not(.btn-disabled) {
    color: #fff;
    background: #cc3f3b; /* Old browsers */
    background: -moz-linear-gradient(top,  #cc3f3b 0%, #c12f2b 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cc3f3b), color-stop(100%,#c12f2b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #cc3f3b 0%,#c12f2b 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #cc3f3b 0%,#c12f2b 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #cc3f3b 0%,#c12f2b 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #cc3f3b 0%,#c12f2b 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc3f3b', endColorstr='#c12f2b',GradientType=0 ); /* IE6-9 */
}

.btn-info:hover, .btn-success:hover, .btn-danger:hover {
    color: #fff;
}


.btn-lg {
    font-size: 18px;
    padding: 8px 16px;
}
.btn-sm {
    font-size: 11px;
    padding: 3px 6px;
}
.btn-xs {
    font-size: 11px;
    padding: 0px 4px;
}

.btn-w100 {
    width: 100px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.btn-w150 {
    width: 150px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.btn-w200 {
    width: 200px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.btn-block {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.btn-disabled {
    opacity: 0.7;
}

.btns {
    margin-top: 30px!important;
    clear: both;
}



/***************************************************
Links
***************************************************/

.link {
}
.link2 {
    text-transform: uppercase;
}
.link-u {
    text-decoration: underline;
}
.link-info {
    color: #2AABD2;
}
.link-success {
    color: #419741;
}
.link-danger {
    color: #C12F2B;
}

/***************************************************
Icons
***************************************************/

[class*="icon-"] {
    display: inline-block;
    vertical-align: middle;
    content:'';
    height: 20px;
    width: 20px;
    background: url("/assets/img/sprites.png");
}

.icon-cart {
    width: 20px;
    height: 23px;
    background-position: -53px -68px;
}
a:hover .icon-cart {
    background-position: -53px -91px;
}

.icon-login {
    width: 22px;
    height: 23px;
    background-position: 0 -68px;
}
a:hover .icon-login {
    background-position: 0 -91px;
}

.icon-search {
    width: 24px;
    height: 23px;
    background-position: -25px -68px;
}
a:hover .icon-search {
    background-position: -25px -91px;
}

.icon-fb {
    width: 29px;
    height: 29px;
    background-position: 0 0;
}
a:hover .icon-fb {
    background-position: 0 -29px;
}
.icon-in {
    width: 29px;
    height: 29px;
    background-position: -29px 0;
}
a:hover .icon-in {
    background-position: -29px -29px;
}

.icon-arrow-right {
    width: 22px;
    height: 23px;
    background-position: -74px -68px;
}
a:hover .icon-arrow-right {
    background-position: -74px -91px;
}


.icon-phone {
    width: 43px;
    height: 43px;
    background-position: 0 -122px;
}
.icon-email {
    width: 43px;
    height: 32px;
    background-position: 0 -168px;
}



.icon-shipping {
    width: 31px;
    height: 16px;
    background-position: -55px -122px;
    margin: 5px 5px 7px;
}
.icon-return {
    width: 19px;
    height: 20px;
    background-position: -90px -122px;
    margin: 5px 5px 7px;
}


/*.icon-delete {*/
    /*height: 7px;*/
    /*width: 8px;*/
    /*background: url("/assets/img/icon-delete.png");*/
    /*margin-right: 5px;*/
    /*margin-bottom: 2px;*/
/*}*/


/***************************************************
Table
***************************************************/

table.table {
    margin: 10px auto;
    clear: both;
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #e8e8e8;
}

table.table thead tr {
    
}

table.table thead td {
    text-align: center;
    text-transform: uppercase;
}
table.table td {
    padding: 13px 10px;
    border-bottom: 1px solid #e8e8e8;
}

table.table tbody tr:hover td {
    background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
    table.table {
        overflow-x: auto;
        display: block;
    }
}
@media screen and (min-width: 769px) {
    table.table th {
        min-width: auto!important;
    }
}


/***************************************************
Dialog
***************************************************/

/* Add some nice box-shadow-ness to the dialogues */
.qtip.qtip-dialogue{
    max-width: 600px;
    min-width: 210px;

    -moz-box-shadow: 0 0 10px 1px rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,.5);
    box-shadow: 0 0 10px 1px rgba(0,0,0,.5);
    padding: 0;

    background: #fff;
    border: 1px solid #eee;
    font-size: 13px;
}

.qtip.qtip-dialogue .qtip-titlebar{
    padding: 20px;
    background: #eee;
}
.qtip.qtip-dialogue .qtip-content{
    padding: 10px 20px 20px 20px;
}
.qtip.qtip-dialogue .qtip-content p {
    text-align: center;
}

.qtip.qtip-dialogue button{
    float: left;
    width: 47%;
    margin-top: 20px;
    margin-right: 10px;
}

.qtip.qtip-dialogue button:only-of-type {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.qtip.qtip-dialogue button + button{
    float: right;
    margin-right: 0;
}


/***************************************************
			        SLIDER
***************************************************/

.g-slider {
    max-width: 1150px;
    margin: 0 auto 25px auto;
    z-index: 1;
    height: 400px;
}

.g-slider li {
    position: relative;
}
.g-slider li>div {
    font-size: 43px;
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 400px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 60px;
    display: table;
}
.g-slider li>div>div {
    display: table-cell;
    vertical-align: middle;
}

.bx-viewport {
    max-width: 1150px;
    margin: 0 auto;
}
.bx-viewport img {
    max-width: 100%;
    display: block;
}

.bx-wrapper {
    position: relative;
}

/* PAGER */

.bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-family: Arial;
    font-weight: bold;
    color: #666;
    padding: 18px 0;
    z-index: 99;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    *zoom: 1;
    *display: inline;
}

.bx-wrapper .bx-pager a {
    background: #fff;
    text-indent: -9999px;
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    position: relative;
}

.bx-wrapper .bx-pager .bx-pager-item a:hover:after,
.bx-wrapper .bx-pager .bx-pager-item a.active:after {
    display: block;
    content: '';
    background: #000;
    width: 10px;
    height: 10px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    position: absolute;
    top: 4px;
    left: 4px;
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    z-index: 9999;
    opacity: 0.6;
}
.bx-wrapper .bx-controls-direction a:hover {
    opacity: 1;
}
.bx-wrapper .bx-prev {
    left: 10px;
    /*background: url(/assets/img/slider-left.png) no-repeat;*/
}
.bx-wrapper .bx-next {
    right: 10px;
    /*background: url(/assets/img/slider-right.png) no-repeat;*/
}





/***************************************************
podstrona - kontakt
***************************************************/

.p-contact #map {
    width: 100%;
    height: 300px;
}
.p-contact .map_content {
    font-family: Arial;
    height: 55px
}


/***************************************************
moduł - produkty
***************************************************/

.offers-filters {
    margin-top: 40px;
}
.offers-filters ul {
    list-style: none;
    padding: 0;
}
.offers-filters li.current a {
    color: #e50002;
}
.offers-filters-nav {
    margin: 20px 0;
}


.offers-filters-attrs-hide {
    display: none;
}
.offers-filters-attrs-more {
    display: none;
}


@media (max-width: 767px) {
    .offers-filters {
        margin: 0 0 20px 0;
    }
}


.offers-header {
    margin: 20px 0;
}
.offers-header h2 {
    float: left;
    margin: 0;
}

.offers-header-search-control {
    float: right;
    margin: -8px 0 0 10px;
    border: 1px solid #c7c7c7;
    width: 210px;
    height: 40px;
    padding: 10px;
}
.offers-header-search-control input {
    width: calc(100% - 22px);
    float: left;
    height: 18px;
    line-height: 18px;
    border: 0;
}
.offers-header-search-control .icon-arrow-right {
    margin-top: -2px;
}

.offers-header-sort {
    float: right;
    margin: -8px 0 0 0;
    text-align: right;
}
.offers-header-sort select {
    width: 150px;
}


@media (max-width: 979px) {
    .offers-header h2 {
        float: none;
        margin: 0 0 10px 0;
    }
    .offers-header-sort, .offers-header-search-control {
        margin: 0 0 10px 10px;
    }
}



.offers-wrapper article {
    position: relative;
}
.offers-wrapper article figure {
    text-align: center;
    position: relative;
    overflow: hidden;
}
.offers-wrapper article figure img {
    width: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    transition: transform .25s linear;
    -moz-transition: transform .25s linear;
    -webkit-transition: transform .25s linear;
}
.offers-wrapper article a:hover figure img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.offers-wrapper article figure>span {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #e50002;
    padding: 5px;
}
.offers-wrapper article figure>span+span {
    bottom: 30px;
}

/*.offers-wrapper article figure>div {*/
    /*color: #fff;*/
    /*opacity: 0;*/
    /*position: absolute;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*right: 0;*/
    /*left: 0;*/
    /*background: rgba(0, 0, 0, 0.5);*/
    /*transition: opacity .25s linear;*/
    /*-moz-transition: opacity .25s linear;*/
    /*-webkit-transition: opacity .25s linear;*/
    /*padding-top: 30%;*/
/*}*/
/*.offers-wrapper article:hover figure>div {*/
    /*opacity: 1;*/
/*}*/
/*.offers-wrapper article figure>div span.size {*/
    /*display: block;*/
    /*font-size: 24px;*/
    /*margin: 0 10px 5px 10px;*/
/*}*/

.offers-wrapper article footer {
    color: inherit;
    font-size: 16px;
    margin-top: 8px;
}
.offers-wrapper article footer h2 {
    font-size: 14px;
    font-weight: 500;
    margin: 6px 0;
}
.offers-wrapper article footer .price {
    color: #e50002;
    font-size: 20px;
    font-weight: 500;
}
.offers-wrapper article footer .price>strike {
    color: #1c1a20;
    font-weight: normal;
    font-size: 14px;
}
.offers-wrapper article footer .price>span {
    color: #999;
    font-weight: normal;
    clear: both;
    display: block;
}
.offers-wrapper article footer .unit {
    float: right;
}




/***************************************************
podstrona - produkty szczegóły
***************************************************/

.offersShow-photos img {
    width: 100%;
    display: block;
}
.offersShow-photos a {
    display: block;
    position: relative;
}
.offersShow-photos a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity .25s linear;
    -moz-transition: opacity .25s linear;
    -webkit-transition: opacity .25s linear;
}
.offersShow-photos a:hover:after {
    opacity: 1;
}


.offersShow-wrapper header {
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    margin-bottom: 25px;
}
.offersShow-wrapper header h2 {
    margin: 0;
}
.offersShow-wrapper .price {
    font-size: 22px;
    font-weight: bold;
    color: #e50002;
}
.offersShow-wrapper .price > span {
    font-size: 16px;
    font-weight: normal;
    color: #999;
    margin-left: 5px;
}
.offersShow-wrapper .price strike {
    font-weight: normal;
    font-size: 16px;
}
.offersShow-wrapper .price_per_item {
    font-size: 16px;
    color: #e50002;
    clear: both;
    display: block;
}
.offersShow-wrapper .price_per_item .price {
    font-size: 16px;
}

.offersShow-wrapper header a {
    float: right;
}

.offersShow-text {
    margin-top: 50px;
}
.offersShow-text p {
    margin: 15px 0!important;
}


.offersShow-attributes {
    margin: 0 0 10px 0;
}
.offersShow-attributes .icon {
    margin: 0 5px 20px 0;
}
.offersShow-attributes .form-group {
    margin: 0 0 10px 0;
}
.offersShow-attributes .form-label {
    padding: 0;
}
.offersShow-attributes .form-control-group {
    margin: 0;
}


.offersShow-colors {
    width: 65%;
}
.offersShow-color {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
}


.offersShow-form-buy {
    border-bottom: 1px solid #e8e8e8!important;
    position: relative;
}
.offersShow-form-buy .form-group {
    clear: none;
}
.offersShow-form-buy .form-label {
}
.offersShow-form-buy .form-control {
    width: 35%;
}
.offersShow-form-buy .btn {
    position: absolute;
    bottom: 15px;
    right: 0;
    padding: 10px 0;
    width: calc(30% - 20px);
}

.offersShow-form-links {
    border-bottom: 1px solid #e8e8e8;
    padding: 17px 0;
}


.offersShow-form-support {
    margin-top: 20px!important;
}



@media (max-width: 534px) {
    .offersShow-form-buy > div {
        padding-bottom: 50px;
    }
    .offersShow-form-buy .form-control {
        width: 65%;
    }
    .offersShow-form-buy .btn {
        width: auto;
        padding: 10px 20px;
    }
}


/***************************************************
podstrona - koszyk
***************************************************/

.cart-list {
    margin-bottom: 40px;
}
.cart-item:first-child {
    border-top: 1px solid #d3d3d3;
}
.cart-item {
    border-bottom: 1px solid #d3d3d3;
    padding: 20px 0;
    position: relative;
}

.cart-item figure {
    padding-bottom: 100%;
    position: relative;
    background: #fff;
}
.cart-item figure img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 8;
}

.cart-item h3 {
    margin: 10px 0;
}

.cart-item .cart-form-group {
    margin-bottom: 7px;
}

.cart-item .form-control-number {
    margin-top: 10px;
}

.cart-item .act-del {
    position: absolute;
    top: 20px;
    right: 0;
}

@media (max-width: 767px) {
    .cart-item .act-del {
        padding: 5px 10px;
    }
}



.cart-summary {
    float: right;
    max-width: 500px;
    width: 100%;
    margin-bottom: 40px;
}
.cart-summary dt {
    width: 50%;
    float: left;
    margin-bottom: 5px;
    margin-right: 20px;
    text-align: right;
}
.cart-summary dd {
    margin-bottom: 5px;
    font-weight: bold;
}
.cart-summary dd span {
    font-weight: normal;
}
.cart-summary strike {
    font-weight: normal;
}
.cart-summary p {
    font-size: 14px;
    text-align: center;
}






/***************************************************
podstrona - koszyk - kasa
***************************************************/


.cash-login {
    text-align: center;
    margin-bottom: 40px;
}
.cash-login .btn {
    margin-top: 10px;
}

.cash-summary .form-control-group {
    font-weight: bold;
}


/***************************************************
			        PAYU
***************************************************/

.m-payu {
    background: #fff;
    border-radius: 3px;
    color: #000;
    padding: 20px;
    margin: 20px 0;
}
.m-payu table {
    border-spacing: 5px;
    border-collapse: separate;
}
.m-payu table tr td table{
    width: 100%;
}
.m-payu table tr td table tr td:first-of-type{
    width: 20px;
}


/***************************************************
			        aktualności
***************************************************/

.news-item {
    margin-bottom: 19px;
}
.news-item figure {
    margin-bottom: 20px;
}
.news-item figure img {
    display: block;
    width: 100%;
}
.news-item section {
}
.news-item time {
    color: #999999;
    margin: 0 0 3px 0;
    display: block;
}
.news-item h3 {
    font-size: 18px;
    font-weight: bold;
}


/***************************************************
			        kolekcje
***************************************************/

.p-collections article {
    float: left;
    width: 268px;
    margin-left: 19px;
    position: relative;
}
.p-collections article:nth-child(4n+1) {
    margin-left: 0;
    clear: both;
}
.p-collections article figure {
    margin-bottom: 10px;
}
.p-collections article figure img {
    border-radius: 4px;
    -moz-border-radius: 4px;
    display: block;
    width: 268px;
    max-height: 340px;
}
.p-collections article figure>div {
    text-align: center;
    color: #fff;
    display: none;
    position: absolute;
    top: 0;
    width: 268px;
    height: 340px;
    background: rgba(172, 0, 2, 0.75);
    border-radius: 4px;
    -moz-border-radius: 4px;
}
.p-collections article:hover figure>div {
    display: block;
    padding-top: 130px;
    box-sizing: border-box;
    moz-box-sizing: border-box;
}

.p-collections article h3 {
    font-size: 18px;
    font-weight: bold;
}


/***************************************************
			        warto wiedzień
***************************************************/

.p-icons .h2 {
    margin: 20px 0 10px 0;
    display: inline-block;
}
.p-icons .h2 img {
    vertical-align: middle;
    margin-right: 10px;
}
