body, html {
    background: #FFF;
    color: #000;
    font-family: 'Montserrat', sans-serif, Arial, Helvetica;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
    max-width: 100%;
}

b, strong {
    font-weight: 600;
}

a {
    color: #58ab27;
    outline: 0 !important;
    text-decoration: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
a:hover {
    color: #58ab27;
    text-decoration: underline;
}
a:active {
    outline: 0 !important;
}
a:before,
a:after {
    content: '';
    -webkit-transition: all  0.25s ease;
    -moz-transition: all  0.25s ease;
    -o-transition: all  0.25s ease;
    transition: all  0.25s ease;
}

p, .p {
    margin: 0;
    padding: 8px 0;
}
ul, ol {
    margin: 0;
    padding: 0;
}

hr {
    background: none;
    border: 0 solid #CCC;
    border-top-width: 1px;
    height: 10px;
    margin: 20px 0 10px;
}

/*
 * Lists
 */
ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}
ol {
    margin-left: 35px;
}
    ol li {
        padding: 1px 0 1px 0;
    }

/*
 * canvas, iframe, img, svg
 */
 canvas, iframe, img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
svg { max-width: 100%; }

/*
 * Table
 */
table {
    margin: 1em auto;
    max-width: 100%;
}
td, th {
    border: 1px solid #EEE;
    padding: 0.5em 1em;
}
th {
    font-weight: bold;
}
thead {
    background-color: #F7F7F7;
}
tfoot {
    background-color: #F7F7F7;
    color: #888;
}
.tableHover tr:hover td {
    background-color: #F7F7F7;
}
.tableFull {
    width: 100%;
}
.tableFixed {
    table-layout: fixed;
}
.tableFixed td {
    padding: 10px 5px;
}


/*
 * Checkbox / Radio
 */

.checkbox, .radio {
    background: #fff;
    border: 1px solid #bcbcbc;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    margin: 0 1px;
    overflow: hidden;
    position: relative;
    top: 3px;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
    width: 20px;
}
    .checkbox input, .radio input{
        margin-left: -22px;
        opacity: 0;
        position: relative;
    }

    label:hover .checkbox, label:hover .radio{
        border-color: #777;
        -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
           -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
                box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
    }

    .checkbox:after {
        background: none;
        border-bottom: 2px solid rgba(255, 255, 255, 1);
        border-right: 2px solid rgba(255, 255, 255, 1);
        bottom: 9px;
        content: "";
        display: block;
        height: 0;
        opacity: 0;
        position: absolute;
        left: 2px;
        -webkit-transform-origin: left bottom;
           -moz-transform-origin: left bottom;
            -ms-transform-origin: left bottom;
             -o-transform-origin: left bottom;
                transform-origin: left bottom;
            -webkit-transform: rotate(45deg);
               -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                 -o-transform: rotate(45deg);
                    transform: rotate(45deg);
        
        -webkit-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
           -moz-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
             -o-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
                transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
        width: 0px;
    }
    .checkbox:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #282828;
        border-radius: 100%;
        -webkit-border-radius: 100%;
        width: 30px;
        margin: -15px 0 0 -15px;
        height: 30px;
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all 0.3s ease-out;
       -moz-transition: all 0.3s ease-out;
         -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
    }    
    .checkbox.active:before {
        content: "";
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    }
    
    .checkbox.active, .radio.active  {
        border-color: #000;
    }

        .checkbox.active:after {
            -webkit-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
               -moz-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
                 -o-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
                    transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
            /*border-color: #000;*/
            height: 12px;
            opacity: 1;
            width: 7px;
        }
        .checkbox {
            -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2) inset;
               -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2) inset;
                    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2) inset;
        }
        .checkbox.active {
            -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.5) inset;
               -moz-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.5) inset;
                    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.5) inset;
            background: #F5F5F5;
        }

     .radio {
        -webkit-border-radius: 100%;
           -moz-border-radius: 100%;
                border-radius: 100%;
    }
        .radio.active {
            background: #282828;
            border: 5px solid #fff;
            -webkit-box-shadow: 0px 0px 1px 1px #bcbcbc;
               -moz-box-shadow: 0px 0px 1px 1px #bcbcbc;
                    box-shadow: 0px 0px 1px 1px #bcbcbc;
        }
        label:hover .radio.active {
            background: #777;
            border-color: #fff;
        }


/*
 * Input
 */
.input {
    background: #fff;
    border: 1px solid rgba(255,255,255,0);
    border-bottom-color: #d2d2d2;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    max-width: 100%;
    padding: 6px 9px;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    vertical-align: middle;
    width: 220px;
}
    .input--long {
        width: 350px;
    }
    .input--full {
        width: 100%;
    }
    .input--number {
        text-align: center;
        width: 55px;
    }
    .input--short {
        text-align: center;
        width: 70px;
    }
    .input--textarea {
        height: 90px;
        line-height: 1.2em;
        max-width: 380px;
        vertical-align: top;
        width: 100%;
    }
    .input--full {
        max-width: none;
    }
    .input--textarea--medium {
        height: 200px;
    }
    .input--textarea--large {
        height: 400px;
    }
    .input:focus {
        border-bottom-color: #58ab27;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    .input--invalid {
        border-bottom-color: #D92E2E;
    }

/*
 * Button
 */
.button {
    background: #58ab27;
    border: 1px solid #58ab27;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    margin: 0;
    min-width: 120px;
    overflow: hidden;
    padding: 10px 15px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    vertical-align: middle;
    z-index: 3;
}
    .button:hover, a:hover .button {
        color: #FFF;
        text-decoration: none;
    }
    .button:active {
        -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
    }
    .button--large {
        font-size: 14px;
        padding: 13px 18px 12px;
    }
    .button--biger {
        font-size: 18px;
        margin-top: 15px;
        padding: 16px 10px;
    }
    .button--full {
        width: 100%;
    }
.button:before {
    background: rgba(255,255,255,0.1);
    bottom: 0;
    content: '';
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 0;
    z-index: -1;
}
    .button:hover:before, a:hover .button:before {
        width: 100%;
    }
    

/*
 * Select
 */
 select, select.input, .select, .fake-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url("../images/select.png") no-repeat scroll right center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #58ab27;
    font-size: 14px;
    font-weight: bold;
    min-width: 150px;
    outline: medium none !important;
    padding: 4px 25px 4px 5px;
    text-align: left;
    text-overflow: "";
}
select::-ms-expand { 
    display: none;
}
select:disabled {
    background-color: #F0F0F0;
}    
    .select--full {
        width: 98%;
    }

.file {
    margin: 20px 0 0 15px;
    padding: 0;
    position: relative;
}
.input-file {
    color: #58ab27;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    margin: 0 0 5px;
    overflow: hidden;
    padding: 5px 0 5px 35px;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
    .input-file:hover {
        color: #000;
    }
.input-file input {
    opacity: 0;
    left: 0;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}
.input-file .icon {
    bottom: 0;
    font-size: 25px;
    height: 25px;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: 0;
}
.input-file-text {
    color: #ababab;
    display: block;
    font-size: 10px;
    font-weight: normal;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    padding: 0 15px 0 35px;
    word-break: break-all;
}
.input-file-remove {
    bottom: 0;
    color: #333;
    font-size: 10px;
    height: 10px;
    max-width: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    text-decoration: none !important;
}
.input-file-remove.active {
    opacity: 1;
    max-width: 30px;
}
   

/*
 * Form
 */
.form {
    background: #FFF;
    -webkit-box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.1);
    margin: 15px auto;
    max-width: 100%;
    padding: 30px 30px;
    position: relative;
}

.form .grp {
    color: #58ab27;
    font-size: 14px;
    font-weight: norma;
    min-height: 46px;
    padding: 13px 0;
    text-transform: uppercase;
}
    .form .grp-fake {}

/* fill */
.fill-row {
    margin-bottom: 10px;
}
.fill-name {
    bottom: 9px;
    color: #aaa;
    font-size: 10px;
    font-weight: 300;
    left: 20px;
    line-height: 1;
    overflow: hidden;
    padding: 0 20px 0 0;
    pointer-events: none;
    position: absolute;
    text-align: left;
    text-transform: uppercase;
    top: 0;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 1;
}
    .fill-s .fill-name {
        width: 33.33%;
    }
    .fill-m .fill-name {
        width: 50%;
    }
    .fill-l .fill-name {
        width: 66.66%;
    }
    .fill-e .fill-name {
        bottom: 0;
        color: #1b1b1b;
        font-size: 12px;
        width: 50%;
    }
    .fill-name.fill-focus, .no-js .fill-name {}
