/*=============== HEADER / NAVIGATION ===================*/
header[role="banner"]{
    padding-bottom: 2rem;
    border-bottom: 1px solid #d2d2d2;
    position: relative;
    padding-top: 3.8rem;
}
header .top-bar{
    height: 3.8rem;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
header .contact{
    float: left;
}
header .contact .contact-element{
    height: 3.8rem;
    line-height: 3.8rem;
}
header .contact .contact-element > *{
    vertical-align: middle;
    font-size: 1.2rem;
    color: #000;
}
header .links{
    float: right;
}
header .links .links-element{
    height: 3.8rem;
    line-height: 3.8rem;
    float: left; 
    border-left: 1px solid #eff1f5;
}
header .links .links-element:first-child{
    border: none;
}
header .links .links-element a{
    display: block;
    vertical-align: middle;
    padding: 0 1.5rem;
    transition: all 0.3s;
}
header .links .links-element a > *{
    font-size: 1.3rem;
    color: #595b62;
}
header .links .links-element a:hover{
    background-color: #eff1f5;
}
header .header-wrapper{
    background: #eff1f5;
}
header .header-wrapper-inner{
    background: url(../img/top.jpg) no-repeat top center;
    background-size: contain;
    position: relative;
    top: -3.8rem;
    padding-top: 3.8rem;
    height: 30rem;
    margin-bottom: -3.8rem;
}
header .logo{
    width: 42rem;
    float: left;
}
header .logo img{
    max-height: 100%;
    max-width: 100%;
}
header .basket-info{
    float: right;
    width: 24rem;
    text-align: right;
    margin-top: 4.5rem;
}
header .basket-info .basket-wrapper{
    border-bottom: 1px solid #dcdfe5;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    color: #000;
}
header .basket-info .basket-wrapper .basket-title{
    color: #cf0000;
    margin-bottom: 0.5rem;
}
header nav{
    position: absolute;
    right: 0;
    bottom: 2rem;
    background: rgb(0,204,255);
    background: -moz-linear-gradient(top, rgba(0,204,255,1) 0%, rgba(0,140,207,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,204,255,1) 0%,rgba(0,140,207,1) 100%);
    background: linear-gradient(to bottom, rgba(0,204,255,1) 0%,rgba(0,140,207,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d30000', endColorstr='#b80000',GradientType=0 );
    width: 100%;
    padding-right: 21rem;
}
header nav > button.btn{
    display: none;
}
header nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: table;
    table-layout: fixed;
}
header nav ul li{
    color: #FFF;
    display: table-cell;
    text-align: center;
    border-left: 1px solid #0040a2;
}
header nav ul li:first-child{
    border: none;
}
header nav ul li a{
    display: block;
    line-height: 6rem;
    font-weight: 600;
    color: inherit !important;
    transition: all 0.3s;
    text-shadow: 1px 1px 1px #000;
}
header nav ul li.active a,
header nav ul li a:hover{
    color: #fde398 !important;
}
header .search-form{
    width: 21rem;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: 0;
}
header .search-form form input{
    height: 4rem;
    line-height: 4rem;
    border: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0 0 0 2rem;
}
header .search-form form .btn{
    background-color: #FFF;
}
header .search-form form .btn i{
    color: #CCC;
}
header .search-form.loading form .btn i{
    animation: fa-spin 2s infinite linear;
}
header .search-form.loading form .btn i:before{
    content: "\F453";
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
header .search-form #search-list{
    position: absolute;
    top: 6rem;
    right: 0;
    background-color: #fff;
    z-index: 110;
    border: 1px solid #CCC;
    border-radius: 5px;
    padding: 0.5rem 0;
    width: 100%;
    min-width: 30rem;
    display: none;
}
header .search-form #search-list button{
    position: absolute;
    bottom: 0.5rem;
    border-radius: 50%;
    right: 0.5rem;
    padding: 0;
    width: 2.8rem;
}
header .search-form #search-list a{
    padding: 0.5rem 2rem;
    color: #999;
    display: block;
    font-size: 1.4rem;
    transition: all 0.3s;
}
header .search-form #search-list a:hover{
    color: #000;
}
header .search-form #search-list a[href*="/search/"]{
    color: #337ab7 !important;
    border-top: 1px dashed #eaeaea;
    padding-top: 1rem;
}


