html, body, div, span, applet, object, iframe,
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

*, ::after, ::before {
    box-sizing: border-box;
}
.container {
    width: 100%;
    padding: 0px 30px;
}
/*article, aside, details, figcaption, figure,  hgroup, menu, nav, section {
    display: block;
    width: 100%;
    float: left;
}*/

body {
    line-height: 1;
}

html, body {
    float: left;
    width: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    display: block;
}

ul, ol, ul li, ol li {
    list-style-type: none; /* float:left; */
}

    ol, ol li {
        float: left;
    }

.row::before, .row::after {
    content: '';
    display: table
}

.row::after {
    clear: both
}

.row {
    margin-left: -10px;
    margin-right: -10px;
    clear: both;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.fn {
    float: none;
}

.px {
    padding-left: 10px;
    padding-right: 10px;
    float: left;
}

.py {
    padding-top: 10px;
    padding-bottom: 10px;
    float: left;
}

a, button {
    outline: none;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}


.slick-track {
    display: flex
}

@media screen and (max-width: 768px) {
    div#Top .img-fluid {
        max-width: 185px;
    }
    div#Navigation {
        margin-top: 10px;
    }


    div#Katalog {
        padding: 10px 10px !important;
    }


    #productLeft {
        border: solid 1px #d1cece;
    }

    li.viewFour {
        display: none !important;
    }

    #Contentpage {
        padding: 5px 10px !important;
    }

    .col.productItem.col-3 {
        width: 50%;
        padding-left: 2px;
        padding-right: 2px;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    #productSection .CategoryTop {
        flex-direction: column;
    }

        #productSection .CategoryTop > div {
            width: 100%;
        }

    div#productSection {
        padding-left: 0px;
        padding-right: 0px;
    }
	#headerTop > .container {
    padding: 0;
}
}

@media screen and (max-width: 540px) {

    .col-xs-auto {
        width: auto;
    }

    .col-xs-12 {
        width: 100%;
    }

    s
    .col-xs-11 {
        width: 91.66666667%;
    }

    .col-xs-10 {
        width: 83.33333333%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-8 {
        width: 66.66666667%;
    }

    .col-xs-7 {
        width: 58.33333333%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-5 {
        width: 41.66666667%;
    }

    .col-xs-4 {
        width: 33.33333333%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-2 {
        width: 16.66666667%;
    }

    .col-xs-1 {
        width: 8.33333333%;
    }
}
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .custom-checkbox .custom-control-label {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #eee;
    }

    .custom-checkbox:hover input ~ .custom-control-label {
        background-color: #ccc;
    }

    .custom-checkbox input:checked ~ .custom-control-label {
        background-color: #2d3a53;
    }

    .custom-checkbox .custom-control-label:after {
        content: "";
        position: absolute;
        display: none;
    }

    .custom-checkbox input:checked ~ .custom-control-label:after {
        display: block;
    }

    .custom-checkbox .custom-control-label:after {
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
.single_clarence_area {
    padding: 5px;
}
/*button.slick-arrow {
    height: 50px;
    width: 50px;
    background: #B5B3B1;
    display: flex;
    border-radius: 100%;
    position: absolute;
    z-index: 3;
    cursor: pointer;
    border: none;
    align-items: center;
    justify-content: center;
    font-size: 0;
    top: calc(50% - 25px);
}

    button.slick-arrow.slick-prev {
        left: 40px;
        background: #B5B3B1 url(../Img/Icons/leftSlick.svg) center center no-repeat;
        background-size: 30px;
    }

    button.slick-arrow.slick-next {
        right: 40px;
        background: #B5B3B1 url(../Img/Icons/rightSlick.svg) center center no-repeat;
        background-size: 30px;
    }*/

/*
@media only screen and (max-width:800px) {
    button.slick-arrow {
        width: 30px;
        height: 30px;
    }

        button.slick-arrow.slick-prev {
            left: 0;
        }

        button.slick-arrow.slick-next {
            right: 0;
        }
}*/