.fill-name > span {
    display: table;
    height: 100%;
    width: 100%;
}
.fill-name > span > span {
    display: table-cell;
    vertical-align: bottom;
}
    .fill-e .fill-name > span > span {
        vertical-align: middle;
    }
.fill-txt {
    display: block;
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    text-transform: uppercase;
}

.fill .input,
.fill .button,
.fill .input--textarea {
    padding: 6px 0;
    text-align: center;
    width: 100%;
}
    .fill .select {
        display: block;
        margin: 0 0 0 auto;
        padding: 7px 25px 7px 0;
        text-align: left;
        width: 50%;
    }
    .fill-s .input {
        padding-left: 33.33%;
    }
    .fill-m .input {
        padding-left: 50%;
    }
    .fill-l .input {
        padding-left: 66.66%;
    }

.label,
.formActions {
    clear: both;
    display: block;
    padding: 3px 0 3px 120px;
}
    .label-name {
        float: left;
        font-size: 13px;
        margin-left: -120px;
        padding-right: 5px;
        padding-top: 5px;
        text-align: right;
        width: 110px;
    }
    .label-value {
        display: inline-block;
        padding: 5px 0 0 0;
    }
    .label-help {
        color: #aaa;
        display: block;
        font-size: 11px;
        line-height: 1.2em;
    }
    .label-help--after {
        display: inline-block;
        vertical-align: middle;
    }
    .label--invalid {
        color: #D92E2E;
    }
    .label--invalid .input {
        border-bottom-color: #D92E2E;
    }

    .label--big {
        padding-left: 210px;
    }
        .label--big .label-name {
            margin-left: -210px;
            width: 200px;
        }

    .label--small {
        padding-left: 80px;
    }
        .label--small .label-name {
            margin-left: -80px;
            width: 70px;
        }

.formActions { 
    margin: 1em 0;
    padding-bottom: 15px;
    padding-top: 15px;
}

    .formActions--center {
        padding-left: 0;
        text-align: center;
    }
    .formActions--sides {
        overflow: hidden;
        padding: 15px;
    }
        .formActions--sides-left {
            float: left;
        }
        .formActions--sides-right {
            float: right;
        }

.form-actions {
    padding: 25px 0 10px;
}

/*
 * Loading
 */
.loading {
        position: relative;
}
    .loading--full {
        background-color: #FFF;
        bottom: 0;
        left: 0;
        filter: alpha(opacity = 80);
        opacity: 0.8;
        position: absolute;
        right: 0;
        top: 0;
    }
    .loading-text {
        position: absolute;
        text-align: center;
        top: 51%;
        width: 100%;
    }