@media (max-width: 767px) {
    header[role="banner"]{
        padding-bottom: 0;
        margin-bottom: 1rem;
    }
    header .header-wrapper{
        padding-bottom: 1.5rem;
    }
    header .header-wrapper-inner{
        background: none;
        height: auto;
        top: 0;
        margin-bottom: 0;
        padding-top: 0;
    }
    header .logo {
        width: 26rem;
    }
    header .basket-info{
        margin-top: 0.5rem;
    }
    header nav{
        position: relative;
        bottom: auto;
        right: auto;
        float: left;
        z-index: unset;
        padding-top: 1px;
        padding-bottom: 1px;
    }
    header nav button.btn{
        display: inline-block;
    }
    header .search-form{
        padding: 0.76rem;
        transition: all 0.3s;
    }
    header .search-form.focus{
        width: 100%;
    }
    header nav ul{
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        transition: all 0.3s;
        background-color: #00ccff;
        padding: 9rem 4rem 0 4rem;
        display: block;
        z-index: 1000;
    }
    header nav ul li{
        display: block;
    }
    header nav ul li{
        text-align: left;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.2);
    }
    header nav button.close-btn{
        position: fixed;
        top: 2rem;
        right: -100%;
        color: #FFF;
        font-size: 3rem;
    }
    header nav ul li a{
        font-size: 2rem;
        line-height: 5rem;
    }
    header nav ul li a:hover{
        color: inherit !important;
    }
    .open-menu header nav ul{
        left: 0;
    }
    .open-menu header nav button.close-btn{
        right: 2rem;
        z-index: 1001;
    }
    header .search-form #search-list{
        top: 5.5rem;
    }
}
@media (max-width: 480px) {
    header .logo{
        width: 22rem;
        margin-top: 1rem;
    }
    header .links{
        margin-right: -1rem;
    }
    header .links .links-element a{
        padding: 0 1rem;
    }
    header .basket-info{
        width: auto;
        margin-bottom: 1rem;
    }
    header .basket-info .basket-wrapper{
        margin-bottom: 0.5rem;    
        padding-bottom: 0.5rem;    
    }
    header .basket-info .basket-wrapper .basket-title{
        margin-bottom: 0;
    }
    header .basket-info .basket-wrapper span{
        font-size: 1.4rem;
    }
    header nav{
        padding-right: 16rem;
    }
    header nav > button.btn{
        padding: 0 1rem;
    }
    header .search-form{
        width: 16rem;
    }
    header .search-form #search-list a{
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 1.3rem;
    }
}
@media (max-width: 360px) {
    header .logo{
        width: 18rem;
    }
    header nav > button.btn{
        font-size: 1.7rem !important;
    }
    header nav{
        padding-right: 14rem;
    }
    header .search-form{
        width: 14rem;
    }
}


/*=============== SLIDER ===================*/
.home-slider{
    width: 100%;
    position: relative;
}
.home-slider .slider-wrapper{
    width: 100%;
    margin: 2rem 0;
    border-bottom: 1px solid #d2d2d2;
    padding-bottom: 2rem;
}
.home-slider .slider-wrapper .owl-stage-outer,
.home-slider .slider-wrapper .owl-stage-outer .owl-stage,
.home-slider .slider-wrapper .owl-stage-outer .owl-stage .owl-item{
    height: 100%;
}

.home-slider .slider-actions .slider-nav.disabled{
    display: none;
}
.home-slider .slider-actions .slider-nav > div{
    position: absolute;
    top: 50%;
    margin-top: -3rem;
    z-index: 100;
    cursor: pointer;
}
.home-slider .slider-actions .slider-nav .owl-prev{
    left: 2rem;
}
.home-slider .slider-actions .slider-nav .owl-next{
    right: 2rem;
}
.home-slider .slider-actions .slider-nav i{
    font-size: 4rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    color: #FFF;
    width: 4rem;
    opacity: 0.1;
    transition: all 0.3s;
}
.home-slider .slider-actions .slider-nav > div:hover i{
    opacity: 0.3;
}
.home-slider .slider-actions .slider-dots{
    position: absolute;
    width: 100%;
    bottom: 0.5rem;
    line-height: 1;
    left: 0;
    text-align: center;
    z-index: 100;
}
.home-slider .slider-actions .slider-dots.disabled{
    display: none;
}
.home-slider .slider-actions .slider-dots .owl-dot{
    display: inline-block;
    margin: 0 0.2rem;
}
.home-slider .slider-actions .slider-dots .owl-dot span{
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: #eff1f5;
    display: block;
    transition: all 0.3s;
    cursor: pointer;
}
.home-slider .slider-actions .slider-dots .owl-dot.active span{
    background-color: #e52f23;
}
@media (max-width: 767px) {
    .home-slider .slider-wrapper{
        margin-top: 0;
    }
}
@media (max-width: 480px) {
    
}