.loading:after {
    -webkit-animation: spin 0.5s cubic-bezier(.61,.28,.37,.82) infinite;
       -moz-animation: spin 0.5s cubic-bezier(.61,.28,.37,.82) infinite;
         -o-animation: spin 0.5s cubic-bezier(.61,.28,.37,.82) infinite;
            animation: spin 0.5s cubic-bezier(.61,.28,.37,.82) infinite;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #282828;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    content: "";
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 1;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@-o-keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.body-info {
    background-color: #FFF;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
    color: #282828;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
    filter: alpha(opacity = 0);
    opacity: 0;
    padding: 20px 20px;
    position: fixed;
    right: 25px;
    top: -25%;
    -webkit-transition: 1s;
       -moz-transition: 1s;
         -o-transition: 1s;
            transition: 1s;
    z-index: 99999;
}
.body-info.visible {
    filter: alpha(opacity = 100);
    opacity: 1;
    top: 25px;
}
.body-info > span { text-transform: uppercase; }
    .body-info > .lower { display: block; margin: -5px 0; }
.body-info > span + div { padding: 15px 0 0; }
.body-info * { color: #282828; }
.body-info .button,
.body-info .button * { color: #FFF; }
.body-info .button:hover,
.body-info .button:hover * { color: #282828; }

/*
 * Media element
 */
.media {
    display: block;
    margin: .8em 0;
    overflow: hidden;
}
    .media-image {
        float: left;
        margin-right: .8em;
    }
    .media-content {
        margin: 0;
        overflow: hidden;
    }
    .media--triple,
    .media--double {
        display: inline-block;
        margin: .8em .4%;
        vertical-align: top;
        width: 48.8%;
    }
    .media--triple {
        width: 32%;
    }

.media2 {
    display: table;
    margin: .8em 0;
}
    .media2-image,
    .media2-content {
        display: table-cell;
        vertical-align: middle;
    }
    .media2-image {
        padding: 0 .6em 0 0;
    }
    .media2-image--after {
        padding: 0 0.6em;
    }
    .media2--double {
        display: inline-block;
        margin: .4em .4% .8em;
        vertical-align: top;
        width: 48.9%;
    }
    .media2--inline {
        display: inline-block;
        margin: .8em .3em;
        vertical-align: middle;
    }

/*
 * Table Grid
 */
.grid {
    display: table;
    width: 100%;
}
    .grid--fixed {
        table-layout: fixed;
    }
    .grid-cell {
        display: table-cell;
        vertical-align: middle;
    }
    .grid-cell--tabloid {
        width: 1px;
    }

/*
 * Dropdown
 */
.dropdown {
    position: relative;
}
    .dropdown-content {
        display: none;
        left: 0;
        position: absolute;
        top: 100%;
        z-index: 500;
    }
    .nav ul li:last-child .dropdown-content {
        left: auto;
        right: 0;
    }


/*
 * Hint
 */
.hint {
    color: #999;
    font-size: .8em;
    line-height: 1.3em;
}

/*
 * Container
 */
.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 10px;
    position: relative;
}

/*
 * Left
 */
.leftBlock {
    display: table-cell;
    -webkit-flex: 3; /* Safari 6.1+ */
       -moz-flex: 3; /* FF <= 18 */ 
        -ms-flex: 3; /* IE 10 */
            flex: 3;
    min-width: 200px;
    padding-right: 20px;
    vertical-align: top;
    width: 200px;
    position: relative;
}

.scrollBody {
    /*padding: 5px;*/
    /*border: 1px solid #ccc;*/
    /*background: #f1f1f1;*/
    /*width: 200px;*/
    left: 0;
    top: 0;
    position: relative;
}
.scroll .scrollBody {
    position: fixed;
    top: 0;
    /*background: red;*/
    max-height: 100% !important;
    /*overflow: auto;*/
    overflow: hidden;
}
.scrollbottom {
    position: relative;
}

.scrollbottom .scrollBody {

    /*height: auto !important;*/
    position: absolute !important;
}



/*
 * Right
 */
.rightBlock {
    display: table-cell;
    min-width: 200px;
    padding-left: 20px;
    vertical-align: top;
    width: 200px;
}

/*
 * Content
 */
.content {
    display: block;
    vertical-align: top;

    overflow-wrap: break-word;
    word-wrap: break-word;

    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;



}
    .content img {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        max-width: 100%;
    }
    .content-noimg img {
        -webkit-box-sizing: content-box;
           -moz-box-sizing: content-box;
                box-sizing: content-box;
        max-width: none;
    }
    .content ul, .content ol {
        margin: .8em 0 15px 22px;
    }
    .content ul {
        list-style: square;
    }
        .content ul li {
            background: no-repeat 0 0.65em url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFAQMAAAC3obSmAAAABGdBTUEAALGPC/xhBQAAAANQTFRFfHx8IKinAwAAAAtJREFUCNdjYIABAAAKAAHn+Nr6AAAAAElFTkSuQmCC);
            padding: 1px 0 1px 12px;
        }

    .content .dropdown-content {
        background: #FFF;
        border: 1px solid #E6E6E6;
        -webkit-border-radius: 4px;
           -moz-border-radius: 4px;
                border-radius: 4px;
        -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
           -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        font-size: 14px;
        min-width: 140px;
        padding: 5px 10px;
    }

/*
 * Breadcrumbs
 */
.breadcrumbs {
    color: #777;
    font-size: 12px;
    margin: -17px 0 1em;
}
    .breadcrumbs a,
    .breadcrumbs b,
    .breadcrumbs span {
        color: inherit;
        display: inline-block;
        text-decoration: none;
        vertical-align: middle;
    }
    .breadcrumbs a:hover {
        text-decoration: underline;
    }

/*
 * Slider
 */
 .slider {
    overflow: hidden;
    position: relative;
    width: 100%; 
}
.swiper-slide {
   background: none;
    cursor: pointer;
    text-align: center;
}
.swiper-button-next, .swiper-button-prev {
     background: none;
     border: 0;
     color: #cecece;
     font-size: 34px;
     height: 40px;
     line-height: 40px;
     margin: -20px  auto 0;
     opacity: 0.5;
     overflow: hidden;
     text-align: center;
     -webkit-transition: all 0.25s ease;
     -moz-transition: all 0.25s ease;
     -o-transition: all 0.25s ease;
     transition: all 0.25s ease;
     width: 40px;
}
    .swiper-button-next:hover, .swiper-button-prev:hover { 
        opacity: 1;
    }
 .swiper-button-next .icon, .swiper-button-prev .icon {
    line-height: 40px;
}
 .swiper-button-prev {
     left: 0;
     right: auto;
    }
    .slider:hover .swiper-button-prev {}
.swiper-button-next {
    left: auto;
    right: 0;
}
     .slider:hover .swiper-button-next {}
 .swiper-pagination {
     bottom: 7px;
     display: table;
     font-size: 0.00001px;
     left: 0;
     margin: 0 auto;
     opacity: 1;
     right: 0;
     -webkit-transition: all 0.25s ease;
     -moz-transition: all 0.25s ease;
     -o-transition: all 0.25s ease;
     transition: all 0.25s ease;
     width: auto;
}
    .swiper-pagination:hover {
        opacity: 1;
    }
    .slider:hover .swiper-pagination {
        bottom: 7px;
    }
.swiper-pagination:before {
    background: none;
    border: 0;
    bottom: -15px;
    content: '';
    left: -15px;
    position: absolute;
    right: -15px;
    top: -15px;
}
.swiper-pagination-bullet {
     background: #e5e5e5;
     border: 2px solid #e5e5e5;
     height: 9px;
     margin: 0 7px;
     opacity: 1;
     position: relative;
     -webkit-transition: all 0.25s ease;
     -moz-transition: all 0.25s ease;
     -o-transition: all 0.25s ease;
     transition: all 0.25s ease;
     width: 9px;
}
    .swiper-pagination:hover .swiper-pagination-bullet {
        opacity: 1;
     }
    .swiper-pagination .swiper-pagination-bullet:hover {
        background: #58ab27;
        border-color: #58ab27;
        opacity: 1;
    }
    .swiper-pagination-bullet-active {
        background: #58ab27;
        border-color: #58ab27;
}
 .swiper-slides { position: relative; }
 .swiper-thumbs { position: relative; }

 .slider-banner {
    background: #FFF url('../images/slider-banner.jpg') no-repeat center;
    background-size: cover;
    position: relative;
 }
 .slider-banner > img {
    left: 0; 
    margin: 0 auto;
    max-width: 30%;
    position: absolute;
    right: 0;
    top: 40px;
    z-index: 5;
 }
 .slider-banner > span {
     color: #919191;
     display: block;
     font-size: 10px;
     font-weight: 300;
     left: 0;
     letter-spacing: 0.2em;
     line-height: 1;
     position: absolute;
     right: 0;
     text-align: center;
     text-transform: uppercase;
     top: 110px;
     z-index: 5;
 }
 .slider-banner .swiper-slides {
    margin: 0 auto;
    /*max-width: 1200px;*/
    position: relative;
 }
 .slider-banner .swiper-slide {
    cursor: auto;
    min-height: calc(100vh);
    padding: 0; /* 673/1600 => 42.06%  */
}
.slider-banner .swiper-slide img {
    bottom: 10%;
    /*left: 0;*/
    margin: 0 auto;
    max-width: 33%; /* 45.92% */
    position: absolute;
    right: 48%; /* 41.66% */
}
.slider-banner .con {
    display: block;
    left: 60%; /* 69% */
    position: absolute;
    text-align: left;
    top: 60%; /* 50% */
}
.slider-banner .txt {
    display: block;
    line-height: 1;
    padding: 0;
    position: relative;
    z-index: 1;
}
.slider-banner .txt div {
    color: #FFF;
    display: block;
    font-size: 60px;
    font-weight: 500;
    padding: 0;
    opacity: 0;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
    .slider-banner .txt div + div + div {
        font-size: 41px;
        font-weight: 300;
    }
    .slider-banner .swiper-slide-active .txt div {
        opacity: 1;
    }
.slider-banner .swiper-slide a {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.slider-banner .swiper-button-prev, 
.slider-banner:hover .swiper-button-prev {
    left:  50px;
}
.slider-banner .swiper-button-next, 
.slider-banner:hover .swiper-button-next {
    right: 50px;
}
.slider-banner .swiper-pagination {
    display: none;
}
.slider-banner:hover .swiper-pagination {}
.slider-banner > a {
    bottom: 25px;
    color: #FFF;
    display: none;
    font-size: 10px;
    font-weight: normal;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    width: 100px;
    z-index: 3;
}

.slider-gallery {}
.slider-gallery .swiper-slides {
    padding: 0;
}
.slider-gallery .swiper-slide {
    display: inline-block;
    height: auto;
    padding: 0;
    text-align: center;
    vertical-align: middle; 
    width: 25%;
}

.slider-brands {
    overflow: visible;
    padding: 40px 0 80px;
}
.slider-brands .swiper-slides {
    padding: 0;
}
.slider-brands .swiper-container {
    height: 60px;
    overflow: hidden;
}
.slider-brands .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    will-change: transform;
}
.slider-brands .swiper-slide {
    display: inline-block;
    height: auto;
    padding: 0 20px;
    text-align: center;
    vertical-align: middle; 
    width: auto;
}
.slider-brands .swiper-slide a {
    display: block;
    font-size: 0.000001px;
    height: 100%;;
    margin: auto 0;
    text-decoration: none;
}
.slider-brands .swiper-slide a:before {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.slider-brands .swiper-slide img {
    display: inline-block;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    vertical-align: middle;
}
    .slider-brands .swiper-slide:hover img {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
    }
.slider-brands .swiper-button-next, 
.slider-brands .swiper-button-prev { 
    color: #58ab27;
}
    .slider-brands .swiper-button-next, 
    .slider-brands:hover .swiper-button-next {
        right: -40px;
    }
    .slider-brands .swiper-button-prev, 
    .slider-brands:hover .swiper-button-prev {
        left: -40px;
    }
.slider-brands .swiper-pagination, 
.slider-brands:hover .swiper-pagination {
    bottom: -60px;
}


/*
 * Pagination
 */
.pagination {
    text-align: center;
}
    .pagination-info {
        color: #CCC;
        padding-bottom: 0;
    }
    .pagination-element {
        /*border: 1px solid #DDD;*/
        -webkit-border-radius: 3px;
           -moz-border-radius: 3px;
                border-radius: 3px;
        color: #777;
        display: inline-block;
        margin: 0 -1px 0;
        padding: 3px 10px;
        text-decoration: none;
    }
    .pagination-element--left,
    .pagination-element--right {
        background-color: #EEE;
        padding: 3px 15px;
    }
    .pagination-element:hover {
        background-color: #DDD;
        color: #444;
        position: relative;
        text-decoration: none;
    }
    .pagination-element--active,
    .pagination-element--active:hover {
        background: #666;
        color: #FFF;
        font-weight: bold;
    }
    .pagination-element--disabled,
    .pagination-element--disabled:hover {
        background-color: transparent;
        color: #CCC;
        font-weight: normal;
    }

/*
 * Items
 */
.item {
    background: none;
    display: inline-block;
    margin: 0;
    padding: 5px 0 20px;
    text-align: center;
    vertical-align: top;
}
    .item--2 {
        width: 49.5%;
    }
    .item--3 {
        width: 32.5%;
    }
    .item--4 {
        width: 24.5%;
    }
    .item--5 {
        width: 20%;
    }

    .item-image {
        display: block;
        height: 140px;
        line-height: 140px;
    }
        .item-image img {
            vertical-align: middle;
        }

    .item-name {
        display: block;
        font-weight: normal;
        line-height: 1.2em;
        margin: 0 auto;
        max-width: 70%;
        min-height: 2.4em; /* 2 x line-height */
    }

/*
 * Box
 */
.box {
    background-color: #F5F5F5;
    border: 1px solid #CCC;
    color: #666;
    line-height: 1.4em;
    margin: 0.9em 0;
    padding: 0.7em 1em;
    position: relative;
    text-align: left;
}
    .box-close {
        background-color: #F5F5F5;
        border: 1px solid #CCC;
        -webkit-border-radius: 100%;
           -moz-border-radius: 100%;
                border-radius: 100%;
        -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
           -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
                box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
        color: #666;
        cursor: pointer;
        font-size: 12px;
        height: 16px;
        line-height: 16px;
        position: absolute;
        right: -6px;
        text-align: center;
        top: -6px;
        width: 16px;
    }
    .box-close:hover {
        font-weight: bold;
        height: 18px;
        line-height: 18px;
        right: -7px;
        top: -7px;
        width: 18px;
    }

    .box--ok,
    .box--ok .box-close {
        background: #F7FFED;
        border-color: #78CA52;
        color: #4DAB01;
    }
    .box--error,
    .box--error .box-close {
        background: #FFF0F0;
        border-color: #FF9494;
        color: #D92A2A;
    }
    .box--info,
    .box--info .box-close {
        background: #E9F1FF;
        border-color: #81AEFF;
        color: #2F5DB3;
    }
    .box--alert,
    .box--alert .box-close {
        background: #FFFFDE;
        border-color: #E1D042;
        color: #A99B27;
    }


    
/*
 * Produkty
 */



.productFilters {
    font-size: 14px;
    text-transform: uppercase;
    margin: 40px 0 30px;
}

.dubleColums {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.dubleColums-item {
    width: 50%;
    display: table-cell;
}
.dubleColums-item-mini {
    width: 20%;
}




 .productWrapper {
    text-align: justify;
    font-size: 0;
    margin: 20px -10px;
}
    .productWrapper:after {
        content: '';
        display: inline-block;
        width: 31%;
        width: calc(33.3% - 20px);
        line-height: 1.4;
    }

    .product {
        background: #F3F3F3;
        font-size: 16px;
        -webkit-box-shadow: 0px 0px 14px -10px rgba(50, 50, 50, 0);
           -moz-box-shadow: 0px 0px 14px -10px rgba(50, 50, 50, 0);
                box-shadow: 0px 0px 14px -10px rgba(50, 50, 50, 0);
        display: inline-block;
        margin: 0 0 20px;

        margin: 10px;
        overflow: hidden;
        padding: 0;
        position: relative;
        text-align: left;
        -webkit-transition: all .2s ease;
           -moz-transition: all .2s ease;
             -o-transition: all .2s ease;
                transition: all .2s ease;
        vertical-align: top;
        /*width: 23.7%;*/
        width: 31%;
        width: calc(33.3% - 20px);
    }



    @supports (display: grid) {
        .productWrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 20px;
            margin: 20px 0;
        }
        .product {
            width: auto;
            margin: 0;
        }
    }


    .product:hover {
        background: #FFF;
        -webkit-box-shadow: 0 5px 51px rgba(0,0,0,0.21);
           -moz-box-shadow: 0 5px 51px rgba(0,0,0,0.21);
                box-shadow: 0 5px 51px rgba(0,0,0,0.21);
    }

    .product-hide {
        display: inline-block;
        position: relative;
        width: 31%;
        width: calc(33.3% - 20px);
        margin: 10px;
    }

        .product a {
            color: #777777;
        }
        .product:hover {
            color: #f99595;
            text-decoration: none;
        }

        .product-image {
            display: block;
            overflow: hidden;
            position: relative;
            text-align: center;
            vertical-align: top;
            width: 100%;
            height: 270px;
        }
        .product-image img {
            max-width: 100%;
            max-height: 100%;
            position: absolute;
            left: 0;
            right: 0;
            margin: auto;
            top: 0;
            bottom: 0;
        }
        .product-image img + img {
        -webkit-transition: all .3s ease;
           -moz-transition: all .3s ease;
             -o-transition: all .3s ease;
                transition: all .3s ease;
            opacity: 0;
        -webkit-box-shadow: 0px 0px 50px -50px rgba(255,255,255,1);
        -moz-box-shadow: 0px 0px 50px -50px rgba(255,255,255,1);
        box-shadow: 0px 0px 50px -50px rgba(255,255,255,1);
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);



        }
        .product:hover .product-image img + img {
            opacity: 1;       
     -webkit-box-shadow: 0px 0px 80px 100px rgba(255,255,255,1);
        -moz-box-shadow: 0px 0px 80px 100px rgba(255,255,255,1);
             box-shadow: 0px 0px 80px 100px rgba(255,255,255,1);
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
        }
        .product-info {
            padding: 10px 0;
            bottom: 0;
            left: 0;
            width: 100%;
        }

            .product-name {
                line-height: 1.1em;
                margin: 0;
                text-align: center;
                text-transform: uppercase;
            }
            .product-price {
                color: #5e5e5e;
                display: block;
                font-size: 26px;
                text-align: center;
                width: 100%;
            }
.addToCart-qty-input {
    padding: 9px 12px;
}

.addToCart-qty-plus, .addToCart-qty-minus {
    background: #5e5e5e none repeat scroll 0 0;
    -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
            border-radius: 30px;
    color: #ffffff !important;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    height: 20px;
    line-height: 20px;
    margin: 5px 7px;
    text-align: center;
    vertical-align: middle;
    width: 20px;
}
.addToCart-qty-plus:hover, .addToCart-qty-minus:hover {
    background: #ff0000 none repeat scroll 0 0;
    color: #ffffff;
    text-decoration: none;
}

/*
 * galeria
 */
.galeria-item {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    max-width: 100%;
}
.galeria-item img {
    max-width: 100%;
}


/*
 * Top
 */
.top {
    background: #FFF;
    margin: 0;
    padding: 62px 0 0; /* 0 0 62px */
    position: relative;
    z-index: 11;
}
.top .t-1 {
    background: #FFF;
    bottom: auto; /*0*/
    -webkit-box-shadow: 0px 5px 21px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow:  0px 5px 21px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 5px 21px 0px rgba(0, 0, 0, 0.16);
    left: 0;
    position: fixed; /*absolute*/
    right: 0;
    top: 0; /* auto */
    z-index: 11;
}
    .top .scroll + .t-1 {
        bottom: auto;
        position: fixed;
        top: 0;
    }
.top .t-1 .container {
    max-width: 100%;
    padding: 0 25px;
}

/*
 * Logo
 */
 .logo {
    display: block;
    font-size: 14px;
    margin: 0;
    padding: 0;
}
    .logo-1 {
        left: 10px;
        padding: 19px 0; 
        position: absolute;
        top: 0;
        width: 244px;
    }
.logo a {
    display: block;
}
.logo img {
    display: block;
    margin: auto;
}

/*
 * Nav
 */
.nav {
    background: none;
    border: 0;
    clear: both;
    margin: 0;
    padding: 0;
}
.nav ul {
    font-size: 0.000001px;
    margin: 0;
    text-align: center;
}
.nav li {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
}
.nav a {
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    padding: 21px 25px;
    position: relative;
    text-decoration: none;
    text-transform: none;
    z-index: 3;
}
    .nav a:hover {
        color: #58ab27;
    }
    .nav a.active,
    .nav a.active:hover {
        background: #58ab27;
        color: #FFF;
    }

.nav .n-1 {
    display: block;
    margin: 0 75px 0 250px;
    position: relative;
    text-align: right;
}

/*Menu na mobilke*/
.c-hamburger {
    display: none;
}
.c-hamburger-bg {
    display: none;
}

@media only screen and (max-width: 1200px) {

    .nofon {
        display: none;
    }
    .c-hamburger-bg {
        background: rgba(0,0,0,0.3);
        display: block;
        height: 120%;
        left: 0;
        opacity: 0;
        position: fixed;
        right: 0;
        top: 0;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        visibility: hidden;
        will-change: opacity;
        z-index: 1000;
    }   

    .c-hamburger {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        -webkit-border-radius: none;
        -moz-border-radius: none;
        border-radius: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        cursor: pointer;
        display: block;
        font-size: 0;
        height: 50px;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: fixed;
        right: 6px;
        text-indent: -9999px;
        top: 6px;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        width: 50px;
        will-change: transform;
        z-index: 1010;
    }
 	.c-hamburger.active {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px); 
    }
    .c-hamburger.active + .c-hamburger-bg {
        opacity: 1;
        visibility: visible;
    }

    .c-hamburger:focus {
        outline: none;
    }
    .c-hamburger span {
        background: #FFF;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        display: block;
        height: 4px;
        left: 9px;
        position: absolute;        
        right: 9px;
        top: 23px;
        will-change: background;
    }
    .c-hamburger span::before,
    .c-hamburger span::after {
        background: #fff;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        content: '';
        display: block;
        height: 4px;
        left: 0;
        position: absolute;
        width: 100%;
        will-change: transform;
    }

    .c-hamburger span::before {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    .c-hamburger span::after {
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
    .c-hamburger--htx {
        background: none;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }

    .c-hamburger--htx span {
        /*transition: background 0s 0.5s;*/ 
        -webkit-transition-duration: 0.5s, 0.5s;
        -moz-transition-duration: 0.5s, 0.5s;
        -o-transition-duration: 0.5s, 0.5s;
        transition-duration: 0.5s, 0.5s;
    }
    .c-hamburger--htx span::before,
    .c-hamburger--htx span::after {
        /*transition-delay: 0.5s, 0s;*/
        -webkit-transition-duration: 0.5s, 0.5s;
        -moz-transition-duration: 0.5s, 0.5s;
        -o-transition-duration: 0.5s, 0.5s;
        transition-duration: 0.5s, 0.5s;
    }
    .c-hamburger--htx span::before {
        -webkit-transition-property: top, transform;
        -moz-transition-property: top, transform;
        -o-transition-property: top, transform;
        transition-property: top, transform;
    }
    .c-hamburger--htx span::after {
        -webkit-transition-property: bottom, transform;
        -moz-transition-property: bottom, transform;
        -o-transition-property: bottom, transform;
        transition-property: bottom, transform;
    }
    /* active state, i.e. menu open */
    .c-hamburger--htx.active {}
    .c-hamburger--htx.active span {
        background: rgba(255, 255, 255, 0) !important;
        /*opacity: 0;*/
    }
    .c-hamburger--htx.active span::before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .c-hamburger--htx.active span::after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .c-hamburger--htx.active span::before,
    .c-hamburger--htx.active span::after {
        background: #58ab27;
    }
    .nav {
        background: #fff;
        bottom: 0;
        -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        clear: both;
        display: block;
        float: none;
        height: 100%;
        will-change: transform;
        -webkit-transform: translateX(300px);
        -moz-transform: translateX(300px);
        -ms-transform: translateX(300px);
        -o-transform: translateX(300px);
        transform: translateX(300px); 
        margin: 0;
        max-width: 100%;
        padding: 0;
        position: fixed;
        right: 0;
        top: 0;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        visibility: hidden;
        width: 300px !important;
        z-index: 1005;
    }
    .nav.active {
        overflow-y: auto;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px); 
        visibility: visible;
    }
    .table {
        display: block;
        width: 100%;
    }
    .table li {
        display: inline-block;
        float: left;
        width: 100%;
    }
    .nav {
        display: block;
        width: 100%;
    }
}

.languages {
    padding: 0 0 0 5px;
    position: absolute;
    right: 0;
    top: 0;
}
.languages:before {
    border-left: 1px solid #58ab27;
    bottom: 0;
    content: '';
    height: 20px;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: 0;
}
.languages a {
    color: #58ab27;
}
    .languages a:hover {
        background: none;
        color: #000;
    }

/*
 * Search
 */
.search {
    border: 0;
    float: right;
    min-width: 300px;
    padding: 20px 0;
    text-align: right;
    white-space: nowrap;
}
    .search legend {
        display: none;
    }


/*
 * Categories
 */

.categories {
    display: block;
}
    .categories a {
        display: block;
        font-size: 14px;
        padding: 2px 10px;
        text-decoration: none;
    }
    .categories ul {
        border-left: 1px solid #EEE;
        display: none;
        margin-left: 15px;
        padding: 0 0 5px 5px;
    }
    .categories ul a {
        font-size: 13px;
    }
    .categories .open > a {
        font-weight: bold;
    }
    .categories .active > a {
        background-color: #EEE;
        font-weight: bold;
    }

/*
 * Main
 */
.main {
    clear: both;
    display: block;
    min-height: 500px;
    min-height: calc(100vh - 0px);
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}
b.vl {
    border-right: 1px solid #58ab27;
    height: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    /*-webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;*/
    width: 0;
}

.section {
    padding: 10px 0;
    position: relative;
}

.full {
    display: table;
    height: calc(100vh - 62px);
    margin: auto;
    table-layout: fixed;
    width: 100%;
}
.full > div {
    display: table-cell;
    vertical-align: middle;
}

.bg-w {
    background: #FFF;
    padding: 25px 0;
}

.vp {
    opacity: 0;
    -webkit-transition: all 0s ease 1s;
    -moz-transition: all 0s ease 1s;
    -o-transition: all 0s ease 1s;
    transition: all 0s ease 1s;
}
    .viewport.vp,
    .viewport .vp {
        opacity: 1;
        -webkit-transition: all 1s ease 0s;
        -moz-transition: all 1s ease 0s;
        -o-transition: all 1s ease 0s;
        transition: all 1s ease 0s;
    }

.section .back {
    color: #919191;
    font-size: 10px;
    font-weight: 300;
    left: 10px;
    letter-spacing: 0.2em;
    position: absolute;
    text-decoration: none;
    text-transform: uppercase;
    top: 17px;
}
    .section .back:hover {
        color: #000;
    }

.section .header {
    color: #58ab27;
    font-size: 14px;
    font-weight: normal;
    padding: 15px 0;
    text-align: center;
    text-transform: uppercase;
}
.section .header u {
    display: inline-block;
    padding: 0 5px 15px;
    position: relative;
    text-decoration: none;
}
.section .header u:after {
    border-bottom: 1px solid #c9c9c9;
    bottom: 0;
    content: '';
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 80px;
}

.section.general {}
.general .con {
    padding: 0 0 25px;
}

.section.about {}
.about .con {
    padding: 25px 0 0;
}
.about .con .ib-6:first-child {
    padding-right: 30px;
    text-align: right;
}

.section.offer {
    text-align: center;
}
.offer .con .ib-4 {
    position: relative;
    text-align: left;
    vertical-align: middle;
}
.offer .con .ib-4 img {
    bottom: -25px;
    left: 10px;
    margin: auto 0;
    max-width: 80px;
    position: absolute;
    top: -25px;
}
.offer .con .ib-4 b {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    padding: 50px 0 50px 100px;
}
.offer .con .ibs + p {
    padding: 20px 0 0;
}
.offer .con .ibs + p + p {
    padding: 0 0 10px;
}

.section.banner {
    padding: 0;
    position: relative;
    text-align: center;
}
    .banner.parallax {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
    .banner.arburg {
        padding: 24.44% 0 0;
    }
    .banner.arburg-pl {
        background-image: url('../images/arburg-pl.jpg');
    }
    .banner.arburg-en {
        background-image: url('../images/arburg-en.jpg');
    }
.banner > img {
    width: 100%;
}

.section.quality {}
.quality .con {
    padding: 25px 0 0;
}
.quality .con .ib-6:first-child {
    padding-right: 30px;
    text-align: right;
}

.section.gallery {
    padding: 0;
    text-align: center;
}
.gallery .ibs {
    margin: 0;
}
.gallery .ib {
    padding: 0;
}
.gallery .records a {
    display: block;
    overflow: hidden;
    padding: 64.5% 0 0;
    position: relative; 
}
.gallery img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.section.customers {
    text-align: center;
}

.section.group {
    text-align: center;
}
.group .con .ibs {
    padding: 60px 0;
}
.group .con .ib-4 {
    position: relative;
    text-align: center;
}
.group .con .ib-4:before {
    border-left: 1px solid #58ab27;
    bottom: 0;
    content: '';
    height: 75px;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: 0;
    width: 0;
}
    .group .con .ib-4:first-child:before {
        display: none;
    }
.group .con .ib-4 a {
    color: #919191;
    display: block;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.2em;
    padding: 10px;
    text-decoration: none;
}
.group .con .ib-4 img {
    display: block;
    margin: 0 auto 25px auto;
}

.section.contact {
    margin: 0 auto -54px;
    text-align: center;
}
.contact .data {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.2;
    padding: 20px 0;
}
.contact .data > div {
    display: inline-block;
    padding: 20px 0 20px 45px;
    position: relative;
    text-align: left;
    vertical-align: top;
}
.contact .data .icon {
    color: #58ab27;
    font-size: 28px;
    left: 0;
    position: absolute;
    top: 20px;
}
.contact .addr {
    margin-left: 120px;
    min-width: 240px;
}
.contact .msg {
    margin-left: 60px; 
}

    .contactIco {
        padding-left: 40px;
        position: relative;
    }
        .contactIco .icon {
            font-size: 30px;
            left: 0;
            position: absolute;
            top: 0;
        }

.jobs {}
.jobs .records {
    padding: 20px 0;
    text-align: center;
}
.jobs .item {
    display: block;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}
    .jobs .records .item {
        max-width: 380px;
    }
.jobs .records .item a {
    background: #FFF;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.24);
    color: #000;
    display: block;
    padding: 30px;
    text-decoration: none;
}
.jobs .records  .grp {
    display: block;
    padding: 0 0 55px;
    position: relative;
}
.jobs .datetime {
    color: #777;
    display: block;
    font-size: 10px;
    font-weight: 300;
    padding: 15px 0 45px;
    text-align: center;
}
    .jobs .records .datetime {
        padding: 0 0 5px;
        text-align: left;
    }
.jobs .name {
    display: block;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    padding: 5px 0 0;
    text-align: center;
}
    .jobs .records .name {
        font-size: 18px;
        text-align: left;
    }
.jobs .location {
    color: #58ab27;
    display: block;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.2;
    padding: 0 0 25px;
}
.jobs .desc {
    display: block;
    font-weight: 300;
}
    .jobs .records .desc {
        line-height: 1.6;
        max-height: 202px;
        min-height: 202px;
        overflow: hidden;
        text-align: justify;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
    }
.jobs .apply {
    color: #b9b9b9;
    font-size: 10px;
    font-weight: 300;
    margin: 0 0 0 auto;
    max-width: 200px;
    text-align: right;
    text-transform: uppercase;
}
.jobs .button {
    margin: 10px 0;
}
    .jobs .records .button {
        bottom: 0;
        left: 0;
        margin: 0;
        position: absolute;
    }





.fluidTabs {
    overflow: hidden;
    padding-top: 42px;
}
    .fluidTabs .fluidTabs-tabs {
        /*overflow: hidden;*/
        display: table;
        width: 100%;
        margin: 0;
        /*min-height: 43px;*/
        padding: 0;
        table-layout: fixed;
        -webkit-box-shadow: inset 0px -31px 22px -30px rgba(0,0,0,0.12);
        -moz-box-shadow: inset 0px -31px 22px -30px rgba(0,0,0,0.12);
        box-shadow: inset 0px -31px 22px -30px rgba(0,0,0,0.12);
    }
        .fluidTabs .fluidTabs-tabs li {
            background: none;
            color: #282828;
            cursor: pointer;
            display: table-cell;
            font-size: 15px;
            font-weight: bold;
            padding: 0 1px;
            position: relative;
            text-align: center;
            -webkit-transition: all 0.2s ease-out;
               -moz-transition: all 0.2s ease-out;
                 -o-transition: all 0.2s ease-out;
                    transition: all 0.2s ease-out;
            vertical-align: middle;
        }

        .fluidTabs .fluidTabs-tabs li.active {
            /*color: #e7184d;*/
            /*background: #fff;*/
        }
        .fluidTabs .fluidTabs-tabs li:before {
            -webkit-box-shadow: 0px 0px 30px -6px rgba(0,0,0,0);
            -moz-box-shadow: 0px 0px 30px -6px rgba(0,0,0,0);
            box-shadow: 0px 0px 30px -6px rgba(0,0,0,0);
            border-top: 4px solid #e7184d;
            background: #fff;
            content: "";
            display: block;
            height: 100%;
            left: 100%;
            z-index: 1;
            position: absolute;
            right: 0;
            top: 0px;
            -webkit-transition: all 0.3s ease-out 0s;
               -moz-transition: all 0.3s ease-out 0s;
                 -o-transition: all 0.3s ease-out 0s;
                    transition: all 0.3s ease-out 0s;
        }        
        .fluidTabs .fluidTabs-tabs li.active:before {
            -webkit-box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.14);
            -moz-box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.14);
            box-shadow: 0px 0px 30px -4px rgba(0,0,0,0.14);
        }
        .fluidTabs .fluidTabs-tabs li.active ~ li:before {
            left: 0;
            right: 100%;
        }
        .fluidTabs .fluidTabs-tabs li.active:before {
            z-index: 2;
            left: 0 !important;
            right: 0 !important;
        }
            .fluidTabs .fluidTabs-tabs li a {
                overflow: hidden;
                text-overflow: ellipsis;
                padding: 15px 5px;
                color: #282828;
                border-top: none;
                position: relative;
                z-index: 3;
                display: block;
            }
            .fluidTabs .fluidTabs-tabs li a:hover {
                text-decoration: none;
            }

            .fluidTabs .fluidTabs-tabs li:hover a, .fluidTabs .fluidTabs-tabs li.active a {
                color: #e7184d;
            }



    .fluidTabs .fluidTabs-tab-box {
        margin-bottom: -30px;
        overflow: hidden;
        /*-ms-overflow-x: scroll;
            overflow-x: scroll;*/
        padding-bottom: 50px;
        position: relative;
        white-space: nowrap;
        width: 100%;
        z-index: 9;
    }
    .fluidTabs .fluidTabs-tab-div {
        background: #fff none repeat scroll 0 0;
        display: inline-block;
        max-height: 0px;
        overflow: visible;
        padding: 10px;
        -webkit-transition: all 0.8s ease 0s;
           -moz-transition: all 0.8s ease 0s;
             -o-transition: all 0.8s ease 0s;
                transition: all 0.8s ease 0s;
        vertical-align: top;
        white-space: normal;
        width: 100%;
    }
    .fluidTabs .fluidTabs-tab-div.active {
        max-height: 1500px;
        filter: alpha(opacity = 100);
        opacity: 1;
    }










/*
 * Footer
 */
.footer {
    background: #FFF;
    clear: both;
    padding: 0;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 3;
}
.footer .f-1 {
    font-size: 0.000001px;
    padding: 25px 0 5px;
}
.f-1 div {
    display: inline-block;
    font-size: 10px;
    font-weight: 300;
    padding: 5px 10px;
    position: relative;
}
.f-1 .copyrights {
    color: #58ab27;
}
.copyrights span {}
.f-1 .realization {
    color: #333;
}
.redhand {
    color: #333;
    display: inline-block;
    position: relative;
    text-decoration: none;
}
    .redhand:hover {
        color: #FF001D;
        text-decoration: none;
    }
    .redhand:after {
        background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA6UlEQVR4AZXPQUcFURiH8UPEEK0iUlzO6q6ibatWcVd3dYn5AK2ib9BqaBsx24j5BhEREcN8gLZtY4hZDcO/ZzGHVzpnmsXPOYv3fXid3GHKMQocwMFjHy74vbCHO5zDoYFwjwxfaFKBawgdPB4hfGAJAfGARw/hHTk0WsUCCzR4xREKaHSLAcJDLLA0Q584RQuht38Iw18n5CbyjQpKyGACsBHzxtzYQCyS0mHHBqxL6B/ObGAba2xwghqakNtACc20DoEtvKGFZtiEgLXAFZ7QQwllCMTs4gIFniGjQmYCkzxqvGAFF/wAE9ukCYLfD9EAAAAASUVORK5CYII=');
        bottom: 10%;
        display: block;
        height: 16px;
        left: 50%;
        margin-left: -6px;
        opacity: 0;
        position: absolute;
        -webkit-transform: rotate(-95deg);
        -moz-transform: rotate(-95deg);
        -ms-transform: rotate(-95deg);
        -o-transform: rotate(-95deg);
        transform: rotate(-95deg);
        -webkit-transform-origin: 8px 10px;
        -moz-transform-origin: 8px 10px;
        -ms-transform-origin: 8px 10px;
        -o-transform-origin: 8px 10px;
        transform-origin: 8px 10px;
        -webkit-transition: all 0.25s ease;
         -moz-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
        width: 16px;
    }
        .redhand:hover:after {
            bottom: 100%;
            margin-left: -8px;
            opacity: 1;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
        }



/*
 * Modyfikatory
 */

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alignLeft {
    text-align: left;
}
.alignRight {
    text-align: right;
}
.alignCenter {
    text-align: center;
}

.right {
    float: right;
}
.left {
    float: left;
}

.pullLeft {
    float: left;
    margin: .7em .7em .7em 0;
}
.pullRight {
    float: right;
    margin: .7em 0 .7em .7em;
}
    .pullRight:first-child,
    .pullLeft:first-child {
        margin-top: 0;
    }

.pullCenter {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: auto;
}


.movie { display: block; padding: 56.25% 0 0; position: relative; width: 100%; }
.movie > iframe { height: 100%; left: 0; position: absolute; top: 0; width: 100%; } 


.button-basketUpdate {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    float: right;
    margin-right: 27.1%;
    opacity: 0;
    position: relative;
    -webkit-transform: translate(0, -30px);
        -ms-transform: translate(0, -30px);
            transform: translate(0, -30px);
    visibility: hidden;
}
    .button-basketUpdate-show {
        -webkit-animation-duration: 1.5s;
                animation-duration: 1.5s;
        -webkit-animation-iteration-count: 5;
                animation-iteration-count: 3;
        -webkit-animation-name: basketUpdate;
                animation-name: basketUpdate;
        opacity: 1;
        -webkit-transform: translate(0, 0px);
            -ms-transform: translate(0, 0px);
                transform: translate(0, 0px);
        visibility: visible;
    }
/* Chrome, Safari, Opera */
@-webkit-keyframes basketUpdate {
    0%   {opacity: 1;}
    50%  {opacity: 0.5;}
    100% {opacity: 1;}
}
/* Standard syntax */
@keyframes basketUpdate {
    0%   {opacity: 1;}
    50%  {opacity: 0.5;}
    100% {opacity: 1;}
}

/* read more link */
.more {
    font-size: .9em;
    font-weight: bold;
    padding-left: 5px;
}

/* price hightlight style */
.price {
    color: #D30E0E;
    font-size: 20px;
    font-weight: bold;
}

/* multiline indent */
.rr {
    display: inline-block;
    vertical-align: top;
}

/* invisible link */
.il {
    color: inherit;
    text-decoration: inherit;
}
    .il:hover {
        color: inherit;
        text-decoration: underline;
    }

.mt30 {
    margin-top: 30px;
}
.pt0 {
    padding-top: 0;
}
.mt0 {
    margin-top: 0;
}
.mb0 {
    margin-bottom: 0;
}
.mb20 {
    margin-bottom: 20px;
}
.mb60 {
    margin-bottom: 60px;
}

.block {
    display: block;
}
.hide {
    display: none;
}

.ninja {
    border: 0 !important;
    height: 1px;
    left: -1px;
    margin: 0 !important;
    overflow: hidden;
    padding: 0 !important;
    position: absolute !important;
    text-indent: 1px;
    top: -1px;
    width: 1px;
}

.relative {
    position: relative;
}

.clearfix:before,
.clearfix:after {
    content: '';
    display: table;
}

.clearfix:after {
    clear: both;
}

.clear {
    clear: both;
}

.pointer {
    cursor: pointer;
}

/****************************************************************************/

@media only screen and (max-width: 1600px) {
    .nav a {
        padding: 21px 10px;
    }
}

/****************************************************************************/

@media only screen and (max-width: 1200px) {
    .slider-banner {
        margin: 0 0 -62px;
    }
    .slider-banner > img,
    .slider-banner > span {
        display: none;
    }

    .slider-banner + div {
        position: relative;
        top: -62px;
    }

    .top {
        padding: 0 0 62px;
    }
    .top .t-1 {
        bottom: auto;
        min-height: 0;
        position: fixed;
        top: 0;
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }
        .top div:first-child + .t-1,
        .top .scroll + .t-1 {
            min-height: 62px;
        }

    .logo-1 {
        left: 0;
        margin: 0 auto;
        right: 0;
        top: 0;
    }

    div:first-child + .t-1 .c-hamburger,
    .scroll + .t-1 .c-hamburder {
        background: #FFF;
    }
    div:first-child + .t-1 .c-hamburger span,
    div:first-child + .t-1 .c-hamburger span:before,
    div:first-child + .t-1 .c-hamburger span:after,
    .scroll + .t-1 .c-hamburger span,
    .scroll + .t-1 .c-hamburger span:before,
    .scroll + .t-1 .c-hamburger span:after {
        background: #58ab27;
    }

    .nav .n-1 {
        margin: 0;
        padding: 75px 20px 25px;
        text-align: left;
    }
    .nav li {
        display: block;
    }
    .nav a {
        padding: 10px 10px;
    }

    .languages {
        left: 30px;
        right: auto;
    }

    .slider-banner .txt div {
        font-size: 45px;
    }
    .slider-banner .txt div + div + div {
        font-size: 30px;
    }
}

/****************************************************************************/

@media only screen and (max-width: 1000px) {
    .slider-banner .txt div {
        font-size: 34px;
    }
    .slider-banner .txt div + div + div {
        font-size: 23px;
    }

    .offer .con .ib-4 {
        width: 50%;
    }
    .offer .con .ib-4 b {
        padding: 25px 0 25px 100px;
    }

    .contact .data > div {
        padding: 20px 20px 20px 45px;
    }
    .contact .addr,
    .contact .msg  {
        margin: 0;
        min-width: 0;
    }

}

/****************************************************************************/

@media only screen and (max-width: 800px) {

    .content, .leftBlock, .rightBlock {
        display: block;
        min-width: auto;
        padding: 0;
        width: auto;
    }

    .fs-1 { 
        font-size: 36px;
    }
    .fs-2 {
        font-size: 24px;
    }
    .fs-3 {
        font-size: 18px;
    }
    .fs-4 {
        font-size: 14px;
    }

    .form {
        margin: 0 auto;
    }
    .form .ib-6 {
        width: 100%;
    }
    .form .grp-fake {
        display: none;
    }

    .swiper-button-prev,
    .swiper-button-next,
    .swiper-pagination {
        display: none;
    }

    .section .back {
        position: static;
    }

    /*.slider-banner .txt div {
        font-size: 26px;
    }
    .slider-banner .txt div + div + div {
        font-size: 17px;
    }*/
    .slider-banner .swiper-slide img {
        bottom: 75px;
        left: 0;
        margin: auto;
        max-height: 60%;
        max-width: 80%;
        right: 0;
        top: 75px;
    }
    .slider-banner .con {
        display: none;
    }

    .about .con .ib-6 {
        display: block;
        width: auto;
    }
    .about .con .ib-6:first-child {
        padding-right: 10px;
    }

    .banner.parallax {
        background-attachment: scroll;
    }
    .banner.arburg {
        background-position: center 85%;
        background-size: 125% auto;
    }

    .gallery .records .ib-3 {
        width: 50%;
    }

    .slider-brands {
        padding: 25px 0;
    }
    .slider-gallery .swiper-slide {
        width: 50%;
    }

    .jobs .records .ib-4 { 
        width: 50%;
    }
    .jobs .item .ib-8,
    .jobs .item .ib-4 {
        width: 100%;
    }
}

/****************************************************************************/

@media only screen and (max-width: 600px) {
    /*.slider-banner .txt div {
        font-size: 20px;
    }
    .slider-banner .txt div + div + div {
        font-size: 13px;
    }*/

    .offer .con .ib-4 {
        width: 100%;
    }
    .offer .con .ib-4 b {
        padding:  15px 0 15px 100px 
    }
    
    .contact .data > div {
        min-width: 50%;
        padding: 20px 0px 20px 45px;
    }
}

/****************************************************************************/

@media only screen and (max-width: 480px) {
    .span {
        float: none;
        margin-left: 0 !important;
        width: auto;
    }
    .label--invalid .tooltip-bottom {
        margin-bottom: 50px;
    }
    .media--double,
    .media2--double {
        display: block;
        margin: .8em 0;
        width: auto;
    }

    .form {
        padding: 10px;
    }

    /*.slider-banner .txt div {
        font-size: 15px;
    }
    .slider-banner .txt div + div + div {
        font-size: 10px;
    }*/

    .logo-1 {
        padding: 21px 0;
        width: 200px;
    }

    .jobs .records .ib-4 { 
        width: 100%;
    }

    .slider-gallery .swiper-slide {
        width: 100%;
    }
}




/****************************************************************************\
|********************************** SHOP ************************************|
\****************************************************************************/


/*
 * Cart rabat
 */
.cart-rabat {
    background: #F2F2F2;
    padding: 25px 20px 5px;
}
    .cart-rabat-name {
        color: #282828;
        font-size: 30px;
        font-weight: 300;
        margin: 2px 5px 3px 5px;
        text-transform: none;     
    }
.box--rabat {
    -webkit-border-radius: 22px;
       -moz-border-radius: 22px;
            border-radius: 22px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.20);
       -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.20);
            box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.20);
    clear: both;
    display: inline-block;
    font-weight: 300;
    padding: 15px 20px;
}
    .box--rabat strong {
        font-size: 22px;
        font-weight: 300;
    }
    .box--rabat .button--smallCircle {
        bottom: 7px;
        margin-bottom: -10px;
        margin-left: -30px;
        padding: 1px 10px 2px;
        position: relative;
        right: -65px;
    }










/*
 * Login box
 */

.loginBox {
    background: #F2F2F2;
    margin: 0 auto 20px;
    max-width: 500px;
    padding: 0 20px 5px;
}
    .loginBox .label-help {
        font-size: 14px;
        margin-top: 15px;
    }
    .loginBox-header {
        margin-top: 0;
        text-align: center;
    }
    .loginBox .box {
        border: none;
        margin: 0 -20px 20px;
        padding: 20px;
    }
    .loginBox .formActions {
        background: none;
        padding: 0;
    }


/*
 * Cart Steps
 */

.stepsWrapper {
    display: table;
    margin: 10px 0 10px;
    overflow: hidden;
    padding: 0 0 30px;
    table-layout: fixed;
    width: 100%;
}
    .step {
        background: none !important;
        border-left: 1px solid #ccc;
        color: #bbbbbb;
        display: table-cell;
        list-style: inside;
        padding: 0px 20px!important;
    }
    .step:first-child {
        border: none;
        padding-left: 0;
    }
    .step:last-child {
        padding-right: 0;
    }
    .step--active {
        color: #282828;
        opacity: 1;
    }
        .step b {
            display: block;
            font-size: 22px;
            font-weight: 300;
        }
        .step .hint {
            line-height: 1.1em;
            margin: 5px 24px 5px 0;
        }