/*=============== CATEGORIES LIST ===================*/
.categories-wrapper .categories-list{
    list-style: none;
    padding: 0;
    margin: -1px 0 0 0;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    color: #000;
}
.categories-wrapper .categories-list > li{
    display: block;
}
.categories-wrapper .categories-list > li > a{
    display: block;
    padding: 1rem 1.5rem;
    background-color: #FFF;
    border-top: 1px solid #eaeaea;
    font-size: 1.3rem;
    color: #595b62;
    font-weight: 600;
}
.categories-wrapper .categories-list > li > ul{
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f3f5f8;
}
.categories-wrapper .categories-list > li > ul > li{
    display: block;
}
.categories-wrapper .categories-list > li > ul > li > a{
    display: block;
    padding: 1rem 1.5rem 1rem 2rem;
    font-size: 1.3rem;
}
.categories-wrapper .categories-list > li > ul > li > a:before{
    content: "•";
    display: inline-block;
    padding-right: 0.5rem;
}
.categories-wrapper .categories-list > li > ul > li > ul{
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #e8e8e8;
}
.categories-wrapper .categories-list > li > ul > li > ul > li{
    display: block;
}
.categories-wrapper .categories-list > li > ul > li > ul > li > a{
    display: block;
    padding: 0.5rem 1.5rem 0.5rem 2.5rem;
    font-size: 1.2rem;
}
.categories-wrapper .categories-list > li > ul > li > ul > li > a:before{
    content: "-";
    display: inline-block;
    padding-right: 0.5rem;
}
.categories-wrapper .categories-list > li.active > a{
    color: #ff0000;
}
.categories-wrapper .categories-list > li > ul > li.active > a{
    font-weight: 600;
}
.categories-wrapper .categories-list > li > ul > li > ul > li.active > a{
    color: #ff0000;
    font-weight: 600;
}
.categories-wrapper .categories-list li{
    position: relative;
}
.categories-wrapper .categories-list li > i{
    position: absolute;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    font-style: normal;
    right: 0;
    top: 0;
    color: #898988;
    cursor: pointer;
}
.categories-wrapper .categories-list li > i:before{
    content: "\F35D";
    font-family: 'Material Design Icons';
}
.categories-wrapper .categories-list > li.active > i{
    color: #FFF;
}
.categories-wrapper .categories-extras{
    padding: 1.5rem;
    border: 1px solid #eaeaea;
    border-top: none;
    margin-bottom: 2rem;
}
.categories-wrapper .categories-extras label{
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #000;
}
.categories-wrapper .categories-extras label strong{
    color: #0069b0;
    font-size: inherit;
}

@media (max-width: 767px) {
    .categories-wrapper{
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        transition: all 0.3s;
        background-color: #FFF;
        padding: 9rem 2rem 0 2rem;
        display: block;
        z-index: 1000;
        overflow: auto;
    }
    .categories-wrapper .categories-list li > i{
        height: 4rem;
        line-height: 4rem;
    }
    .categories-wrapper .categories-list > li > a{
        font-size: 1.7rem;
    }
    .categories-wrapper .categories-list > li > ul > li > a{
        font-size: 1.6rem;
    }
    .categories-wrapper .categories-list > li > ul > li > ul > li > a{
        font-size: 1.5rem;
        padding: 1rem 1.5rem 1rem 2.5rem;   
    }
    .open-categories .categories-wrapper{
        left: 0;
    }
    .open-categories header nav button.close-btn{
        right: 2rem;
        z-index: 1001;
    }
    .categories-wrapper .categories-extras label{
        font-size: 1.6rem;
    }
}


/*=============== BLOG TEASER ===================*/
.blog-teaser{
    margin: 4rem 1.5rem;
}
.blog-teaser label{
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 2rem;
}
.blog-teaser label strong{
    color: #17629b;
    font-size: inherit;
}
.blog-teaser > span{
    color: #91949f;
    font-size: 1.1rem;
    display: block;
}
.blog-teaser a:not(.btn){
    display: block;
    color: #17629b;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1;
    font-size: 1.3rem;
}
.blog-teaser > p{
    font-size: 1.3rem;
}