/*
 * Shop Cart
 */

.cartWrapper {
    border-top: 1px solid #EEE;
    margin-top: 60px;
    position: relative;
}
.cart-table {
    display: table;
    width: 100%;
}
    .cart-row {
        display: table-row;
    }
    .cart-type {
        display: block;
        position: absolute;
    }
        .cart-type img {
            -webkit-border-radius: 22px;
               -moz-border-radius: 22px;
                    border-radius: 22px;
            margin-top: 20px;
        }
    .cart-type + .cart-table .cart-row:first-child .cart-cell{
        padding-top: 85px;
    }
    .cart-type + .cart-table .cart-row:first-child .cart-cell .radio {
        /*margin-bottom: 25px;*/
        top: 75px !important;
    }
    .cart-qty-big {
        width: 10%;
    }
    .cart-header {
        bottom: 100%;
        color: #888;
        display: none;
        margin-bottom: 10px;
        position: absolute;
        text-align: left;
    }
    .cart-row:first-child .cart-header {
        display: block;
    }
    .cart-ships .cart-row .cart-header {
        display: none;
    }
    .cart-ships .cart-type:first-child + .cart-table .cart-row:first-child .cart-header{
        display: block;
    }

    .cart-cell {
        border-bottom: 1px solid #EEE;
        display: table-cell;
        padding: 13px 0;
        text-align: left;
        vertical-align: middle;
    }
    
    .cart-ships .cart-cell {
        border-bottom: none;
    }

    .cart-product {
        position: relative;
        width: 60%;
    }
        .cart-product .radio {
            bottom: 0;
            left: 0;
            margin: auto 0;
            /*margin-top: -10px;*/
            position: absolute;
            top: 0;
        }
        .cart-product .rr {
            padding-left: 30px;
        }
        .cart-product-image {
            display: inline-block;
            margin-right: 1%;
            vertical-align: middle;
            width: 27%;
        }
            .cart-product-image img {
                display: block;
                max-width: 100%;
            }

        .cart-product-name {
            font-size: 20px;
            font-weight: 300;
            display: inline-block;
            text-align: left;
            text-transform: uppercase;
            vertical-align: middle;
            width: 70%;
        }
            .cart-product-name .box {
                font-size: 12px;
                line-height: 1.1em;
                margin: 15px 0 0 0;
                padding: 10px 15px;
            }

        .cart-product-attrs {
            font-size: 0.8em;
            line-height: 1.3em;
            margin: 0;
            overflow: hidden;
        }
            .cart-product-attrs li {
                background: none;
                display: inline-block;
                margin-right: 20px;
                padding: 0;
            }
        .cart-product-delivery {
            max-width: 90%;
        }

    .cart-price-black {
        color: #282828 !important;
    }
    .cart-price {
        color: #888;
    }

    .cart-delete {
        text-align: center;
        width: 5%;
    }

    .cart-x {
        font-size: 20px;
    }
    .cart-price-main {
        clear: both;
        margin-bottom: 10px;
        text-align: right;
    }

#inpost input { min-width: 0; padding: 5px 5px; width: 150px; }
#inpost span { display: inline-block; padding: 0 10px; vertical-align: middle; }
#inpost div { display: inline-block; vertical-align: top; }
#inpost select + select { display: block; }
#inpost option.near { background: #EEE; font-weight: bold; }

@media only screen and (max-width: 600px) {
    .button-basketUpdate {
        float: none;
        margin: 0 auto;
    }
    .cart-product {
        text-align: center;
    }
    .cart-product-image, .cart-product-name {
        width: auto;
    }

    .cart-rabat .span {
        float: none;
        margin-left: 0;
        width: auto;
    }

    .cart-rabat .cart-rabat-name {
        float: none;
        text-align: left;
        width: 100%;
    }
    .cart-rabat .button {
        float: none;
        margin-top: 10px;
        width: 100%;
    }
    
    .fill {
        margin-left: 0;
        width: 100%;
    }
    .fill + .fill {
        margin-top: 20px;
    }

    .step {
        display: none;
    }
    .step--active {
        display: block;
    }

    .cart-wrapper {
        margin-top: 0;
    }
    .cart-table {
        border: 0;
    }
        .cart-row {
            display: block;
            text-align: justify;
        }
        .cart-row:after {
            content: '';
            display: inline-block;
            width: 100%;
        }

        .cart-header {
            border: none;
            display: block !important;
            margin: 0 0 5px;
            position: static;
            text-align: center;
        }

        .cart-cell {
            border: 0;
            display: inline-block;
            vertical-align: top;
        }

        .cart-product {
            border-top: 1px solid #EEE;
            width: 100%;
        }
            .cart-product .cart-header {
                display: none !important;
            }

        .cart-qty,
        .cart-price,
        .cart-delete {
            padding-top: 10px;
            text-align: center;
            width: 32%;
        }

}