/*=============== ARTICLES ===================*/
.article-list article{
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dedede;
}
.article-list article .article-date{
    display: block;
    font-size: 1.2rem;
}
.article-list article .article-title{
    font-size: 2rem;
    color: #e42524;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}
.article-list article .article-title:hover{
    color: #337ab7;
}
.article-list article .article-wrapper{
    position: relative;
}
.article-list article .article-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 22rem;
    height: 14rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.article-list article .article-image + .article-text{
    min-height: 14rem;
    padding-left: 23.5rem;
}
.article-list article .article-text{}
.article-list article .article-text p{
    margin: 0;
}
@media (max-width: 480px) {
    .article-list article .article-image{
        width: 17rem;
        height: 11rem;
    }
    .article-list article .article-image + .article-text{
        min-height: 11rem;
        padding-left: 18rem;
    }
}



/*=============== ARTICLE ENTRY ===================*/
.article-entry .ilightbox{
    float: left;
    margin: 0 2rem 1rem 0;
}
.article-entry a{
    color: #e42524;
}



/*=============== FAQ LIST ===================*/
.faq-list .faq-element{
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.faq-list .faq-element a{
    color: #e42524;
    display: inline-block;
    line-height: 1;
}
.faq-list article{
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #dedede;
}
.faq-list article h3{
    margin: 0 0 0.5rem 0;
}
.faq-list article p{
    margin: 0;
}



/*=============== PARTNERS ===================*/
.partners .table-container{
    margin-bottom: 4rem;
}
.partners h2{
    margin: 0 0 1rem 0;
}
.partners p{
    margin-bottom: 1rem;
}
.partners a{
    color: #e42524;
    font-size: 1.4rem;
}
.partners a:hover{
    color: #008dd3;
}



/*=============== LOGIN ===================*/
.login h1{
    font-size: 2.3rem;
    font-weight: 400;
    margin: 3rem 0;
}
.login h1 strong{
    font: inherit;
    font-weight: 600;
}
.login label{
    height: 3.6rem;
    line-height: 3.6rem;
    margin: 0;
    font-size: 1.3rem;
}
.login em{
    color: #e42524;
    font-style: normal;
}
.login .left-side{
    text-align: right;
    border-right: 1px solid #eaeaea;
}
.login .left-side form > .row,
.login .right-side form > .row{
    margin-bottom: 1rem;
}
.login .left-side a,
.login .right-side form a{
    display: inline-block;
    margin-top: 2rem;
    text-decoration: underline;
    font-size: 1.4rem;
    color: #008dd3;
}
.login .left-side span > a{
    font-size: inherit;
}
.login .left-side .checkbox input{
    margin-top: 1rem;
}
.login .left-side .checkbox a{
    margin-top: 0;
}
.login .left-side a:hover{
    color: #e42524;
}
@media (max-width: 768px) {
    .login label{
        height: auto;
        line-height: 1;
    }
    .login .left-side .checkbox input {
        margin-top: 0.3rem;
    }
    .login .left-side{
        text-align: left;
    }
}
@media (max-width: 480px) {
    .login h1{
        margin-bottom: 1.5rem 0;
    }
    .login .left-side{
        border: none;
    }
}


/*=============== BASKET ===================*/
.basket .login{
    margin-bottom: 2rem;
}
.basket .login h1{
    margin-bottom: 1rem;
}
.basket .login .form-group > label{
    height: 2.5rem;
    line-height: 2.5rem;
}
.basket label.radio-inline{
    height: auto;
    line-height: normal;
}
.basket label strong{
    height: auto;
    line-height: normal;
    display: block;
    font-size: 1.3rem;
    padding-top: 0.5rem;   
}
.basket label small{
    font-weight: 300;
    display: block;
    margin-top: 0.5rem;
    line-height: 1.1;
}
.steps-line{
    margin-top: 1rem;
    margin-bottom: 3rem;
    display: block;
    float: left;
    width: 100%;
}
.steps-line .step-element{
    float: left;
    width: 25%;
    height: 5rem;
    vertical-align: middle;
    display: table;
    position: relative;
    padding-top: 1rem;
}
.steps-line .step-element:last-child em{
    border-right: none;
}
.steps-line em{
    display: block;
    height: 1rem;
    width: 100%;
    background-color: #d5d5d5;
    border-top: 0.3rem solid #FFF;
    border-right: 1px solid #888;
    position: absolute;
    border-bottom: 0.3rem solid #FFF;
    top: 0;
    left: 0;
}
.steps-line span{
    vertical-align: middle;
    display: table-cell;
    text-transform: uppercase;
    color: #595b62;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    width: 100%;
}
.steps-line span i{
    margin-right: 3px;
}
.steps-line .active em{
    background-color: #e42524;
}
.steps-line .active span{
    color: #e42524;
}

.order-list{
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.order-list strong,
.order-list span{
    display: inline-block;
    line-height: 1.1;
}
.order-list .o-l-header{
    display: flex;
    width: 100%;
    align-items: center;
    height: 4rem;
}
.order-list .o-l-header *{
    color: #000 !important;    
}
.order-list .o-l-item{
    display: flex;
    width: 100%;
    align-items: center;
    border-top: 1px solid #e9e9e9;
    color: #000;
    padding: 0.5rem 0;
}
.order-list .o-l-img{
    width: 15%;
    min-height: 1px;
    float: left;
}
.order-list .o-l-img img{
    width: 100%;
}
.order-list .o-l-name{
    width: 35%;
    min-height: 1px;
    float: left;
    padding: 0 0.5rem;
}
.order-list .o-l-price{
    width: 15%;
    min-height: 1px;
    float: left;
    padding: 0 0.5rem;
    text-align: center;
    color: #0069b0;
}
.order-list .o-l-amount{
    width: 10%;
    min-height: 1px;
    float: left;
    padding: 0 0.5rem;
    text-align: center;
}
.order-list .o-l-action{
    width: 10%;
    min-height: 1px;
    float: left;
    padding: 0 0.5rem;
}
.order-list .o-l-action .btn{
    padding: 0;
    width: 4rem;
    border-radius: 50%;
}
.order-list .o-l-action .btn.btn-sm{
    width: 2.8rem;    
}
.order-list .o-l-summary{
    display: flex;
    width: 100%;
    align-items: center;
    border-top: 1px solid #e9e9e9;
    margin-bottom: 2rem;
}
.order-list .o-l-summary .o-l-price{
    color: #000;
    text-transform: uppercase;
}
.order-list .o-l-summary .o-l-price h2{
    color: #0069b0;
    font-size: 2.5rem;
    white-space: nowrap;
}
.basket-order .order-list .o-l-name{
    width: 45%;
}

.basket .saved-address{
    width: 100%;
    padding: 1rem;
    background-color: #f9f9f9;
    margin-bottom: 2rem;
}
.basket .save-address .btn{
    margin-bottom: 1rem;
}
.basket .saved-address strong{
    display: block;
    margin-bottom: 1rem;
    color: #000;
}
.basket .saved-address strong i{
    color: #fdb50c;
    font-size: 2rem;
}
.basket .saved-address span{
    display: block;
}
.basket .saved-address .btn{
    margin-top: 1rem;
}

.basket .basket-radio-options{
    height: auto;
}
.basket .basket-radio-options > div{
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #e9e9e9;
    vertical-align: middle;    
}
.basket .basket-radio-options span{
    display: block;
}
.basket .basket-radio-options .alert{
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    display: inline-block;
}
.basket .basket-radio-options img{
    margin: 1rem 0;
}

.basket .payment-summary{
    margin: 1rem 0 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
}
.basket .payment-summary span{
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 2.6rem;
    display: inline-block;
    margin: 0.5rem 0;
}
.basket .payment-summary strong{
    color: #000;
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 2.6rem;
    display: inline-block;
    margin: 0.5rem 0;
}

.basket .delivery-summary{
    padding: 2rem;
    background-color: #f8f8f8;
    margin: 2rem 0;
}
.basket .delivery-summary span{
    display: block;
    padding: 0.8rem 0;
}
.basket .delivery-summary strong{
    display: block;
    padding: 0.8rem 0;
    color: #000;
}


@media (max-width: 991px) {
    .steps-line{
        margin-bottom: 2rem;
    }
    .order-list{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .order-list .o-l-header strong, 
    .order-list .o-l-header span,
    .order-list .o-l-item strong, 
    .order-list .o-l-item span{
        font-size: 1.4rem;
    }
}
@media (max-width: 480px) {
    .steps-line{
        display: table;
        margin-bottom: 1rem;
    }
    .steps-line .step-element{
        float: none;
        width: auto;
        display: table-cell;
        padding: 0 0.5rem;
        text-align: center;
    }
    .steps-line span{
        display: inline-block;
    }
    .order-list{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .order-list .o-l-img{
        width: 12%;
    }
    .order-list .o-l-name{
        padding: 0;
        width: 29%;
    }
    .order-list .o-l-price{
        width: 17%;
    }
    .order-list .o-l-amount{
        padding: 0;
        width: 15%;
    }
    .basket-order .order-list .o-l-name{
        width: 39%;
    }
    .order-list .o-l-header strong, 
    .order-list .o-l-header span{        
        font-size: 1.3rem;
    }
    .order-list .o-l-item strong, 
    .order-list .o-l-item span{
        font-size: 1.3rem;
        font-weight: 300;
    }
    .order-list .o-l-summary .o-l-price h2{
        color: #75a434;
        font-size: 2.2rem;
    }

    .basket .basket-radio-options > div:first-child{
        padding-bottom: 0;
    }
    .basket .basket-radio-options > div:last-child{
        border-top: none;
    }
}


/*=============== CUSTOMER PANEL ===================*/
.account .login .left-side{
    border: none;
}
@media (max-width: 767px) {    
    .account .table th,
    .account .table td{
        white-space: normal !important;
        vertical-align: middle;
    }
}


/*=============== PRODUCTS LIST ACTIONS ===================*/
.list-extras{
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
}
.list-extras .list-actions{
    display: flex;
    justify-content: end;
}
.list-extras span{
    display: inline-block;
    font-size: 1.2rem;
    height: 3.6rem;
    line-height: 3.6rem;
}
.list-extras .list-action{
    margin-right: 1rem;
}
.list-extras .list-action select{
    display: inline-block;
    width: auto;
    font-size: 1.2rem;
    padding: 0 0.5rem;
}
.list-extras .pager{
    padding: 0;
    margin: 0;
}
@media (max-width: 767px) {
    .list-extras{
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .list-extras .list-actions{
        justify-content: space-between;
        flex: 0 0 100%;
        min-width: 100%;
    }
    .list-extras .list-action{
        margin: 0;
    }
}
@media (max-width: 480px) {
    .list-extras{
        margin-top: -1rem;
    }
    .list-extras .summary span{
        height: 2rem;
        line-height: 2rem;
        margin-bottom: 1rem;
    }
    .list-extras .list-action span{
        height: 1.5rem;
        line-height: 1.5rem;
        display: block;
    }
    .list-extras .pager{
        padding-top: 1.5rem;
    }
}


/*=============== PRODUCTS LIST ===================*/
.products-list h3{
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}
.products-list h3 .carousel-actions{
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 2rem;
}
.products-list h3 .carousel-actions .carousel-dots.disabled{
    display: none;
}
.products-list h3 .carousel-actions .carousel-dots .owl-dot{
    display: inline-block;
    margin: 0 2px;
}
.products-list h3 .carousel-actions .carousel-dots .owl-dot span{
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background-color: #ccc;
    cursor: pointer;
}
.products-list h3 .carousel-actions .carousel-dots .owl-dot.active span{
    background-color: #000;
}
.products-list h3 .carousel-actions .carousel-navs.disabled{
    display: none;
}
.products-list h3 .carousel-actions .carousel-navs > div{
    position: absolute;
    top: 0;
}
.products-list h3 .carousel-actions .carousel-navs > div i{
    font-size: 2rem;
    color: #DD0000;
    line-height: 1.2rem;
    cursor: pointer;
}
.products-list h3 .carousel-actions .carousel-navs > div.disabled i{
    color: #ccc;
}
.products-list h3 .carousel-actions .carousel-navs .owl-prev{
    left: 0;
}
.products-list h3 .carousel-actions .carousel-navs .owl-next{
    right: 0;
}
.products-list .product-box{
    margin-bottom: 3rem;
}
.products-list .row-tiny .product-box{
    margin-bottom: 2rem;
}
.products-list .row-extratiny .product-box{
    margin-bottom: 1rem;
}
.products-list .owl-carousel{
    width: auto;
}
.products-list .owl-carousel .owl-item > div[class^="col-"]{
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}



/*=============== PRODUCT BOX ===================*/
.product-box{
    height: 25.5rem;
    padding: 1rem 2rem 0 2rem;
    border: 1px solid #d5d5d5;
    box-shadow: 0px 2px 2px 0px #f2f2f2;
    position: relative;
    transition: all 0.3s;
}
.product-box .product-image{
    width: 100%;
    height: 14.5rem;
    line-height: 1;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d5d5d5;
    display: block;
    margin: 0 auto 0.5rem;
    position: relative;
}
.product-box .product-image img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    display: inline;
}
.product-box .product-image.product-new:after{
    content: "";
    width: 6rem;
    height: 6rem;
    background: url(../img/label_new.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.product-box .product-name{
    display: block;
    font-size: 1.3rem;
    line-height: 1.2;
    color: #000;
    font-weight: 600;
    width: 100%;
    height: 3.2rem;
    overflow: hidden;
}
.product-box .product-size{
    font-size: 1.1rem;
    color: #6e6e6e;
    overflow: hidden;
    height: 1.5rem;
    display: block;
    font-weight: 600;
}
.product-box .product-footer{
    position: relative;
}
.product-box .product-price{
    font-size: 1.8rem;
    font-weight: 700;
    color: #0069b0;
    padding-right: 5rem;
    display: block;
    height: 2.8rem;
    line-height: 2.8rem;
}
.product-box .product-price-promo{
    font-size: 1.2rem;
    color: #d40000;
    text-decoration: line-through;
    position: absolute;
    bottom: -1rem;
    left: 0;
}
.product-box .product-basket{
    float: right;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 1.4rem;
    border-color: #e42524;
    color: #e42524;
    transition: all 0.3s;
}
.product-box .product-basket:hover{
    background-color: #e42524;
    color: #FFF;
}
.product-box.product-added{
    border-color: #e42524;
}
.product-box.product-added .product-image:after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: "\F12C";
    font-family: 'Material Design Icons';
    font-size: 5rem;
    vertical-align: middle;
    color: #6ba04d;
    background: rgba(255, 255, 255, 0.5);
    line-height: 14rem;
    text-shadow: 0px 0px 0.6rem #fff;
}
@media (max-width: 1365px) {
    .product-box .product-name{
        height: 3.3rem;
    }
}
@media (max-width: 991px) {
    .product-box .product-name{
        height: 3rem;
    }
}
@media (max-width: 767px) {
    .product-box .product-image + .popover{
        display: none !important;
    }
}
@media (max-width: 480px) {
    .product-box .product-price-promo{
        font-size: 1.5rem;
    }
}
@media (max-width: 360px) {
   
}



/*=============== PRODUCT PAGE ===================*/
.product-data{
    margin-top: 3rem;
    margin-bottom: 2rem;
}
.product-frame .product-image-frame{
    margin-bottom: 2rem;
}
.product-frame .product-image-frame .product-image-wrapper{
    height: 35rem;
    border: 1px solid #e8e8e8;
    width: 100%;
}
.product-frame .product-image-frame .cycle-slideshow,
.product-frame .product-image-frame .product-image-captions > div,
.product-frame .product-img{
    width: 100%;
    height: 100%;
}
.product-frame .product-img .product-img-inner{
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
}
.product-frame .product-image-frame .product-image{
    padding: 1rem;
}
.product-frame .product-image-frame .product-image-wrapper a{
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}
.product-frame .product-image-frame .product-image-wrapper a img{
    max-width: 100%;
    max-height: 34rem;
    vertical-align: middle;
}
.product-frame .product-image-captions{
    margin-top: -1px;
    position: relative;
}
.product-frame .product-image-captions .product-img{
    width: 25%;
    float: left;
}
.product-frame .product-image-captions .product-img-nav{
    position: absolute;
    height: 32px;
    line-height: 32px;
    width: 32px;
    text-align: center;
    top: 50%;
    margin-top: -16px;
    border-radius: 20px;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    background-color: #e52f23;
    color: #FFF;
}
.product-frame .product-image-captions .product-img-nav.disabled{
    cursor: not-allowed;
    color: #333;
    background-color: #CCC;
}
.product-frame .product-image-captions .product-img-nav.cycle-prev{
    left: -16px;
}
.product-frame .product-image-captions .product-img-nav.cycle-next{
    right: -16px;
}
.product-frame .product-caption-wrapper{
    display: table-cell;
    width: 100%;
    height: 7rem;
    border: 1px solid #e8e8e8;
    padding: 0.35rem;
    cursor: pointer;
    vertical-align: middle;
}
.product-frame .product-image-captions .product-img{
    margin-right: -1px;
}
.product-frame .product-image-captions .product-img.cycle-slide-active .product-caption-wrapper{
    border-color: #c5c5c5;
    z-index: 1;
    position: relative;
}
.product-frame .product-image-captions img{
    max-width: 7rem;
    max-height: 7rem;
}
.product-specs{
    padding-bottom: 2rem;
    border-bottom: 1px solid #d2d2d2;
}
.product-specs h1{
    margin-bottom: 1rem;
}
.product-specs .product-size{
    margin-bottom: 2rem;
}
.product-specs .product-size span{
    font-size: 1.3rem;
}
.product-specs p{
    margin-bottom: 0.5rem;
}
.product-specs .product-price{
    margin: 2rem 0;
}
.product-specs .product-price span{
    font-size: 4rem;
    color: #0069b0;
    font-weight: 600;
}
.product-specs .product-price span.promo-price{
    margin-left: 0.5rem;
    font-size: 2rem;
    color: #d40000;
    text-decoration: line-through;
    vertical-align: top;
}
.product-order label{
    margin: 0;
    line-height: 4rem;
    vertical-align: middle;
}
.product-order .form-control{
    width: 10rem;
    height: 4rem;
    line-height: calc(4rem - 2px);
    display: inline-block;
}
.product-info{
    margin-top: 2rem;
}
.product-description{
    margin-top: 2rem;
    background-color: #eff1f5;
    padding: 1rem 3rem 2rem 3rem;
    color: #000;
}
@media (max-width: 767px) {
    .product-frame{
        margin-bottom: 3rem;
    }
    .product-frame .product-image-frame .product-image-wrapper{
        height: 30rem;
    }
    .product-frame .product-image-frame .product-image-wrapper a img{
        height: 29rem;
    }
    .product-frame .product-image-captions .product-img-nav.cycle-prev{
        left: -10px;
    }
    .product-frame .product-image-captions .product-img-nav.cycle-next {
        right: -10px;
    }
}


/*=============== FOOTER ===================*/
footer{
    margin-bottom: 2rem;
}
footer nav{
    margin: 3rem 0;
    text-align: right;
}
footer nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}
footer nav ul li{
    display: inline-block;
    margin: 0 0.8rem;
}
footer nav ul li a{
    color: #595b62;
    font-weight: bold;
    font-size: 1.3rem;
    display: block;
}
footer nav ul li.active a{
    color: #e42524;
}
footer nav form{
    display: inline-block;
}
footer nav form .form-control{
    border: 2px solid #0069b0;
    font-weight: 600;
}
footer .footer-legal{
   border-top: 1px solid #d2d2d2;
   padding-top: 1.5rem;
   margin-top: 1.5rem;
    color: #a3a3a3;
    font-size: 1.1rem;
    text-align: center;
}
footer div[class^='col-']:nth-child(2){
    text-align: center;
}
footer div[class^='col-']:nth-child(3){
    text-align: right;
}
footer span{
    color: #a3a3a3;
    font-size: 1.1rem;
    display: block;
}
footer img{
    max-width: 100%;
}

@media (max-width: 767px) {
    footer{
        text-align: center;
    }
    footer div[class^='col-']:nth-child(2){
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    footer div[class^='col-']:nth-child(3){
        text-align: center;
    }
    footer nav{
        text-align: center;
        margin: 1.5rem 0;
    }
    footer nav ul{
        margin-bottom: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    footer nav ul li{
        font-size: 1.5rem;
    }
    footer nav form{
        display: block;
    }
}
@media (max-width: 480px) {   
    footer nav ul li a{
        font-size: 1.2rem;
    }
}
@media (max-width: 360px) { 
}


/*=============== MAREK ===================*/
.saved-address{position:relative;}
.address-info{width:100%;position:absolute;top:40%;left:0;}
.added-to-cart{padding:0.5rem 0;width:100%;background:#fff;border:2px solid #e42524;text-align:center;position:relative;bottom:2rem;left:0;}
.facebook{position:relative;top:-2px;left:5px;}