/****************************************************************************/

@font-face {
    font-family: 'icomoon';
    src:  url('fonts/icomoon.eot?rbigyv');
    src:  url('fonts/icomoon.eot?rbigyv#iefix') format('embedded-opentype'),
      url('fonts/icomoon.ttf?rbigyv') format('truetype'),
      url('fonts/icomoon.woff?rbigyv') format('woff'),
      url('fonts/icomoon.svg?rbigyv#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-marker:before {
    content: "\e904";
  }
  .icon-message:before {
    content: "\e905";
  }
  .icon-twitter:before {
    content: "\e918";
  }
  .icon-youtube:before {
    content: "\e91b";
  }
  .icon-skype:before {
    content: "\e91c";
  }
  .icon-google:before {
    content: "\e919";
  }
  .icon-linkedin:before {
    content: "\e91d";
  }
  .icon-pinterest:before {
    content: "\e91a";
  }
  .icon-facebook:before {
    content: "\e91e";
  }
  .icon-left:before {
    content: "\e902";
  }
  .icon-right:before {
    content: "\e903";
  }
  .icon-remove:before {
    content: "\e91f";
  }
  .icon-plus:before {
    content: "\e901";
  }
  .icon-instagram:before {
    content: "\ea92";
  }  
  
/****************************************************************************/

.dataprocessing { display: block; line-height: 1.2; text-align: left; }
.dataprocessing .dp-law { display: block; font-size: 0.8em; margin: 0 0 5px; opacity: 0.8; }
.dataprocessing .dp-inf { display: block; margin: -19px 0 0; padding: 0 0 0 25px; }
.dataprocessing .dp-lbl { display: inline-block; }
.dataprocessing .dp-dsc { display: block; padding: 0 0 0 25px; }
.mfp-bg { z-index: 21042; }
.whiteBackground .mfp-content { min-height: 0; }
.mfp-wrap { z-index: 21043; }
.mfp-content ul { margin: 0 0 0 25px; padding: 0; }
.mfp-content ul > li { list-style: disc; margin: 0; padding: 1px 0; }
.mfp-content ol { margin: 0 0 0 25px; padding: 0; }
.mfp-content ol > li { list-style: decimal; margin: 0; padding: 1px 0; }

/****************************************************************************/

.no-js * {
    -webkit-transition: none !important;
       -moz-transition: none !important;
         -o-transition: none !important;
            transition: none !important;
}

/******************************************************************************/
::-moz-selection {
    text-shadow: 1px 1px 0px rgba(255,255,255,0.2),
                 -1px -1px 0px rgba(0,0,0,0.2);
    color: #fff;
    background: #282828;    
}

::selection {
    text-shadow: 1px 1px 0px rgba(255,255,255,0.2),
                 -1px -1px 0px rgba(0,0,0,0.2);
    color: #fff;
    background: #282828;
}


* { 
     /*-webkit-backface-visibility:  hidden;*/
     -webkit-tap-highlight-color:  transparent;
  }


button:active,
button:focus {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}