/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 06 2022 | 20:37:08 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/*********************************************
* Author: Klemen Olaj
* Description: 
* Date modified: 20.06.2018
* Version: 1.0
**********************************************/

/* Page styles */





@media (max-width:680px) {}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    margin: 15px 0;
}

p:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

p:empty {
    display: none;
}







/* Animations */

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }

    45% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }

    45% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 0;
    }
}

@-webkit-keyframes intro_image_zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes intro_image_zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@-webkit-keyframes pulsate_2 {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }
}

@keyframes pulsate_2 {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }
}

@-webkit-keyframes pulsate_3 {
    0% {
        -webkit-transform: scaleX(1) scaleY(1);
        transform: scaleX(1) scaleY(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1.2) scaleY(1.6);
        transform: scaleX(1.2) scaleY(1.6);
        opacity: 0;
    }
}

@keyframes pulsate_3 {
    0% {
        -webkit-transform: scaleX(1) scaleY(1);
        transform: scaleX(1) scaleY(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1.2) scaleY(1.6);
        transform: scaleX(1.2) scaleY(1.6);
        opacity: 0;
    }
}

@-webkit-keyframes button_pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes button_pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes button_up_down {
    0% {
        top: 0;
    }

    40% {
        top: -5px;
    }
}

@keyframes button_up_down {
    0% {
        top: 0;
    }

    40% {
        top: -5px;
    }
}

@-webkit-keyframes shake {

    10%,
    90% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        -webkit-transform: translate3d(2px, 0, 0);
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-4px, 0, 0);
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        -webkit-transform: translate3d(4px, 0, 0);
        transform: translate3d(4px, 0, 0);
    }
}

@keyframes shake {

    10%,
    90% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        -webkit-transform: translate3d(2px, 0, 0);
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-4px, 0, 0);
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        -webkit-transform: translate3d(4px, 0, 0);
        transform: translate3d(4px, 0, 0);
    }
}

/* Inputs */
input,
select,
textarea {
    font-weight: 200;
}

.button {
    background: #f1a417;
    border: none;
    display: inline-block;
    vertical-align: top;
    color: #313131;
    white-space: nowrap;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    border-radius: 22.5px;
    -webkit-transition: color 250ms ease, background 250ms ease;
    -o-transition: color 250ms ease, background 250ms ease;
    transition: color 250ms ease, background 250ms ease
}

.button--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    padding: 5px 35px;
}

/*.button--flex span {position: relative; top: -1px;}*/
.button strong {
    font-weight: 500;
}

.button:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.button:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.footer .button {
    border: solid 1px #f1a417;
}

.button-sm {
    font-size: 15px;
}

.button-sm .button--flex {
    height: 40px;
}

.button-white {
    color: #313131;
    font-size: 20px;
    font-weight: normal;
    background: #fff;
}

.button-white .button--flex {
    height: 32px;
    padding: 5px 20px
}

.button-red {
    background: #f00;
    color: #fff;
}

a.button-red {
    color: #fff !important;
}

.button-red:hover {
    background: #D70000;
}


.button-orderNow {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.button-orderNow .button--flex {
    height: 40px;
    border-radius: 20px;
    background: #f1a417;
    padding: 5px 15px;
    -webkit-transition: background 250ms ease, color 250ms ease;
    -o-transition: background 250ms ease, color 250ms ease;
    transition: background 250ms ease, color 250ms ease;
}

.button-orderNow--icon {
    padding: 0 10px 0 5px;
    border-right: solid 1px #000;
    text-align: center;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.button-orderNow--icon i {
    font-size: 20px;
}

.button-orderNow--text {
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px
}

.button-orderNow .button--flex:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: solid 1px #e6940c;
    -webkit-animation: pulsate_3 2000ms ease-in-out infinite;
    animation: pulsate_3 2000ms ease-in-out infinite;
}

.button-orderNow.hover {
    -webkit-animation: shake 1800ms linear forwards 1;
    animation: shake 1800ms linear forwards 1;
}

.button-orderNow:hover {
    text-decoration: none;
}

.button-orderNow:hover .button--flex {
    background: #e6940c;
    color: #fff;
}

.button-orderNowLG {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    font-size: 16px;
}

.button-orderNowLG .button--flex {
    height: 60px;
    border-radius: 30px;
    font-size: 20px;
    border: solid 1px #555555;
    background: transparent;
    padding: 5px 40px;
    -webkit-transition: background 250ms ease;
    -o-transition: background 250ms ease;
    transition: background 250ms ease;
}

.button-orderNowLG:not(.button-orderNowLG-sm) {
    -webkit-animation: shake 1800ms linear forwards 1;
    animation: shake 1800ms linear forwards 1;
}

.button-orderNowLG:not(.button-orderNowLG-sm) .button--flex:before {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 37px;
    border: solid 1px #e6940c;
    -webkit-animation: pulsate_3 2000ms ease-in-out infinite;
    animation: pulsate_3 2000ms ease-in-out infinite;
}

.button-orderNowLG .button--flex .c-orange {
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

.button-orderNowLG--left {
    margin-right: 55px;
}

.button-orderNowLG:hover {
    text-decoration: none;
}

.button-orderNowLG:hover .button--flex {
    background: #f1a417;
}

.button-orderNowLG:hover .button--flex .c-orange {
    color: #fff;
}

.button-orderNowLG-sm {
    font-weight: normal;
    min-width: 160px;
    text-align: center;
}

.button-orderNowLG-sm .button--flex {
    height: 50px;
    border-radius: 25px;
    padding: 5px 25px;
    min-width: 210px;
    font-size: 18px;
}

.button-naked {
    display: inline-block;
    vertical-align: middle;
}

.button-naked .button--flex {
    border: solid 1px #555555
}

.button-circle {
    display: inline-block;
    border: none;
    background: none;
    vertical-align: top;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    position: relative;
    padding: 8px;
    -webkit-transition: background 450ms ease, padding 250ms ease;
    -o-transition: background 450ms ease, padding 250ms ease;
    transition: background 450ms ease, padding 250ms ease;
}

.button-circle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: solid 2px rgba(241, 164, 24, .44);
    border-radius: 50%;
    -webkit-animation: pulsate_2 2500ms ease-in-out infinite;
    animation: pulsate_2 2500ms ease-in-out infinite;
}

.button-circle .button-circle-inner i.icon-circle:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #f1a417;
    -webkit-transition: background 250ms ease;
    -o-transition: background 250ms ease;
    transition: background 250ms ease;
}

.button-circle-outer {
    border: solid 2px rgba(241, 164, 24, .20);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    padding: 6px;
}

.button-circle-inner {
    background: #f1a417;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000000;
    line-height: 1.3;
    font-size: 19px;
    font-weight: 300;
}

.button-circle-inner i {
    font-size: 40px;
}

.button-circle-inner i.icon-envelope-2 {
    font-size: 35px;
}

.button-circle-inner i.icon-phone {
    font-size: 45px;
}

.button-circle-subtext {
    width: calc(100% + 16px);
    font-weight: 200;
    font-size: 18px;
    line-height: 1;
    margin: 27px 0 0 -8px;
    white-space: nowrap;
    text-align: center;
}

.button-circle-hst {
    margin-bottom: 38px;
    border-width: 4px;
    position: relative;
}

.button-circle-hst .button-circle-subtext {
    position: absolute;
    margin: 0;
    left: 0;
    bottom: -42px;
    width: 100%;
}

.button-circle-hst .button-circle-outer {
    border-width: 4px;
}

.button-circle-md {
    width: 105px;
    height: 105px
}

.button-circle-md .button-circle-inner {
    font-size: 16px
}

.button-circle-sm {
    width: 70px;
    height: 70px;
    padding: 3px;
}

.button-circle-sm .button-circle-inner {
    font-size: 13px
}

.button-circle-sm .button-circle-outer {
    padding: 3px
}

.button-circle-xs {
    width: 65px;
    height: 65px;
    border-width: 3px;
    position: relative;
    padding: 6px;
}

.button-circle-xs .button-circle-outer {
    border-width: 2px;
}

.button-circle-xs .button-circle-inner {
    background-color: transparent;
}

.button-circle-xs .button-circle-inner i {
    color: #f0a317;
    font-size: 15px;
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

.button-circle-xs .button-circle-inner i.icon-play {
    font-size: 12px;
}

.button-circle-xs .button-circle-suptext {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -45px;
    white-space: nowrap;
    text-align: center;
    color: #b6b6b6;
    font-size: 22px;
    font-weight: 500;
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

.button-circle-xs.pause .button-circle-inner i:before {
    content: "\e905"
}

.button-explore {
    padding: 0;
    background: none;
    border: none;
    position: relative;
    top: 0;
    -webkit-animation: button_up_down 600ms ease-in-out infinite;
    animation: button_up_down 600ms ease-in-out infinite;
}

.button-explore-suptext {
    font-size: 9px;
    font-weight: 200;
    margin: 0 0 6px;
}

.button-readMore {
    display: inline-block;
    vertical-align: top;
    padding: 5px 15px;
    border: solid 3px #fff;
    background: transparent;
    color: #fff;
    font-weight: normal;
    font-size: 18px;
    -webkit-transition: background 250ms ease, color 250ms ease, border 250ms ease;
    -o-transition: background 250ms ease, color 250ms ease, border 250ms ease;
    transition: background 250ms ease, color 250ms ease, border 250ms ease;
}

.button-readMore i {
    margin-left: 20px;
    position: relative;
    top: -1px;
    font-size: 16px;
}

.button-readMore:hover {
    text-decoration: none;
    background: #000;
    color: #fff;
    border-color: #fff;
}

.button-readMore-inverted {
    display: inline-block;
    vertical-align: top;
    padding: 5px 15px;
    background: #fff;
    color: #000;
    font-weight: 500;
    font-size: 13px;
}

.button-readMore-inverted i {
    margin-left: 12px;
    position: relative;
    top: -1px;
    font-size: 11px
}

.button-circle:hover {
    text-decoration: none;
    background: #f1a417;
    padding: 0;
}

.button-circle:hover .button-circle-inner i {
    color: #000;
}

.button-circle:hover .button-circle-inner i.icon-circle:before {
    background: #000;
}

.button-circle:hover .button-circle-suptext {
    color: #fff;
}

.button.loading {
    pointer-events: none;
    position: relative;
    background: rgba(0, 0, 0, 0.15);
}

.button.loading:before {
    content: "";
    position: absolute;
    z-index: 20;
    left: 50%;
    top: 50%;
    margin-top: -15px;
    margin-left: -15px;
    width: 30px;
    height: 30px;
    background: url(../images/ajax-loader-button.gif) no-repeat center #fff;
    border-radius: 50%;
    background-size: 22px;
}

.button-sm.loading:before {
    margin-top: -11px;
    margin-left: -11px;
    width: 22px;
    height: 22px;
    background-size: 14px;
}

.button-btn {
    padding: 5px 35px;
    height: 40px;
}

.button-paypal {
    color: #494949 !important;
    font-size: 16px;
    font-weight: 300;
    border-radius: 3px;
}

.button-paypal .button--flex {
    padding: 5px 60px;
}

.button-paypal img {
    height: 18px;
    margin-right: 10px;
}

.button-paypal:hover {
    background: #EC9F12 !important;
}

@media (min-width:721px) {
    .button-circle-md {
        width: 145px;
        height: 145px;
    }

    .button-circle-md .button-circle-inner {
        font-size: 18px;
    }
}

@media (max-width:680px) {
    .button-sm .button--flex {
        height: 40px !important;
        border-radius: 20px;
        font-size: 18px;
    }

    .button-orderNowLG .button--flex {
        height: auto;
        padding: 10px 30px;
    }

    .button-orderNowLG .button--flex strong {
        font-weight: 500;
    }

    .button-orderNowLG .button-orderNowLG--left {
        margin-right: 25px;
    }

    .button-orderNowLG .button-orderNowLG--left,
    .button-orderNowLG .button-orderNowLG--right {
        white-space: nowrap;
    }
}

form.cart {
    margin: 0;
}

form.cart .button {
    float: none;
    margin: 0;
    border: none;
}

select.select-model + .select2-container {
    width: 240px !important;
    outline: none;
    margin: 0
}

select.select-model + .select2-container * {
    outline: none;
}

select.select-model + .select2-container .select2-selection {
    height: 44px;
    background: #f1a417;
    border: solid 1px #f1a417;
    border-radius: 20px;
}

select.select-model + .select2-container .select2-selection__rendered {
    padding-left: 55px;
}

select.select-model + .select2-container .select2-selection__rendered,
select.select-model + .select2-container .select2-selection__placeholder {
    font-weight: 500;
    line-height: 40px;
    font-size: 18px;
    color: #fff !important
}

select.select-model + .select2-container .select2-selection__arrow {
    height: 100%;
    right: auto;
    position: absolute;
    top: 0;
    width: 20px;
    left: 20px;
    font-family: 'icomoon' !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

select.select-model + .select2-container .select2-selection__arrow b {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    line-height: 0;
    font-weight: normal;
    font-size: 12px;
}

select.select-model + .select2-container .select2-selection__arrow b:before {
    content: "\e903";
    color: #fff;
}

select.select-model + .select2-container.select2-container--open .select2-selection__arrow b {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

/*.select2-dropdown {background: #000;}*/
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected=true] {
    background: #f1a417;
}

.select2-container--default .select2-results__option {
    position: relative;
}

.select2-container--default .select2-results__option.option-hide {
    display: none !important;
}

.select2-container--default .select2-results__option.option-disabled {
    pointer-events: none;
    background: #f00 !important;
    font-size: 15px;
    border-radius: 0 0 3px 3px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: transparent;
}

.select2-results,
.select2-results * {
    outline: none !important;
}

/* Fancybox */
[data-fancybox] {
    outline: none !important;
}

/*
[data-fancybox] {display:inline-block; vertical-align: top; position: relative;}
[data-fancybox] img {width:100%;}
[data-fancybox]:before {content:""; position: absolute; z-index:5; left:0; top:0; width:100%; height:100%; background: rgba(255,255,255,.5); opacity:0; transition:opacity 300ms ease;}
[data-fancybox]:after {content:"\e90b"; font-family: 'icomoon'; font-size:24px; color:#fff; display:flex; align-items:center; justify-content:center; width:60px; height:60px; position: absolute; z-index:10; left:50%; top:50%; margin:-30px 0 0 -30px; border-radius:50%; background: rgba(181,74,148,.75); opacity:0; -webkit-transition:opacity 300ms ease; -o-transition:opacity 300ms ease; transition:opacity 300ms ease;}
[data-fancybox]:hover:before,
[data-fancybox]:hover:after {opacity:1;}
*/
/* Block Grids */
.blockGrid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: Wrap;
    flex-wrap: Wrap;
    width: calc(100% + 40px);
    margin-left: -20px;
}

.blockGrid [class^="blockGrid--"] {
    padding: 0 20px;
}

.blockGrid--100 {
    width: 100%;
}

.blockGrid--66 {
    width: 66.667%;
}

.blockGrid--50 {
    width: 50%;
}

.blockGrid--33 {
    width: 33.333%;
}

.blockGrid--25 {
    width: 25%;
}

.blockGrid--20 {
    width: 20%;
}

.blockGrid--16 {
    width: 16.667%;
}

/* Aligns */
.textAlign-center {
    text-align: center !important;
}

.textAlign-left {
    text-align: left !important;
}

.textAlign-right {
    text-align: right !important;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Align items */
.alignItems-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.alignItems-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

/* Justify content */
.justifyContent-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justifyContent-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justifyContent-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justifyContent-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

/* Page container */
.pageContainer {
    position: relative;
    overflow-x: hidden;
    top: -50px;
    opacity: 0;
    left: 0;
    -webkit-transition: left 300ms ease, top 300ms ease, opacity 300ms ease;
    -o-transition: left 300ms ease, top 300ms ease, opacity 300ms ease;
    transition: left 300ms ease, top 300ms ease, opacity 300ms ease;
}

/* Colors */
.c-orange {
    color: #f1a417;
}

/* Header */
.header {
    font-size: 18px;
    color: #fff;
    font-weight: 200;
    background: #000;
    position: fixed;
    left: 0;
    top: -50px;
    opacity: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: opacity 300ms ease, top 300ms ease;
    -o-transition: opacity 300ms ease, top 300ms ease;
    transition: opacity 300ms ease, top 300ms ease;
}

.header .row {
    max-width: none
}

.header a.logo {
    display: inline-block;
    width: 100px;
}

.header .blockGrid.headerBG {
    padding: 20px 0;
    min-height: 75px;
    height: 75px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

nav.mainNav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

nav.mainNav ul li {
    position: relative;
}

nav.mainNav > ul > li {
    padding: 6px 0;
    margin: -6px 0;
}

nav.mainNav ul li.menu-item-has-children > a {
    position: relative;
    padding-right: 20px;
}

nav.mainNav ul li.menu-item-has-children > a:after {
    content: "\e903";
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 12px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #fff;
    font-family: 'icomoon' !important;
    -webkit-transition: color 250ms ease, -webkit-transform 250ms ease;
    transition: color 250ms ease, -webkit-transform 250ms ease;
    -o-transition: transform 250ms ease, color 250ms ease;
    transition: transform 250ms ease, color 250ms ease;
    transition: transform 250ms ease, color 250ms ease, -webkit-transform 250ms ease;
}

nav.mainNav ul.sub-menu li a {
    color: #000;
    padding: 0;
    display: block;
    position: relative;
}

nav.mainNav ul.sub-menu li.new a:after {
    content: "NEW";
    color: #f0a317;
    font-size: 13px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: -2px;
}

nav.mainNav ul.sub-menu li + li {
    margin-top: 14px;
}

nav.mainNav ul.sub-menu li.current-menu-item > a {
    color: #f0a317;
}



nav.mainNav > ul > li + li {
    margin-left: 35px;
}

nav.mainNav a {
    text-transform: uppercase;
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

nav.mainNav li.current-menu-item > a,
nav.mainNav li.current-menu-parent > a {
    color: #f0a317;
    text-decoration: none;
}

nav.mainNav a:hover {
    text-decoration: none;
}

nav.mainNav .cartWidget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 30px;
}

nav.mainNav .cartWidget--icon {
    font-size: 30px;
    margin-left: 5px;
}

.header--mobile {
    display: none;
}

@media (min-width:961px) {
    nav.mainNav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    nav.mainNav li:hover > a {
        color: #f0a317;
        text-decoration: none;
    }

    nav.mainNav ul + ul {
        height: 27px;
    }

    nav.mainNav ul.sub-menu {
        position: absolute;
        left: -18px;
        top: 100%;
        background: #fff;
        line-height: 1.2;
        display: block;
        min-width: 185px;
        padding: 15px 18px;
        border-radius: 7px;
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 300ms ease, visibility 300ms ease, margin 300ms ease;
        -o-transition: opacity 300ms ease, visibility 300ms ease, margin 300ms ease;
        transition: opacity 300ms ease, visibility 300ms ease, margin 300ms ease;
    }

    nav.mainNav ul li:hover ul.sub-menu {
        margin-top: -1px;
        opacity: 1;
        visibility: visible;
    }

    nav.mainNav ul li.menu-item-has-children:hover > a:after {
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
        color: #f0a317;
    }

    nav.mainNav ul.sub-menu li a:before {
        content: "";
        position: absolute;
        left: -8px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-top: -0.5px;
        height: 0;
        width: 2px;
        background: #f0a317;
        -webkit-transition: height 150ms ease-in-out;
        -o-transition: height 150ms ease-in-out;
        transition: height 150ms ease-in-out;
    }

    nav.mainNav ul.sub-menu li a:hover:before,
    nav.mainNav ul.sub-menu li.current-menu-item > a:before {
        height: calc(100% - 2px);
    }
}

@media (max-width:960px) {

    [data-mobile] {
        display: block;
    }

    [data-desktop] {
        display: none;
    }

    .header {
        position: fixed;
        left: 0;
        top: 0;
        min-width: 320px;
        width: 100%;
        z-index: 900;
        -webkit-transition: left 300ms ease;
        -o-transition: left 300ms ease;
        transition: left 300ms ease;
    }

    .header .blockGrid.headerBG {}

    nav.mainNav {
        position: fixed;
        z-index: 998;
        right: -250px;
        top: 0;
        height: 100%;
        width: 250px;
        overflow: auto;
        background: #000;
        padding: 25px;
        -webkit-transition: right 300ms ease;
        -o-transition: right 300ms ease;
        transition: right 300ms ease;
    }

    nav.mainNav ul {
        display: block;
    }

    nav.mainNav ul li {
        width: 100%;
        padding: 0 !important;
    }

    nav.mainNav ul li + li {
        margin: 10px 0 0 0;
    }

    nav.mainNav ul li a {
        display: block;
        padding: 5px 0;
    }

    nav.mainNav .cartWidget {
        margin-left: 0;
    }

    nav.mainNav .cartWidget .cartWidget--total {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    nav.mainNav .cartWidget .cartWidget--icon {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin: 0 8px 0 0;
    }

    nav.mainNav ul li.show-sub-menu > ul.sub-menu,
    nav.mainNav ul li.current-menu-parent > ul.sub-menu {
        display: block;
    }

    nav.mainNav ul li.show-sub-menu > a,
    nav.mainNav ul li.current-menu-parent > a {
        color: #f0a317;
    }

    nav.mainNav ul li.show-sub-menu > a:after,
    nav.mainNav ul li.current-menu-parent > a:after {
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
        color: #f0a317;
    }

    nav.mainNav ul.sub-menu {
        display: none;
        background: #1f1f1f;
        width: calc(100% + 50px);
        padding: 20px 25px;
        margin: 5px 0 -15px -25px;
    }

    nav.mainNav ul.sub-menu li a {
        color: #fff
    }


    .cartWidgetMobile {
        margin-right: 10px;
        margin-top: -2px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none !important;
    }

    .cartWidgetMobile:hover,
    .cartWidgetMobile:focus {
        color: #f1a417;
    }

    .cartWidgetMobile i {
        margin-right: 5px;
        font-size: 20px;
    }

    .header--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .navToggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 24px;
        cursor: pointer;
        -webkit-transition: right 250ms ease-in-out;
        -o-transition: right 250ms ease-in-out;
        transition: right 250ms ease-in-out;
    }

    .navToggle span {
        width: 30px;
        height: 3px;
        background: #fff;
        display: block;
        position: relative;
        -webkit-transition: background 200ms ease-in-out;
        -o-transition: background 200ms ease-in-out;
        transition: background 200ms ease-in-out;
    }

    .navToggle span:before,

    .navToggle span:after {
        content: "";
        position: absolute;
        left: 0;
        top: -8px;
        width: 100%;
        height: 100%;
        background: #fff;
        -webkit-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }

    .navToggle span:before {
        top: auto;
        bottom: -8px;
    }

    body:before {
        content: "";
        position: fixed;
        z-index: 890;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(240, 163, 23, 0.5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        -webkit-transition: visibility 250ms ease-in-out, opacity 250ms ease-in-out;
        -o-transition: visibility 250ms ease-in-out, opacity 250ms ease-in-out;
        transition: visibility 250ms ease-in-out, opacity 250ms ease-in-out;
    }

    body.show-nav {
        overflow: hidden !important;
    }

    body.show-nav:before {
        opacity: 1;
        visibility: visible;
    }

    body.show-nav .pageContainer,
    body.show-nav .header {
        left: -250px;
    }

    body.show-nav nav.mainNav {
        right: 0;
    }

    body.show-nav .navToggle span {
        background: transparent;
    }

    body.show-nav .navToggle span:before {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 0;
    }

    body.show-nav .navToggle span:after {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 0;
    }

}

@media (min-width:680px) {
    [data-mobile-md] {
        display: none;
    }
}

@media (max-width:680px) {
    [data-mobile-md] {
        display: block;
    }

    [data-desktop-md] {
        display: none;
    }
}

section {
    position: relative;
    z-index: 5;
}

/* Intro */
.section-intro {
    height: calc(100vh - 75px);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.section-intro:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/intro-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-animation: intro_image_zoom 12000ms linear forwards 1;
    animation: intro_image_zoom 12000ms linear forwards 1;
}

.section-intro-actions {
    /*position: absolute; left:0; bottom:0;*/
    width: 100%;
    text-align: center;
    padding: 20px;
}

.section-intro-actions > div + div {
    margin-top: 60px;
}

.section-intro-title {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    z-index: 10;
    /*position: absolute; z-index:20; left:0; top:0; width:100%;*/
    text-align: center;
}

.section-intro-title > div {
    max-width: 980px;
    padding: 0 20px;
    margin: 0 auto;
}

.section-intro-title h1 {
    font-size: 50px;
    font-weight: normal;
    margin: 0;
}

.section-intro-title h2 {
    font-size: 25px;
    font-weight: 500;
    margin: 0;
}

@media (max-width:680px) {
    .section-intro-title h1 {
        font-size: 35px;
    }

    .section-intro-actions > div + div {
        margin-top: 30px;
    }
}

/* Products */
.section-product-desc {
    padding: 90px 0 70px;
    background: #000;
}

.section-product-desc h2.title + .productD {}

.productD {
    position: relative;
    margin-top: 100px;
}

.productD.mh {}

.productD--image {
    width: calc(100% + 200px);
    position: relative;
}

.productD--image.mobile {
    display: none;
}

.productD--desc .limitWidth {
    max-width: 400px;
}

.productD--desc h3 {
    margin-bottom: 50px;
}

.productD--desc p {
    margin: 22px 0
}

.productD--desc-actions {
    text-align: center;
}

.productD-SBM .productD--image {}

.productD--motoInfo h3 {
    margin-bottom: 0;
}

.productD--motoInfo .bikeSelectContainer {
    margin: 20px 0 40px;
}

@media (max-width:960px) {
    .productD--image {
        width: 100%;
    }
}

@media (max-width:860px) {
    .section-product-desc {
        padding: 70px 0;
    }

    .productD--desc > .limitWidth {
        max-width: 50%;
    }

    .productD--desc {
        top: 0 !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }

    .productD + .productD {
        margin-top: 140px !important;
    }

}

@media (max-width:680px) {
    .productD.mh {
        min-height: 0;
        padding-bottom: 0;
    }

    .productD--image {
        width: 100%;
    }

    .productD--desc .limitWidth {
        max-width: 400px;
    }

    .productD--motoInfo {
        display: none;
    }
}


@media (min-width:681px) {
    .productD:not(.mh) .productD--desc {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: TranslateY(-50%);
        -ms-transform: TranslateY(-50%);
        transform: TranslateY(-50%);
        z-index: 5;
        width: 100%;
    }

    .productD.mh {
        min-height: 1000px;
        padding-bottom: 100px;
    }

    .productD.mh .productD--desc {
        position: relative;
        z-index: 10;
    }

    .productD.mh div[data-desktop-md] .productD--image {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .productD--desc .bikeSelectContainer {
        min-width: 640px;
    }

    .productD-SBM-noTitle .productD--desc {
        position: absolute;
        top: 120px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .productD + .productD {
        margin-top: 0;
    }
}

@media (min-width:681px) and (max-width:940px) {
    .productD.mh {
        min-height: 800px;
    }
}

@media (max-width:840px) {
    .productD.mh {
        padding-bottom: 0;
    }
}

/*
@media (max-width:680px){
    .productD--desc {top:120px; transform:none; }
}*/

@media (max-width:680px) {
    .productD--image {
        margin-left: -20px;
        width: calc(100% + 40px);
    }

    .productD--desc {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
        padding-top: 100px;
    }

    .productD--desc-actions {
        margin-top: 10px;
    }

    .productD {
        margin-top: 0;
    }

    .productD--desc h3 {
        margin-bottom: 30px;
    }

    .productD + .productD {
        margin-top: 0px !important;
    }
}

@media (max-width:480px) {
    .section-product-desc {
        padding: 40px 0;
    }
}

.section-products {
    background: #f5f5f5;
}

.section-products .rating {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blockGrid.productsBG {
    width: 100%;
    margin: 0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.blockGrid.productsBG .blockGrid--item {
    width: 33.333%;
    padding: 0;
}

.blockGrid.productsBG .blockGrid--item:nth-child(2) .product {
    background: #f5f5f5;
}



.product {
    background: #fff;
    font-size: 14px;
    text-align: center;
    color: #313131;
    padding: 75px 25px 125px;
    height: 100%;
    position: relative;
}

.product a {
    color: #313131;
    text-decoration: none !important;
}

.product-lg {
    max-width: 620px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
}

.product--image {
    position: relative;
}

.product--image img {
    max-height: 260px;
}

.product--badge {
    position: absolute;
    top: -65px;
    right: -15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f1a417;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


.product--desc {
    min-height: 81px;
    line-height: 1.3;
    max-width: 280px;
    margin: 20px auto 10px;
    font-size: 15px;
}

.product--desc h3 {
    font-weight: 500;
    font-size: 14px;
    margin: 0 0 2px;
}

.product--desc p {
    margin: 0;
}

.product--price {
    font-weight: 500;
    margin: 5px 0
}

.product--price .price.price-old {
    position: relative;
    padding: 0 3px;
}

.product--price .price.price-old:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #f00;
}

.product--actions {
    position: absolute;
    left: 0;
    bottom: 70px;
    width: 100%;
    padding: 0 45px;
}

.product--actions .button--flex {
    height: 28px;
}

.cpatc .productActions {
    display: block;
}

.cpatc .productActions > div:first-child {
    display: none;
}

.cpatc .productActions > div + div {
    margin: 0;
}

.productActions .button {
    font-size: 15px;
}

.productActions .button.loading:before {
    background-size: 16px;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
}

.productActions .button .button--flex {
    height: 28px;
}

.product--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    max-width: 480px;
    margin: 30px auto 0;
}

.product--flex .product--actions {
    position: static;
}

.product--flex .product--actions .button--flex {
    padding: 5px 10px;
}

.product--flex .product--price {
    text-align: center;
    margin: 0 0 8px;
}

.product--flex .product--desc {
    margin: 0;
}

.rating {
    line-height: 0;
    color: #f1a417;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rating i + i {
    margin-left: 3px;
}

.rating i {
    font-size: 0;
    color: transparent;
}

.rating i:before {
    font-size: 18px;
    color: #f1a417;
}

@media (max-width:960px) {
    .product {
        padding: 110px 35px 125px
    }

    .section-products {
        background: #fff;
    }

    .section-products .row {
        padding: 0;
        max-width: none;
    }

    .blockGrid.productsBG .blockGrid--item {
        width: 50%;
    }
}

@media (max-width:860px) {
    .product-lg {
        padding: 0;
    }
}

@media (max-width:680px) {
    .product-lg .product--flex {
        -ms-flex-wrap: Wrap;
        flex-wrap: Wrap;
        margin: 20px auto 0;
    }

    .product-lg .product--flex > div {
        width: 100%;
    }

    .product-lg .product--flex > div + div {
        margin-top: 20px;
    }

    .product-lg .product--flex .product--actions {
        padding: 0;
    }

    .product-lg .product--flex .product--actions .button {
        width: 100%;
    }

    .product-lg .product--desc {
        min-height: 0
    }
}

@media (max-width:540px) {
    .blockGrid.productsBG .blockGrid--item {
        width: 100%;
    }
}

/* Product - single */
.section-product {
    position: relative;
    background: #f5f5f5;
    color: #313131;
    padding: 50px 0;
}

.section-product .row {
    position: relative;
    z-index: 5;
}

.section-product:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: #e2e0e0;
}

.section-product h1 {
    font-size: 33px;
    margin: 0 0 5px;
    font-weight: normal;
}

.section-product h1 + p {
    margin-top: 0;
}

.section-product .rating {
    margin: 15px 0
}

.section-product p + .rating {
    margin-top: -5px
}

.section-product ul {
    padding: 0;
    list-style: none;
    margin: 15px 0;
}

.section-product ul li {
    position: relative;
    padding-left: 15px
}

.section-product ul li:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #313131;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

.blockGrid.productFullBG {
    width: calc(100% + 60px);
    margin-left: -30px;
}

.blockGrid.productFullBG .blockGrid--50 {
    padding: 0 30px;
}

.blockGrid.productFullBG .wcppec-checkout-buttons.woo_pp_cart_buttons_div {
    display: none !important;
}

.productOptions {
    border: solid 1px #b3b1b1;
    margin: 40px 0;
    font-size: 15px;
}

.productOptions input {
    display: none;
}

.productOptions input:checked + .productOptions--bg {
    z-index: 5;
    background: #f1a417;
}

.productOptions input:checked + .productOptions--bg + .productOptions--text {
    color: #fff;
}

.productOptions--bg {
    position: absolute;
    left: -1px;
    top: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
}

.productOptions--label {
    position: relative;
    display: block;
    cursor: pointer;
    line-height: 1.3;
}

.productOptions--label.disabled {
    cursor: default;
    pointer-events: none;
}

.productOptions--label strong {
    font-weight: normal;
}

.productOptions--label small {
    font-size: 13px;
}

.productOptions--text-l1 {
    width: 90px;
}

.productOptions--text-l3 {
    width: 55px;
    text-align: right;
}

.productOptions--label + .productOptions--label {
    border-top: solid 1px #b3b1b1;
}

.productOptions--text {
    position: relative;
    z-index: 5;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    padding: 5px 15px;
}

.productActions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.productActions > div:first-child {
    display: none;
}

.productActions div:visible + div {
    margin-left: 80px;
}

.quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quantity input[type="button"] {
    color: #f1a417;
    font-size: 48px;
    border: none;
    background: none;
    padding: 0;
    line-height: 1;
}

.quantity input[type="button"].minus {
    position: relative;
    top: -3px;
}

.quantity input[type="text"] {
    font-size: 17px;
    margin: 0 10px;
    font-weight: normal;
    border: none;
    padding: 0;
    background: none;
    width: 25px;
    text-align: center;
}



.productGallery {
    padding-right: 10px;
}

.productGallery--full .slick-slide {
    /*height:300px; */
    background-position: top center;
    background-size: cover;
    position: relative;
}

.productGallery--full .slick-slide:before {
    content: "";
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/icon-zoom.svg) no-repeat center rgba(241, 164, 23, 0.4);
    background-size: 50px;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.productGallery--full .slick-slide:hover:before {
    opacity: 1;
}

.productGallery--full .slick-slide img {
    width: 100%;
}

.productGallery--full .slick-arrow {
    padding: 0;
    background: none;
    border: none;
    position: absolute;
    z-index: 10;
    left: -30px;
    top: 50%;
    margin-top: -22px;
    font-size: 44px;
    line-height: 0;
    color: #f1a417;
}

.productGallery--full .slick-arrow.slick-next {
    left: auto;
    right: -28px;
}

.productGallery--thumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: Wrap;
    flex-wrap: Wrap;
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-top: 5px;
}

.productGallery--thumbs-item {
    padding: 5px;
    width: 25%;
}

.productGallery--thumbs-item > a,
.productGallery--thumbs-item > div {
    display: block;
    width: 100%;
    padding-bottom: 100%;
    background-position: center;
    background-size: cover;
    border: solid 1px #d4d3d3;
    position: relative;
    cursor: pointer;
}

.productGallery--thumbs-item > div:before {
    content: "";
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/icon-zoom.svg) no-repeat center rgba(241, 164, 23, 0.4);
    background-size: 50px;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.productGallery--thumbs-item:hover > div:before {
    opacity: 1;
}

@media (max-width:1510px) and (min-width:961px) {
    .productGallery--full .slick-arrow.slick-prev {
        display: none !important;
    }
}

@media (max-width:960px) {
    .section-product:after {
        content: none;
        display: none;
    }

    .blockGrid.productFullBG .blockGrid--50 {
        width: 100%;
    }

    .blockGrid.productFullBG .blockGrid--50 + .blockGrid--50 {
        margin-top: 30px
    }

    .productGallery {
        padding: 0 30px;
    }

    .productGallery--full .slick-arrow {}

    .productGallery--full .slick-arrow.slick-next {}

    .productGallery--thumbs {
        display: none;
    }

    .productOptions {
        margin-bottom: 25px;
    }

    .productActions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .productActions div + div {
        margin: 20px 0 0;
    }
}

@media (max-width:480px) {
    .productOptions--text strong br {
        display: none;
    }

    .productOptions--text-l1,
    .productOptions--text-l2 {
        width: Calc(100% - 60px);
        text-align: left !important;
    }

    .productOptions--text-l2 {
        margin-top: -5px;
    }

    .productOptions--text-l3 {
        width: 60px;
        text-align: right;
        font-size: 16px;
    }

    .productOptions--text-l2 + .productOptions--text-l3 {
        margin-top: -25px;
    }

    .productGallery--full .slick-slide {
        height: 250px;
    }

    .productActions div + div {
        width: 100%;
    }

    .productActions .button {
        width: 100%;
        font-size: 16px;
    }
}

table.woocommerce-checkout-review-order-table {
    width: 100%;
}

.section-choose-your-mode {
    padding: 100px 0;
}

.section-choose-your-mode h2.title + p {
    font-size: 14px;
    margin-top: 0
}

.twentytwenty-wrapper {
    padding: 0 90px;
}

.cymContainer {
    position: relative;
    margin: 40px 0 0
}

.cymContainer [class^="cym--label"] {
    position: absolute;
    z-index: 30;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
}

.cymContainer .cym--label-right {
    right: 0px;
    left: auto;
}

.cymContainer .cym.twentytwenty-container {
    min-height: 350px;
}

@media (max-width:1400px) {
    .cymContainer [class^="cymContainer--label"] {
        left: -20px;
    }

    .cymContainer .cymContainer--label-right {
        left: auto;
        right: -20px;
    }
}

@media (max-width:1160px) {
    .cymContainer [class^="cymContainer--label"] {
        left: 0;
    }

    .cymContainer .cymContainer--label-right {
        left: auto;
        right: 0;
    }
}

@media (max-width:860px) {
    .cymContainer [class^="cymContainer--label"] {
        font-size: 13px;
    }
}

@media (max-width:580px) {
    .twentytwenty-wrapper {
        padding: 0;
    }

    .twentytwenty-handle {
        width: 40px;
        height: 40px;
        margin-left: -20px;
        margin-top: -20px;
        background-size: 30px auto;
    }

    .twentytwenty-container img {}
}

.section-easy-to-fit {
    padding: 50px 0 70px;
}

.blockGrid.easyToFitBG {
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blockGrid.easyToFitBG .blockGrid--33 {
    margin-top: 50px;
    min-width: 305px;
}

.etf {
    text-align: center;
}

.etf--image {
    margin: 10px 0 20px;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.etf--image div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    -webkit-transition: -webkit-transform 600ms ease;
    transition: -webkit-transform 600ms ease;
    -o-transition: transform 600ms ease;
    transition: transform 600ms ease;
    transition: transform 600ms ease, -webkit-transform 600ms ease
}

.etf--title h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #f1a417;
}

.etf--content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.etf--content p {
    margin: 5px 0 0;
}

.etf:hover .etf--image div,
.etf.hover .etf--image div {
    -webkit-transform: translateZ(0) scale(1.05);
    transform: translateZ(0) scale(1.05);
}

.section-still-not-convinced {
    padding: 50px 0 150px;
}

.videoContainer {
    width: 100%;
    /*background: #e5e5e5;*/
    margin: 80px 0 0
}

.videoContainer > div {
    position: relative;
}

.videoContainer > div iframe {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    /*height:auto!important; min-height:400px!important; width:100%!important; max-width:100%!important;*/
}

.avia-video {
    width: 100%;
}

.avia-video > div {
    position: relative;
    padding-bottom: 56.2667%;
}

.avia-video > div iframe {
    width: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    height: 100% !important;
}

.section-still-not-convinced + .section-productFull-testemonials {
    padding: 80px 0 40px
}

.section-productFull-testemonials + .section-productFull-get-one {
    padding-top: 40px
}

.section-testemonials {
    background: #e2e0e0;
    padding: 70px 0;
}

.section-testemonials h4 {
    color: #313131;
    font-size: 13px;
    text-align: center;
    font-weight: normal;
}

.section-testemonials h4 br {
    display: none;
}

.testemonialsSlider .slick-arrow {
    padding: 0;
    background: none;
    border: none;
    position: absolute;
    z-index: 10;
    left: -30px;
    top: 50%;
    margin-top: -15px;
    font-size: 30px;
    line-height: 0;
    color: #000
}

.testemonialsSlider .slick-arrow img {
    height: 30px;
}

.testemonialsSlider .slick-arrow.slick-next {
    left: auto;
    right: -30px;
}

.testemonialsSlider {
    margin: 60px 0 40px;
}

.testemonialsSlider .slick-slide {
    opacity: 0.25;
    -webkit-transition: opacity 300ms ease;
    -o-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
    outline: none !important;
}

.testemonialsSlider .slick-slide .rating {
    color: #b6b4b4;
}

.testemonialsSlider .slick-slide.slick-center {
    opacity: 1;
}

.testemonialsSlider .slick-slide.slick-center .rating {
    color: #f1a417;
}

.testemonial {
    text-align: center;
    font-size: 13px;
    color: #313131;
    max-width: 165px;
    margin: 0 auto;
}

.testemonial .rating {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 3px 0 0;
    -webkit-transition: color 300ms ease;
    -o-transition: color 300ms ease;
    transition: color 300ms ease
}

@media (max-width:980px) {
    .testemonialsSlider .slick-arrow {
        left: 0;
    }

    .testemonialsSlider .slick-arrow.slick-next {
        right: 0;
    }

    .etf--image {
        height: 250px;
    }
}

@media (max-width:960px) {

    .section-testemonials,
    .section-easy-to-fit {
        padding: 40px 0;
    }

    .section-still-not-convinced {
        padding: 40px 0
    }

    .section-still-not-convinced .videoContainer {
        margin-top: 40px;
    }

    .section-still-not-convinced + .section-productFull-testemonials {
        padding: 40px 0
    }
}

@media (max-width:860px) {
    .testemonialsSlider {
        margin: 40px 0;
    }

    .testemonialsSlider .slick-slide {
        opacity: 1;
    }

    .section-testemonials h4 {
        line-height: 1.3;
    }

    .section-testemonials h4 br {
        display: block;
    }

    .section-testemonials .button {
        width: 100%;
    }
}

.section-product-spec {
    background: url(../images/ozdaje_store.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 55px 0;
}

.section-product-spec h5 {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 12px;
}

.section-product-spec ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-product-spec ul + ul {
    margin-top: 20px;
}

.section-product-spec .limitWidth {
    max-width: 170px;
}

.section-product-spec .productImage {}

.section-product-spec .productImage img {
    display: block;
    margin: 0 auto;
}

.blockGrid.productSpecBG {
    margin-top: 40px;
}

.blockGrid.productSpecBG .blockGrid--33 {
    outline: none !important;
}

.blockGrid.productManeuBG .slick-dots,
.blockGrid.productSpecBG .slick-dots {
    width: 100%;
    margin: 30px 0 0;
    list-style: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blockGrid.productManeuBG .slick-dots li,
.blockGrid.productSpecBG .slick-dots li {
    text-indent: -999em;
    font-size: 0;
    margin: 4px;
}

.blockGrid.productManeuBG .slick-dots li button,
.blockGrid.productSpecBG .slick-dots li button {
    width: 6px;
    height: 6px;
    border-radius: 5px;
    border: none;
    background: #b1b1b1;
    padding: 0;
    -webkit-transition: background 250ms ease;
    -o-transition: background 250ms ease;
    transition: background 250ms ease;
}

.blockGrid.productManeuBG .slick-dots li button {
    background: #fff;
}

.blockGrid.productManeuBG .slick-dots li.slick-active button {
    background: #454343;
}

.blockGrid.productSpecBG .slick-dots li.slick-active button {
    background: #fff;
}

.iconText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 5px;
}

.iconText img {
    width: 22px;
    margin-right: 8px
}

.section-product-maneuvres {
    background: #e2e0e0;
    padding: 45px 0;
    text-align: center;
    color: #313131;
}

.section-product-maneuvres strong {
    font-weight: normal;
}

.section-product-maneuvres .blockGrid--33 {
    outline: none !important;
}

.blockGrid.productManeuBG {
    margin-top: 60px;
}

@media (min-width:681px) {
    .blockGrid.productManeuBG .blockGrid--33:hover .maneuvre {
        top: -30px
    }
}

.maneuvre {
    max-width: 170px;
    margin: 0 auto;
    position: relative;
    top: 0;
    -webkit-transition: top 300ms ease;
    -o-transition: top 300ms ease;
    transition: top 300ms ease;
}

.maneuvre--image {
    margin: 0 0 20px;
    font-size: 144px;
    line-height: 0;
}

.maneuvre--desc p {}

.section-you-may-also-like {
    padding: 55px 0 90px;
    background: #f5f5f5;
    color: #313131;
}

.section-you-may-also-like h2 {}

.section-you-may-also-like .product-lg {
    margin-top: 40px;
}

.section-you-may-also-like + .section-shop-misc {
    padding-top: 0;
}

@media (max-width:680px) {
    .section-product-maneuvres {
        padding: 30px 0;
    }

    .section-product-spec {
        background: #454343;
        padding: 30px 0
    }

    .section-product-spec .productImage {
        display: none;
    }

    .section-product-spec .limitWidth {
        margin: 0 auto;
        max-width: 200px;
    }
}

@media (max-width:480px) {
    .section-you-may-also-like {
        padding: 40px 0;
    }

    .section-you-may-also-like .product-lg {
        margin-top: 30px;
    }
}

.section-productFull-intro {
    background:
        /* url(../images/STS-intro-bg.png) no-repeat center*/
        #000;
    position: relative;
    outline: none !important;
}

.section-productFull-intro * {
    outline: none !important;
}

.section-productFull-intro video {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    outline: none !important
}

.section-productFull-intro .row {
    min-height: calc(100vh - 75px);
    position: relative;
    z-index: 10
}

.section-productFull-intro .play-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 20px;
    bottom: 40px;
}

.section-productFull-intro .play-video strong {
    font-size: 15px;
    color: #b6b6b6;
    font-weight: 500;
    margin-right: 20px;
}

.section-productFull-intro .start-calibration {
    position: absolute;
    left: 0;
    bottom: 200px;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.section-productFull-intro .start-calibration strong {
    font-size: 24px;
    color: #b6b6b6;
    font-weight: 500;
}

.section-productFull-intro .start-calibration .button-circle {
    margin-top: 50px;
}

@media (max-width:860px) {
    .section-productFull-intro .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding-bottom: 40px;
    }

    .section-productFull-intro .play-video,
    .section-productFull-intro .start-calibration {
        position: static;
    }

    .section-productFull-intro .start-calibration {
        max-width: none;
        padding: 0;
    }

    .section-productFull-intro .start-calibration strong {
        line-height: 1.3;
    }

    .section-productFull-intro .start-calibration .button-circle {
        margin-top: 30px;
    }
}

.el-misc .row:before {
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.section-productFull-info {
    padding: 100px 0;
    background: #000;
}

.section-productFull-info .row {
    position: relative;
}

.section-productFull-info .row:before {
    content: "";
    position: absolute;
    right: -200px;
    opacity: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url(../images/STS-presentation-bg.png);
    background-repeat: no-repeat;
    background-position: right top;
}

.section-productFull-info.p-STS .row:before {
    background-size: 50% auto;
}

.section-productFull-info .limitWidth {
    max-width: 355px;
}

.section-productFull-info .blockGrid {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.section-productFull-info .blockGrid .blockGrid--50:last-child {
    text-align: center;
}

.section-productFull-info .button-orderNow {
    margin-bottom: 40px;
}

.section-productFull-does-it-fit {
    padding: 55px 0 45px 0;
    background: #000;
}

.section-productFull-does-it-fit .row {
    min-height: 600px;
    position: relative;
    z-index: 5;
}

.section-productFull-does-it-fit .row:before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -200px;
    opacity: 0;
    top: -100px;
    width: 100%;
    height: 100%;
    background-image: url(../images/STS-compatibility-bg.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-position: right top;
}

.section-productFull-does-it-fit.sbm .row:before {
    background: url(../images/does_it_fit_SBM.jpg) no-repeat right top #000;
}

.section-productFull-does-it-fit + .section-choose-your-mode {
    margin-top: -100px;
    z-index: 4;
}

.section-productFull-does-it-fit .limitWidth {
    max-width: 570px;
}

.itFitsMessage {
    margin: 45px 0 20px;
    max-width: 570px;
}

.itFitsMessage h3 {
    color: #f1a417;
    margin: 0 0 20px;
}

.itFitsMessage .ff {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-wrap: Wrap;
    flex-wrap: Wrap;
    align-items: center;
    margin: 20px 0 0;
}

.itFitsMessage .ff .cf7-msg {
    font-weight: bold;
}

/*.itFitsMessage form {display:-webkit-box;display:-ms-flexbox;display:flex; -webkit-box-align:center; -ms-flex-align:center; align-items:center; margin:20px 0 0;}*/
.itFitsMessage form .wpcf7-form-control-wrap {
    width: calc(100% - 200px);
    display: block;
    position: relative;
}

.itFitsMessage form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    font-size: 14px;
    margin-top: 5px;
}

.itFitsMessage form input {
    height: 50px;
    width: 100%;
    border: solid 1px #fff;
    padding: 10px;
    color: #000;
    background: #fff;
    -webkit-transition: border 250ms ease;
    -o-transition: border 250ms ease;
    transition: border 250ms ease;
}

.itFitsMessage form input.wpcf7-not-valid {
    border-color: #f00;
}

.itFitsMessage form .loaderContainer {
    margin-left: 20px;
}

.itFitsMessage form button {
    width: 180px;
    height: 50px;
    border: none;
    background: #e6940c;
    color: #000;
    -webkit-transition: background 250ms ease;
    -o-transition: background 250ms ease;
    transition: background 250ms ease;
}

.itFitsMessage form button:hover {
    background: #e6940c;
}

.itFitsMessage .wpcf7-form .wpcf7-response-output {
    display: none !important;
}

.itFitsMessage--onSend {
    display: none;
}

.bikeMessage .wpcf7-response-output {
    text-align: left;
    margin-top: 30px;
}

.bikeMessage--itFits {
    display: none;
}

.motoHiddenFields {
    display: none !important;
}

@media (max-width:680px) {
    .itFitsMessage {
        text-align: center;
    }

    .itFitsMessage form {
        -ms-flex-wrap: Wrap;
        flex-wrap: Wrap;
    }

    .itFitsMessage form input {
        width: 100%;
        text-align: center;
    }

    .itFitsMessage form button {
        width: 100%;
    }

    .itFitsMessage form .wpcf7-form-control-wrap {
        text-align: center;
        width: 100%;
    }

    .itFitsMessage form .loaderContainer {
        width: 100%;
        margin: 20px 0 0;
    }

    .itFitsMessage form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
        position: static;
        margin: 10px 0 -5px;
    }
}

.section-productFull-testemonials {
    background: #000;
    padding: 0 0 40px;
}

.section-productFull-testemonials .testemonialsSlider {
    min-height: 100px;
}

.section-productFull-testemonials .testemonial {
    color: #fff;
    min-height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section-productFull-testemonials .testemonial p {
    height: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: height 200ms ease, opacity 200ms ease;
    -o-transition: height 200ms ease, opacity 200ms ease;
    transition: height 200ms ease, opacity 200ms ease;
}

.section-productFull-testemonials .testemonial--author {
    font-size: 18px;
    font-weight: normal;
    position: relative;
}

.section-productFull-testemonials .testemonial--author:before {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 1px;
    background: #f1a417;
    opacity: 0;
    bottom: 0;
    -webkit-transition: bottom 200ms ease, opacity 200ms ease;
    -o-transition: bottom 200ms ease, opacity 200ms ease;
    transition: bottom 200ms ease, opacity 200ms ease;
}

.section-productFull-testemonials .slick-arrow {
    color: #f1a417;
}

.section-productFull-testemonials .slick-slide.slick-center .testemonial--author:before {
    bottom: -8px;
    opacity: 1;
}

.section-productFull-testemonials .slick-slide.slick-center p {
    height: auto;
    opacity: 1;
    width: 100%;
}

.section-productFull-info.el-misc.hover .row:before,
.section-productFull-does-it-fit.el-misc.hover .row:before {
    right: 0;
    opacity: 1;
}

@media (max-width:960px) {
    .section-productFull-does-it-fit + .section-choose-your-mode {
        margin-top: 0px;
        padding: 80px 0 40px;
    }

    .section-productFull-does-it-fit {
        padding: 40px 0 80px;
    }

    .section-productFull-does-it-fit .row {
        min-height: 0;
    }

    .section-productFull-does-it-fit .row:before {
        background-size: auto 100%;
        height: calc(100% + 100px);
        top: 0;
    }

    .section-productFull-testemonials {
        padding: 40px 0;
    }

    select.select-model + .select2-container {
        width: 100% !important;
        max-width: 320px !important;
    }
}

@media (max-width:860px) {
    .section-productFull-testemonials .testemonial p {
        height: auto;
        opacity: 1;
    }

    .section-productFull-testemonials .testemonial--author:before {
        bottom: -7px;
        opacity: 1;
    }
}

@media (max-width:680px) {
    .section-productFull-does-it-fit {
        padding: 40px 0;
    }

    .section-productFull-does-it-fit .row:before {
        content: none;
        display: none;
    }

    .section-productFull-does-it-fit div[data-mobile-md] {
        margin: -40px 0 -20px;
    }

    .section-productFull-info {
        padding: 40px 0;
    }

    .section-productFull-info .row:before {
        content: none;
        display: none;
    }

    .section-productFull-info .blockGrid--50 {
        width: 100%;
    }

    .section-productFull-info .blockGrid--50 + .blockGrid--50 {
        margin-top: 40px;
    }

    .section-productFull-info .blockGrid--50 .button-orderNow {
        margin: 40px 0 0;
    }

    .section-productFull-info .blockGrid--50 div[data-mobile-md] {
        margin-top: -40px
    }

    .section-productFull-testemonials {
        padding: 40px 0;
    }

    .section-productFull-testemonials .testemonialsSlider {
        margin-bottom: 0
    }
}

.section-404 {
    background: #fff;
    padding: 120px 0;
}

.section-404 h2 {
    color: #000;
    font-size: 55px;
    margin: 0 0 20px;
}

.section-static {
    background: #fff;
    color: #000;
    padding: 50px 0;
}

.section-productFull-desc {
    padding: 45px 0;
    background: #000;
    text-align: center;
}

.section-productFull-desc h2.title {
    margin-bottom: 35px;
}

.section-productFull-desc .limitWidth {
    max-width: 450px;
    margin: 0 auto;
}

.fgrpBG {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 60px auto;
    max-width: 1120px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.fgrpBG--item {
    width: 33.333%;
    height: 600px;
    position: relative;
    text-align: center;
    padding: 60px 30px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.fgrpBG--item-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 1300ms ease;
    transition: -webkit-transform 1300ms ease;
    -o-transition: transform 1300ms ease;
    transition: transform 1300ms ease;
    transition: transform 1300ms ease, -webkit-transform 1300ms ease;
}

.fgrpBG--item-content {
    position: relative;
    z-index: 5;
}

.fgrpBG--item h2 {
    font-size: 24px;
    font-weight: 600;
    color: #f1a417;
    margin: 0 0 30px;
}

.fgrpBG--item p {
    max-width: 210px;
    margin: 20px auto;
}

.section-productFull-how-does-it-work {
    background: #000;
    padding: 45px 0;
}

.section-productFull-how-does-it-work .productD {
    margin-top: 0;
}

.section-productFull-manuevres {
    background: #000;
    padding: 0 0 100px;
    position: relative;
    z-index: 5;
    margin: -50px 0 0;
}

.section-productFull-manuevres h2.title {
    margin-bottom: 50px;
}

.section-productFull-manuevres:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 165px;
    opacity: 0.6;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 1400px;
    background: url(../images/STS_3.png) no-repeat top center #000;
    background-size: 100% auto;
}

.section-productFull-manuevres .maneuvre {
    text-align: center;
    color: #fff;
    max-width: 200px;
}

.section-productFull-manuevres .maneuvre--desc h2 {
    color: #f1a417;
    font-size: 27px;
}

.section-productFull-manuevres .maneuvre--image {
    height: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: Center;
    -ms-flex-pack: Center;
    justify-content: Center;
}

.section-productFull-manuevres .limitWidth {
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
}

.section-productFull-manuevres .blockGrid.productManeuBG {
    margin-top: 180px;
}

.section-productFull-get-one {
    background: transparent;
    padding: 120px 0;
    text-align: center;
    position: relative;
    z-index: 20;
}

@media (min-width:681px) {
    .fgrpBG--item:hover .fgrpBG--item-bg {
        -webkit-transform: Scale(1.05);
        -ms-transform: Scale(1.05);
        transform: Scale(1.05);
    }
}

@media (max-width:680px) {
    .fgrpBG {
        max-width: 340px;
        margin: 40px auto;
    }

    .fgrpBG--item {
        width: 100%;
        height: 400px;
        padding: 30px;
        background-position: 50% 22%;
    }

    .fgrpBG--item.hover .fgrpBG--item-bg {
        -webkit-transform: Scale(1.05);
        -ms-transform: Scale(1.05);
        transform: Scale(1.05);
    }

    .fgrpBG--item h2 {
        margin-bottom: 20px;
    }

    .section-productFull-how-does-it-work h2 {
        position: relative;
        z-index: 5;
    }

    .section-productFull-how-does-it-work .productD--image {
        top: -20px;
    }

    .section-productFull-how-does-it-work .productD--desc {
        padding-top: 0;
    }

    .section-productFull-manuevres {
        padding: 20px 0 40px
    }

    .section-productFull-manuevres .blockGrid.productManeuBG {
        margin-top: 40px;
    }

    .section-productFull-manuevres .blockGrid.productManeuBG .slick-dots li button {
        background: #454343;
    }

    .section-productFull-manuevres .blockGrid.productManeuBG .slick-dots li.slick-active button {
        background: #fff;
    }

    .section-productFull-get-one {
        padding: 40px 0;
    }
}

.blockGrid.gofymBG {
    margin-top: 90px;
}

.blockGrid.gofymBG > .blockGrid--50:first-child {
    margin-top: 40px;
}

.gofym--info .blockGrid {
    margin-bottom: 40px;
}

.qinfq--text {
    margin: 10px 0 0;
    line-height: 1.2;
}

.section-productFull-spec {
    background: #000;
    padding: 40px 0 140px;
}

.section-productFull-spec ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.specificationsGrid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: Wrap;
    flex-wrap: Wrap;
    width: calc(100% + 30px);
    margin: -15px 0 -15px -15px;
}

.specificationsGrid--item {
    width: 50%;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.specificationsGrid--trigger-image {
    margin: 0 0 15px;
}

.specificationsGrid--trigger-image img {
    height: 70px;
    pointer-events: none;
}

.specificationsGrid--trigger-text {
    font-size: 13px;
    font-weight: normal;
}

.specificationsGrid--trigger-icon {
    margin: 10px 0;
}

.specificationsGrid--trigger-icon span {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border: solid 2px rgba(241, 164, 23, 0.6);
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.specificationsGrid--trigger-icon span:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: Calc(100% - 4px);
    height: calc(100% - 4px);
    border: solid 1px rgba(241, 164, 23, 0.5);
    border-radius: 50%;
}

.specificationsGrid--trigger-icon span i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f1a417;
    color: #000;
    font-size: 10px;
}

.specificationsGrid--hidden {
    margin: 10px 0 0;
    display: none;
}

.specificationsGrid--input {
    display: none;
}

.specificationsGrid--input:checked + .specificationsGrid--trigger + .specificationsGrid--hidden {
    display: block;
}

.specificationsGrid--input:checked + .specificationsGrid--trigger .specificationsGrid--trigger-icon span {
    border-color: rgba(255, 255, 255, 0.6);
}

.specificationsGrid--input:checked + .specificationsGrid--trigger .specificationsGrid--trigger-icon span:before {
    border-color: rgba(255, 255, 255, 0.5);
}

.specificationsGrid--input:checked + .specificationsGrid--trigger .specificationsGrid--trigger-icon span i {
    background: #fff;
}

.specificationsGrid--input:checked + .specificationsGrid--trigger .specificationsGrid--trigger-icon span i:before {
    content: "\e904";
}

@media (max-width:680px) {
    .blockGrid.gofymBG {
        margin: 20px auto;
        width: 100%;
        max-width: 400px;
    }

    .blockGrid.gofymBG > .blockGrid--50 {
        width: 100%;
    }

    .blockGrid.gofymBG > .blockGrid--50 + .blockGrid--50 {
        margin-top: 30px;
    }

    .section-productFull-spec {
        text-align: center;
        padding: 40px 0;
    }

    .section-productFull-spec .blockGrid--50 {
        width: 100%;
    }

    .section-productFull-spec .blockGrid--50 + .blockGrid--50 {
        margin-top: 80px;
    }
}

@media (max-width:440px) {
    .section-productFull-spec .blockGrid--50 + .blockGrid--50 {
        margin-top: 40px;
    }

    .specificationsGrid--item {
        width: 100%;
    }
}

/* Cart */
.section-cart {
    background: #f5f5f5;
    padding: 50px 0 90px;
    color: #313131;
    font-size: 17px;
    position: static;
}

.section-cart h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.section-cart p {
    margin: 10px 0
}

.cartBreadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 40px;
    font-size: 15px;
}

.cartBreadcrumbs a {
    color: #f1a417;
}

.blockGrid.cartBG .blockGrid--left {
    width: calc(100% - 320px);
}

.blockGrid.cartBG .blockGrid--right {
    width: 320px;
    margin-top: 90px;
}

.blockGrid.cartBG .blockGrid--right p {
    line-height: 1.3;
}

.blockGrid.cartBG .blockGrid--right .button {
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    margin: 15px 0 0;
}

.blockGrid.cartBG .blockGrid--right .button--flex {
    height: 36px;
}

.blockGrid.cartBG .blockGrid--right .button-checkout {
    color: #fff;
}

.blockGrid.cartBG .blockGrid--right .button-paypal {
    background: #a0a3a0;
}

.blockGrid.cartBG .blockGrid--right .blockGrid.paymentOptBG {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-top: 18px;
    margin-bottom: 0;
}

.blockGrid.cartBG .blockGrid--right .blockGrid.paymentOptBG img {
    max-width: 70px;
}

.blockGrid.cartBG .blockGrid--right .blockGrid.paymentOptBG .blockGrid--item {
    padding: 0 5px;
}

.blockGrid.cartBG .blockGrid--right .countDownContainer {
    /*display: none;*/
}

.wcppec-checkout-buttons {
    margin: 30px 0 15px 0;
}

.wcppec-checkout-buttons + .button {
    margin: 0 0 15px !important;
}

.couponFormContainer {
    margin: 80px 0 0;
}

.couponFormContainer .couponForm input {
    background: #fff;
}

.couponForm {
    max-width: 470px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    margin: 15px 0;
    position: relative;
}

.couponForm.loading:before {
    content: "";
    position: absolute;
    z-index: 20;
    right: 42px;
    top: 50%;
    margin-top: -10px;
    /* margin-left: -12px; */
    width: 20px;
    height: 20px;
    background: url(../images/ajax-loader-button.gif) no-repeat center #fff;
    border-radius: 50%;
    background-size: 14px;
}

.couponForm.loading input,
.couponForm.loading .couponForm--btn {
    pointer-events: none;
    opacity: 0.5;
}

.couponForm input {
    height: 30px;
    border-radius: 3px;
    background: transparent;
    border: solid 1px #b7b7b7;
    padding: 3px 10px;
    width: calc(100% - 115px);
    -webkit-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
}

.couponForm--btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    height: 30px;
    border: none;
    border-radius: 3px;
    background: #313131;
    color: #a9a9a9;
    width: 110px;
    margin-left: 5px;
    padding: 0 10px 3px;
    -webkit-transition: opacity 200ms ease, color 250ms ease, background 250ms ease;
    -o-transition: opacity 200ms ease, color 250ms ease, background 250ms ease;
    transition: opacity 200ms ease, color 250ms ease, background 250ms ease;
}

.couponForm--btn button:hover {
    color: #fff;
    background: #000000;
}

.form-coupon-container {
    margin-top: 20px;
}

.form-coupon-container h3 {
    font-weight: 500 !important;
    color: #313131;
    font-size: 20px;
    margin: 0 0 17px;
}

.form-coupon-container .couponForm {
    margin: 0;
}

.form-coupon-container input {
    width: calc(100% - 115px) !important;
}

.form-coupon-container .couponForm--btn {
    height: 32px;
}


.cartProduct {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.cartProduct + .cartProduct {
    margin-top: 75px;
    border-top: solid 1px #b3b3b3;
    padding-top: 40px;
}

.cartProduct--image {
    width: calc(100% - 330px);
    min-width: 220px;
    max-width: 230px;
    padding-right: 40px;
}

.cartProduct--rating {
    font-size: 14px;
    margin-bottom: -40px;
}

.cartProduct--rating div {
    margin-top: 5px;
}

.cartProduct--misc {
    width: 330px;
    padding-bottom: 10px;
}

.cartProduct--misc h2 {
    font-size: 33px;
    font-weight: normal;
    margin: 0 0 10px
}

.cartProduct--misc-opt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.cartProduct--misc-opt .cpm-qty {
    width: 100px;
}

.cartProduct--misc-opt .cpm-price {
    font-weight: normal;
    text-align: right;
    padding-right: 35px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.cartProduct--misc-opt .cpm-remove {
    width: 20px;
    text-align: center;
}

.cartProduct--misc-opt .cpm-remove a {
    background: transparent;
    border: none;
    font-size: 12px;
    color: #b3b3b3;
    padding: 0;
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

.cartProduct--misc-opt .cpm-remove a:hover {
    color: #000;
    text-decoration: none;
}

.cartProductActions {
    margin: 0;
}

#wc_braintree_paypal_container {
    min-height: 55px;
}

.paypal-loaderContainer {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #111;
}

/* .paypal-loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 36px;
    border-radius: 22.5px;
    background: #ffc439;
    position: relative;
}
 */
/* .paypal-loader:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    border-radius: 22.5px;
} */

/* .paypal-loader:after {
    content: "";
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    margin: -12px 0 0 -12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: url(../images/ajax-loader-button.gif) no-repeat center #fff;
    background-size: 18px;
} */

.paypal-loader img {
    height: 17px;
    margin-left: 3px;
}

.paypal-loader-text {
    text-align: center;
    margin-top: 1px;
}

@media (max-width:960px) {
    .blockGrid.cartBG .blockGrid--right .button--flex {
        height: 45px;
    }

    .cartProduct--image {
        padding-right: 25px;
    }

    .cartProduct--misc {
        width: auto;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }
}

@media (max-width:860px) {

    .blockGrid.cartBG .blockGrid--left,
    .blockGrid.cartBG .blockGrid--right {
        width: 100%;
    }

    .blockGrid.cartBG .blockGrid--right {
        margin-top: 80px;
        max-width: 400px;
    }
}

@media (max-width:600px) {
    .couponFormContainer {
        margin: 70px 0 0;
    }

    .cartProduct--image {
        min-width: 120px;
        padding-right: 0;
    }

    .cartProduct--misc h2 {
        font-size: 23px;
    }

    .cartProduct--misc-opt .cpm-price {
        padding-right: 10px;
    }
}

@media (max-width:480px) {
    .section-cart {
        padding: 40px 0;
    }

    .cartProduct--misc h2 {
        font-size: 20px;
    }

    .blockGrid.cartBG .blockGrid--right .blockGrid.paymentOptBG .blockGrid--item {
        padding: 0 2px;
    }
}

@media (max-width:340px) {
    .blockGrid.cartBG .blockGrid--right .button--flex {
        height: 35px;
    }
}

.subtotal-cart {
    margin: 0 0 10px;
}

.subtotal-cart a {
    color: #000;
}

.subtotal-cart div + div {
    margin-top: 5px;
}

.subtotal-cart .woocommerce-Price-amount {
    font-weight: 500;
}

.subtotal-cart--total {
    font-size: 24px;
}

.subtotal-cart a.woocommerce-remove-coupon {
    color: #f1a417;
}

.button-text {
    margin: 15px 0 !important;
    font-weight: 300;
}

.button-text + .button {
    margin-top: 0 !important;
}

.button-text + .wcppec-checkout-buttons {
    margin-top: 15px;
}

.button-text.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.button-text.sp:before,
.button-text.sp:after {
    content: "";
    width: 10px;
    height: 1px;
    background: #000;
    margin: 0 10px;
}

.subtotal-cart + .button-text {
    margin-top: 25px !important;
}

/* Notifications */
.customNotifications {
    text-align: center;
}

.customNotifications .woocommerce-error {
    padding: 10px;
    font-size: 14px;
    margin: 0;
    border-radius: 5px;
}

.customNotifications .woocommerce-message {
    background: #FFD74A;
    padding: 10px;
    font-weight: 600;
    margin: 0;
    font-size: 14px;
    border: solid 1px #f1a417;
    text-align: center;
    border-radius: 5px;
}

.customNotifications #wcItemsNotifications {
    margin-top: 70px;
    margin-bottom: -50px;
}

.customNotifications #wcCheckoutCouponNotifications {
    margin: 20px 0 10px;
}

.customNotifications #wcCheckoutCouponNotifications2 {
    margin: 20px 0 0;
}

div.woocommerce-error,
div.woocommerce-message {
    background: #f1a417;
    color: #000;
    padding: 20px 20px;
    font-weight: 500;
    margin: 0 0 30px;
}

div.woocommerce-message a {
    color: #000;
}

div.woocommerce-error {
    background: #f00;
    color: #fff;
}

div.woocommerce-error a {
    color: #fff;
}

/* Checkout */
.section-checkout {
    position: relative;
    background: #fff;
    color: #313131;
    min-height: calc(100vh - 75px);
    padding: 85px 0;
}

.section-checkout:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: #e2e0e0;
}

.section-checkout .row {
    position: relative;
    z-index: 5;
    max-width: 1120px
}

.section-checkout a {
    color: #f1a417;
}

.woocommerce > .woocommerce-error {
    max-width: 1120px !important;
    margin: 0 auto -30px !important;
    padding: 30px !important;
    position: relative;
    z-index: 100;
}

.checkout > .woocommerce-error,
.checkout > div > ul {
    margin: 0 0 40px;
}

ul.woocommerce-error {
    border: solid 1px #941210;
    font-weight: 600;
}

.woocommerce-checkout-payment {
    margin: 0 !important;
}

.woocommerce-checkout-payment button {
    display: block !important;
}

.woocommerce-checkout-payment ul {
    margin: 0 !important;
    padding: 0 10px;
    border: solid 1px #dcdcdc;
    border-radius: 3px;
}

.woocommerce-checkout-payment ul li {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: Wrap;
    flex-wrap: Wrap;
}

.woocommerce-checkout-payment ul li + li {
    border-top: solid 1px #dcdcdc;
}

.woocommerce-checkout-payment ul li input {
    display: none;
}

.woocommerce-checkout-payment ul li input:checked + label:before {
    background: url(../../images/icon-check.svg) #f1a417 no-repeat center;
    border-color: #f1a417;
}

.woocommerce-checkout-payment ul li > label {
    width: 100%;
    position: relative;
    padding-left: 30px;
}

.woocommerce-checkout-payment ul li > label img {
    float: right;
    margin: 2px;
}

/* .woocommerce-checkout-payment ul li > label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: solid 1px #dcdcdc;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
} */

.woocommerce-checkout-payment ul li > label + div {
    width: 100%;
}

.woocommerce-checkout-payment ul li fieldset {
    border: none;
    padding: 0;
    margin: 0 0 10px;
}

.woocommerce-checkout-payment ul li p {
    margin: 10px 0 !important
}

.woocommerce-checkout-payment ul li .form-row {
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-checkout-payment ul li .form-row label {
    display: block;
    margin: 0 0 8px !important;
}

.woocommerce-checkout-payment ul li .form-row + .form-row {
    margin-top: 10px !important;
}

.woocommerce-checkout-payment ul li .wc-braintree-hosted-field {
    border: solid 1px #dcdcdc !important;
}

.woocommerce-checkout-payment ul li .woocommerce-error {
    margin: 0 !important;
}

.woocommerce-checkout-payment ul + .form-row.place-order {
    display: block !important;
}

form.woocommerce-cart-form {
    margin-top: 30px;
}

.form-row.form-row-first.wc-braintree-hosted-field-card-expiry-parent.wc-braintree-hosted-field-parent,
.form-row.form-row-last.wc-braintree-hosted-field-card-csc-parent.wc-braintree-hosted-field-parent {
    width: calc(50% - 5px);
}

.woocommerce form.checkout_coupon [name=coupon_code] {
    padding-top: 7px;
    padding-bottom: 9px;
}

.orderSummary {
    font-size: 16px;
    margin-top: -35px;
}

.orderSummaryTable {
    width: 100%;
    font-weight: normal;
}

.orderSummaryTable tr td {
    padding: 6px 0
}

.orderSummaryTable tr td:last-child {
    text-align: right;
}

.orderSummaryTable tr.orderSummaryTable--product {
    border-bottom: solid 1px #c8c7c7;
}

.orderSummaryTable tr.orderSummaryTable--product td {
    padding: 24px 0 15px 0;
}

.orderSummaryTable tr.orderSummaryTable--product strong {
    font-weight: normal;
    font-size: 20px;
    line-height: 1.2
}

.orderSummaryTable tr.orderSummaryTable--product .orderSummaryTable--product-image {
    border: solid 1px #d4d3d3;
    padding: 10px;
    border-radius: 3px;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.orderSummaryTable tr.orderSummaryTable--product .orderSummaryTable--product-image img {
    width: 100%;
    max-width: 95px;
}

.orderSummaryTable tr.orderSummaryTable--product .orderSummaryTable--product-qty {
    width: 25px;
    height: 25px;
    font-weight: normal;
    font-size: 12px;
    border-radius: 50%;
    background: #f1a417;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: -12px;
    top: -12px;
}

.orderSummaryTable tr.orderSummaryTable--total {
    border-top: solid 1px #c8c7c7;
}

.orderSummaryTable tr.orderSummaryTable--product + tr.orderSummaryTable--tr-t td {
    padding-top: 15px;
}

.orderSummaryTable tr.orderSummaryTable--tr-t td {
    padding-top: 5px;
}

.orderSummaryTable tr.orderSummaryTable--tr-t:nth-last-child(2) td {
    padding-bottom: 10px;
}

.orderSummaryTable tr.orderSummaryTable--tr-t:last-child {
    border-top: solid 1px #c8c7c7;
}

.orderSummaryTable tr.orderSummaryTable--tr-t:last-child td {
    padding-top: 10px;
}

.orderSummaryTable tr.orderSummaryTable--tr-b td {
    padding-bottom: 10px;
}

.orderSummaryTable tr td small {
    font-weight: 200;
}

.orderSummaryTable tr td small span {
    display: none;
}

.orderInfo {
    color: #313131;
    font-size: 15px;
    padding-right: 15px;
}

.orderInfo a {
    color: #f1a417;
}

.orderInfo h2 {
    font-weight: 500 !important;
    font-size: 20px;
    margin: 10px 0 5px;
}

.orderInfo input:not([type="checkbox"]),
.orderInfo select {
    border: solid 1px #c6c6c6;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 3px !important;
    height: 32px;
    font-size: 15px !important;
    padding: 3px 7px 5px !important;
    width: 100%;
    -webkit-transition: border-color 250ms ease;
    -o-transition: border-color 250ms ease;
    transition: border-color 250ms ease;
}

.orderInfo select {
    padding-left: 3px !important;
}

.orderInfo input.error,
.orderInfo select.error,
.orderInfo .selectCnt.error {
    border-color: #f00 !important;
}

.orderInfo .cb {
    margin-top: 10px;
}

.orderInfo .selectCnt {
    border: solid 1px #c6c6c6;
    border-radius: 3px;
    padding: 3px 7px 5px;
    position: relative;
}

.orderInfo .selectCnt select {
    border: none;
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 0 2px 50px;
}

.orderInfo .selectCnt--label {
    color: #a9a9a9;
}

.orderInfo[data-paypal-checkout="1"] .checkoutStep[data-step="3"] {
    display: block;
}

.orderInfo[data-paypal-checkout="1"] .checkoutStep[data-step="3"] .pp-row .borderBox--row-right {
    display: none;
}

.orderInfo[data-paypal-checkout="1"] .shop_table.woocommerce-checkout-review-order-table thead,
.orderInfo[data-paypal-checkout="1"] .shop_table.woocommerce-checkout-review-order-table tbody,
.orderInfo[data-paypal-checkout="1"] .shop_table.woocommerce-checkout-review-order-table tfoot tr:not(.shipping),
.orderInfo[data-paypal-checkout="1"] .shop_table.woocommerce-checkout-review-order-table tr.shipping th {
    display: none;
}

.orderInfo[data-paypal-checkout="1"] .shop_table.woocommerce-checkout-review-order-table tr.shipping td {
    display: block;
    width: 100%;
}

.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt--shipping:after {
    content: "Payment method";
    display: block;
    font-weight: 500 !important;
    font-size: 20px;
    margin: 30px 0 12px;
}

.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt--shipping ul {
    margin: 0 !important;
    padding: 0 10px !important;
    border: solid 1px #dcdcdc;
    border-radius: 3px;
}

.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt--shipping ul li {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: Wrap;
    flex-wrap: Wrap;
}

.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt--shipping ul li + li {
    border-top: solid 1px #dcdcdc;
}

.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt--shipping ul li input {
    display: none;
}

.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt--shipping ul li input:checked + label:before {
    background: url(../images/icon-check.svg) #f1a417 no-repeat center;
    border-color: #f1a417;
}

.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt--shipping ul li > label {
    width: 100%;
    position: relative;
    padding-right: 30px;
}

.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt--shipping ul li > label:before {
    content: "";
    position: absolute;
    right: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: solid 1px #dcdcdc;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
}

.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt--shipping ul li > label + div {
    width: 100%;
}

.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt table.shop_table,
.orderInfo[data-paypal-checkout="1"] .wc-tmp-cnt--shipping {
    height: auto;
    overflow: visible;
}



.selectCnt-checkout .select2-container {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 45px) !important;
    left: 45px;
    outline: none !important;
}

.selectCnt-checkout .select2-container * {
    outline: none !important;
}

.selectCnt-checkout .select2-container .select2-selection--single {
    height: 30px;
}

.selectCnt-checkout .select2-container--default .select2-selection--single {
    border: none !important;
}

.orderInfo-actions {
    margin-top: 20px !important;
}

.orderInfo-actions .button {
    width: 100%;
    color: #494949;
    font-size: 16px;
    font-weight: 300;
    border-radius: 3px;
}

.orderInfo-actions .button--flex {
    padding: 5px
}

.orderInfo-actions .button:hover {
    color: #fff;
}

.orderInfo--logo {
    text-align: center;
}

.orderInfo--logo img {
    width: 130px;
}

.orderInfo--steps {
    list-style: none;
    line-height: 1.2;
    margin: 30px 0 20px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.orderInfo--steps li + li:before {
    content: ">";
    margin: 0 8px;
    font-size: 16px;
}

.orderInfo--steps li span.current {
    color: #f1a417;
}

.cb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
}

.cb--input {
    display: none;
}

.cb--label {
    color: #a9a9a9;
    width: calc(100% - 20px);
    padding-left: 10px;
}

.cb--icon {
    width: 20px;
    height: 20px;
    border: solid 1px #dcdcdc;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
    position: relative;
    top: 2px;
}

.cb--input:checked + .cb--icon {
    background: url(../images/icon-check.svg) #f1a417 no-repeat center;
    border-color: #f1a417;
}

.cb--input:checked + .cb--icon + .cb--label {
    color: #313131;
}

.form-checkbox {
    margin: 0;
    line-height: 1.2;
}

.form-checkbox span.optional {
    display: none;
}

.form-checkbox input {
    display: none;
}

.form-checkbox input:checked + .form-checkbox-label {
    color: #313131;
}

.form-checkbox input:checked + .form-checkbox-label:before {
    background: url(../images/icon-check.svg) #f1a417 no-repeat center;
    border-color: #f1a417;
}

.form-checkbox-label {
    display: block;
    position: relative;
    padding-left: 30px;
    color: #a9a9a9;
}

.form-checkbox-label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border: solid 1px #dcdcdc;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 3px;
}

.checkoutStep {
    height: 0 !important;
    overflow: hidden !important;
}

/*.checkoutStep[data-step="1"] {display: block;}*/

.checkoutStep.active {
    height: auto !important;
    overflow: visible !important;
}

#customer_details {
    float: none;
    padding: 0;
}

#tmp_billing_state_field-input,
#tmp_billing_state_field-select {
    display: none;
}

#defaultFormContainer {
    height: 0 !important;
    overflow: hidden !important;
}

.woocommerce-checkout-payment .blockUI {
    display: none !important;
}

span.pp-info h3,
span.pp-info strong {
    display: none;
}

@media (max-width:960px) {
    .section-checkout {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .section-checkout:after {
        content: none;
        display: none;
    }

    .orderSummary {
        margin: 0;
    }


    .orderInfo {
        padding-right: 0;
    }

    .orderInfo--steps {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .blockGrid.checkoutBG .blockGrid--50 {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .blockGrid.checkoutBG .blockGrid--50:last-child {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        background: #f5f5f5;
        padding: 20px 20px 40px 20px;
        margin: 0 0 50px
    }
}

@media (max-width:480px) {
    .section-checkout {
        padding-bottom: 40px;
    }

    .section-checkout [class^="form--row-"] {
        width: 100% !important;
    }

    .section-checkout [class^="form--row-"] + [class^="form--row-"] {
        margin-top: 10px;
    }

    .blockGrid.checkoutBG .blockGrid--50:last-child {
        padding: 20px;
    }

    .orderSummaryTable tr.orderSummaryTable--product .orderSummaryTable--product-image {
        border: none;
        padding: 0;
    }

    .orderSummaryTable tr.orderSummaryTable--product .orderSummaryTable--product-image img {
        display: none;
    }

    .orderSummaryTable tr.orderSummaryTable--product .orderSummaryTable--product-qty {
        top: -1px;
    }

    .orderSummaryTable tr.orderSummaryTable--product strong {
        padding-left: 20px;
    }

    .orderSummaryTable tr.orderSummaryTable--product td {
        padding: 12px 0;
    }

    .form-row.form-row-first.wc-braintree-hosted-field-card-expiry-parent.wc-braintree-hosted-field-parent,
    .form-row.form-row-last.wc-braintree-hosted-field-card-csc-parent.wc-braintree-hosted-field-parent {
        width: 100%;
    }

    .orderInfo-actions {
        margin-top: 5px !important;
    }

    .orderInfo-actions .form--row-50 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .orderInfo-actions .form--row-50:first-child {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 10px;
        text-align: center;
    }
}


.borderBox {
    border: solid 1px #dcdcdc;
    border-radius: 3px;
    padding: 0 10px;
}

.borderBox .lab {
    display: inline-block;
    vertical-align: top;
    color: #a9a9a9;
    width: 50px;
    padding-right: 10px
}

.borderBox .lab-pl {
    width: calc(100% - 50px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: Wrap;
    flex-wrap: Wrap;
}

.borderBox span {
    margin-left: 3px;
}

.borderBox [data-set-value="zip"]:before,
.borderBox [data-set-value="country"]:before {
    content: ", ";
    margin-left: -3px;
}

.borderBox .cb {
    margin: 0;
}

.borderBox--row {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.borderBox--row + .borderBox--row {
    border-top: solid 1px #dcdcdc;
}

.borderBox--row-hidden {
    display: none;
    width: 100%;
    background: #e2e0e0;
    padding: 8px 10px;
    margin-top: 10px;
}

.borderBox--row-hidden ::-webkit-input-placeholder {
    color: #313131
}

.borderBox--row-hidden :-moz-placeholder {
    color: #313131
}

.borderBox--row-hidden ::-moz-placeholder {
    color: #313131
}

.borderBox--row-hidden :-ms-input-placeholder {
    color: #313131
}

.borderBox--row-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: calc(100% - 25px)
}

.borderBox--row-right {
    width: 25px;
    text-align: right;
}

.borderBox--row .info-circle {
    background: #f1a417;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 400;
    margin: 1px 0 0 8px;
    font-size: 13px;
    -webkit-transition: background 250ms ease;
    -o-transition: background 250ms ease;
    transition: background 250ms ease;
}

.borderBox--row .info-circle:hover {
    text-decoration: none;
    background: #000;
}

.borderBox--row-hidden input {
    background: transparent;
    border-color: #abaaaa;
}

.borderBox--row-hidden .form:not(.form-in) .form--row + .form--row {
    margin-top: 5px;
}

.borderBox--row-hidden .form h2 {
    font-size: 16px;
    margin-top: 10px;
}

.borderBox.paypal-c-info h3 {
    display: none;
}

label.borderBox--row {
    cursor: pointer;
}

label.borderBox--row > input:checked + .borderBox--row-left .cb--icon {
    background: url(../images/icon-check.svg) #f1a417 no-repeat center;
    border-color: #f1a417;
}

label.borderBox--row > input:checked + .borderBox--row-left .cb--icon + .cb--label {
    color: #313131
}

label.borderBox--row > input:checked + .borderBox--row-left + .borderBox--row-right + .borderBox--row-hidden {
    display: block;
}

/* Thank you page */
.section-thank-you-intro {
    padding: 80px 0 135px;
    position: relative;
    background: url(../images/Thank_you_page.jpg) no-repeat center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
}

.section-thank-you-intro:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 5;
}

.section-thank-you-intro .row {
    position: relative;
    z-index: 10;
}

.section-thank-you-intro h1 {
    font-weight: bold;
    font-size: 34px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
}

.section-thank-you-intro h1 + p strong {
    font-weight: 500;
}

.section-thank-you-intro p {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.3;
}

.section-thank-you-intro .icon-check {
    width: 90px;
    height: 90px;
    border: solid 1px #fff;
    border-radius: 50%;
    margin: 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #f1a417;
    font-size: 0;
    text-indent: -999em;
}

.section-thank-you-intro .icon-check:before {
    font-size: 30px;
}

.section-thank-you-intro .limitWidth {
    max-width: 470px;
    margin: 0 auto;
}

.section-thank-you-intro .scrollTo {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 15;
    margin-left: -15px;
    padding: 0;
    font-size: 30px;
    border: none;
    line-height: 0;
    background: none;
    cursor: pointer;
}

.section-exclusive-offer {
    background: #f5f5f5;
    text-align: center;
    padding: 45px 0 55px;
    font-size: 15px;
    line-height: 1.3;
    color: #313131;
}

.section-exclusive-offer h2 {
    color: #f1a417;
    font-size: 30px;
    font-weight: bold;
}

.section-exclusive-offer h2 + p {
    margin-top: -10px;
}

@media (min-width:681px) {
    .section-exclusive-offer .flipClockContainer {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 40px;
        margin-bottom: 70px;
        width: calc(100% + 10px);
        margin-left: -5px;
    }

    .section-exclusive-offer .flipClockContainer.flip-clock-wrapper ul {
        width: 60px;
        height: 90px;
        padding: 0;
        margin: 5px;
    }

    .section-exclusive-offer .flipClockContainer.flip-clock-wrapper ul li {
        line-height: 85px;
    }

    .section-exclusive-offer .flipClockContainer.flip-clock-wrapper ul li a div div.inn {
        font-size: 65px;
    }

    .section-exclusive-offer .flipClockContainer.flip-clock-wrapper .flip-clock-dot {
        width: 4px;
        height: 4px;
        left: 8px;
    }

    .section-exclusive-offer .flipClockContainer.flip-clock-wrapper .flip-clock-divider .flip-clock-label {
        font-size: 21px;
        width: 130px;
        bottom: -60px;
    }

    .section-exclusive-offer .flipClockContainer.flip-clock-wrapper .flip-clock-divider.minutes .flip-clock-label,
    .section-exclusive-offer .flipClockContainer.flip-clock-wrapper .flip-clock-divider.seconds .flip-clock-label {
        left: 25px;
    }
}

@media (max-width:680px) {
    .section-exclusive-offer .flipClockContainer {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 50px;
    }
}

.discountedProductBG {
    text-align: left;
    margin-top: 40px;
}

.discountedProduct--desc {
    font-size: 18px;
    line-height: 1.4;
    max-width: 320px;
    padding-top: 25px;
}

.discountedProduct--desc ul {
    padding: 0 0 0 20px;
}

.discountedProduct--desc ul li + li {
    margin-top: 4px;
}

.discountedProduct--desc .price-old {
    color: #f00;
    position: relative;
    margin-right: 10px;
}

.discountedProduct--desc .price-old:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #000;
}

.pab {
    margin-top: 60px;
    align-items: center;
}

.pab .discountedProduct--image {
    text-align: right;
}

.pab .discountedProduct--image img {
    max-height: 300px;
    width: auto;
}

.pab .discountedProduct--desc {
    padding-top: 0;
}

.pab .discountedProduct--desc .pab--price {
    font-size: 24px;
    font-weight: 500;
}

@media (max-width:680px) {
    .discountedProductBG .blockGrid--50 {
        width: 100%;
    }

    .pab .discountedProduct--image {
        text-align: left;
        margin-bottom: 25px;
    }
}

/* Shop misc. */
.section-shop-misc {
    padding: 45px 0;
    background: #fff;
    color: #6a6a6a;
    font-size: 14px;
}

.section-shop-misc h3 {
    font-size: 14px;
    margin: 0;
    font-weight: 300;
    text-align: center;
}

.section-shop-misc ~ section {
    padding: 80px 0
}

.blockGrid.shopPerksBG {
    -webkit-box-align: Stretch;
    -ms-flex-align: Stretch;
    align-items: Stretch;
    margin-bottom: 45px
}

.blockGrid.shopPerksBG .blockGrid--item {
    width: 25%;
}

.perk {
    text-align: center;
    height: 100%;
    font-weight: 300;
    line-height: 1.3;
}

.perk--icon {
    height: 55px;
    font-size: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 8px;
}

.blockGrid.paymentOptBG {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 45px;
    margin-top: 20px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.blockGrid.faqBG h3 {
    text-align: left;
    font-weight: 500;
}

.toggleBlock--trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.toggleBlock--trigger h3 {
    font-weight: normal;
}

.toggleBlock--trigger:after {
    content: "â¯ˆ";
    font-size: 12px;
    margin-left: 5px;
    position: relative;
    top: -1px;
}

.toggleBlock--content {
    display: none;
    max-width: 580px;
    margin: 20px auto 0;
}

.toggleBlock--content strong {
    font-weight: 500;
}

.toggleBlock.active .toggleBlock--content {
    display: block;
}

.toggleBlock.active .toggleBlock--trigger:after {
    color: #f1a417;
    ;
    -webkit-transform: rotate(90deg);
    ;
    -ms-transform: rotate(90deg);
    ;
    transform: rotate(90deg)
}

.toggleBlock {
    display: block;
    width: 100%;
}

.toggleBlock + .toggleBlock {
    margin-top: 40px;
}

@media (max-width:680px) {
    .blockGrid.shopPerksBG {
        margin-top: -20px;
        margin-bottom: 45px;
    }

    .blockGrid.shopPerksBG .blockGrid--item {
        width: 50%;
        padding: 20px;
    }

    .blockGrid.paymentOptBG {
        width: calc(100% + 10px);
        margin-left: -5px;
    }

    .blockGrid.paymentOptBG [class^="blockGrid--"] {
        padding: 0 5px;
    }

    .blockGrid.faqBG .blockGrid--50 {
        width: 100%;
    }

    .blockGrid.faqBG .blockGrid--50 + .blockGrid--50 {
        margin-top: 15px;
    }
}


/* Hotspots */
.hotSpotContainer {
    position: relative;
}

.hotSpotContainer .hotSpot {
    opacity: 0;
    position: absolute;
    z-index: 10;
    width: 12px;
    height: 12px;
    top: 0;
    left: 0;
    text-align: center;
    background-color: #fff;
    color: #fff;
    border-radius: 100%;
    -webkit-transition: left 300ms ease-in-out, top 300ms ease-in-out, opacity 300ms ease-in-out;
    -o-transition: left 300ms ease-in-out, top 300ms ease-in-out, opacity 300ms ease-in-out;
    transition: left 300ms ease-in-out, top 300ms ease-in-out, opacity 300ms ease-in-out
}

.hotSpotContainer .hotSpotContainer--image {
    width: 100%;
}

.show-hotspots .hotSpotContainer .hotSpot {
    opacity: 1;
}

.show-hotspots .hotSpotContainer .hotSpotContainer--image + .hotSpot + .hotSpot {
    -webkit-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}

.show-hotspots .hotSpotContainer .hotSpotContainer--image + .hotSpot + .hotSpot + .hotSpot {
    -webkit-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.hotSpotContainer .hotSpot--circle {
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #fff;
    opacity: 0;
    -webkit-animation: pulsate 1500ms ease-in-out infinite;
    animation: pulsate 1500ms ease-in-out infinite;
}

.hotSpotContainer .hotSpot--tooltip {
    position: absolute;
    left: 100px;
    top: -100px;
    margin: 0 !important;
    padding-left: 10px;
    font-size: 18px;
    white-space: nowrap;
    line-height: 1;
}

.hotSpotContainer .hotSpot--tooltip:before {
    content: "";
    width: 35px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 100%;
    top: 10px;
}

.hotSpotContainer .hotSpot--tooltip:after {
    content: "";
    width: 1px;
    height: 110px;
    background: #fff;
    position: absolute;
    left: -35px;
    top: 10px;
    -webkit-transform: rotate(32deg);
    -ms-transform: rotate(32deg);
    transform: rotate(32deg);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.hotSpotContainer .hotSpot--tooltip-reverse {
    top: auto;
    bottom: -100px;
    left: 150px;
}

.hotSpotContainer .hotSpot--tooltip-reverse:after {
    left: -34px;
    top: 11px;
    height: 150px;
    -webkit-transform: rotate(132deg);
    -ms-transform: rotate(132deg);
    transform: rotate(132deg);
}

div[data-mobile-md] .hotSpotContainer .hotSpot--tooltip {
    left: auto;
    right: 0;
    padding: 0 34px 0 0;
    top: -2px;
}

div[data-mobile-md] .hotSpotContainer .hotSpot--tooltip:before,
div[data-mobile-md] .hotSpotContainer .hotSpot--tooltip:after {
    display: none;
}

div[data-mobile-md] .hotSpotContainer .hotSpot {
    width: 16px;
    height: 16px;
}

div[data-mobile-md] .hotSpotContainer .hotSpot:before {
    content: "\e917";
    font-family: 'icomoon' !important;
    color: #000;
    font-size: 9px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

div[data-mobile-md] .hotSpotContainer .hotSpot--circle {
    width: 26px;
    height: 26px;
    top: -5px;
    left: -5px;
    opacity: 1;
    border: solid 2px rgba(241, 164, 24, .5);
    -webkit-animation: none;
    animation: none
}

div[data-mobile-md] .hotSpotContainer .hotSpot--tooltip {
    display: none;
}

div[data-mobile-md] .hotSpotContainer .hotSpot.active .hotSpot--tooltip {
    display: block;
}

div[data-mobile-md] .hotSpotContainer .hotSpot.active:before {
    content: "\e904";
    color: #f1a417;
}

div[data-mobile-md] .hotSpotContainer .hotSpot.active .hotSpot--circle {
    border: solid 2px rgba(255, 255, 255, .5);
}

.productD-SBM .hotSpot-motion-detection .hotSpot--tooltip-reverse {
    bottom: -140px
}

.productD-SBM .hotSpot-motion-detection .hotSpot--tooltip-reverse:after {
    height: 170px;
    -webkit-transform: rotate(142deg);
    -ms-transform: rotate(142deg);
    transform: rotate(142deg);
}


@media (max-width:760px) {
    .hotSpotContainer .hotSpot--tooltip {
        font-size: 16px;
    }
}

@media (max-width:680px) {
    .hotSpotContainer {
        text-align: center;
    }

    .hotSpotContainer .hotSpot {
        cursor: pointer;
    }

    .hotSpotContainer .hotSpot--tooltip {
        font-size: 20px;
    }

    .hotSpotContainer .hotSpotContainer--image {
        width: auto;
    }
}

/* Team */
.section-team {
    padding: 70px 0 200px;
    background: #000;
}

.blockGrid.teamInfoBG {
    width: calc(100% + 140px);
    margin-left: -70px;
}

.blockGrid.teamInfoBG .blockGrid--50 {
    padding: 0 70px;
}

.blockGrid.teamBG {
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-top: 100px;
}

.blockGrid.teamBG .blockGrid--33 {
    padding: 5px;
}

.blockGrid.teamBG .blockGrid--33:nth-last-child(-n+3) .teamMember--info h3 {
    font-size: 20px;
}

.teamMember {
    height: 520px;
    position: relative;
}

.teamMember--image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: -webkit-filter 1000ms ease;
    transition: -webkit-filter 1000ms ease;
    -o-transition: filter 1000ms ease;
    transition: filter 1000ms ease;
    transition: filter 1000ms ease, -webkit-filter 1000ms ease;
}

.teamMember--image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    opacity: 1;
    -webkit-transition: opacity 1000ms ease;
    -o-transition: opacity 1000ms ease;
    transition: opacity 1000ms ease;
}

.teamMember--info {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px 35px;
}

.teamMember--info h3 {
    font-size: 26px;
    color: #f1a417;
    font-weight: 500;
    margin: 0;
}

.teamMember--info p {
    font-size: 16px;
    margin: 0;
}

@media (max-width:860px) {
    .section-team {
        padding: 70px 0;
    }

    .blockGrid.teamBG {
        margin-top: 40px;
    }

    .blockGrid.teamBG .blockGrid--33 {
        width: 50%;
    }

    .blockGrid.teamInfoBG .blockGrid--50 {
        width: 100%;
    }

    .blockGrid.teamInfoBG .blockGrid--50 + .blockGrid--50 {
        margin-top: 25px;
    }
}

@media (max-width:670px) {
    .teamMember--info h3 {
        font-size: 20px;
    }

    .teamMember--info p {
        font-size: 12px;
    }
}

@media (min-width:541px) {
    .teamMember:hover .teamMember--image {
        -webkit-filter: grayscale(0);
        filter: none;
    }

    .teamMember:hover .teamMember--image:before {
        opacity: 0
    }
}

@media (max-width:540px) {
    .blockGrid.teamBG .blockGrid--33 {
        width: 100%;
        padding: 10px 5px
    }

    .teamMember.hover .teamMember--image {
        -webkit-filter: grayscale(0);
        filter: none;
    }

    .teamMember.hover .teamMember--image:before {
        opacity: 0
    }
}

@media (max-width:480px) {
    .section-team {
        padding: 40px 0;
    }

    .teamMember--info {
        padding: 25px;
    }
}

/* Our story */
.section-our-story {
    background: #f1a417;
    padding: 70px 0;
    color: #000;
}

.mediaSlider {
    margin: 80px 0 20px;
}

.mediaSlider--slide {
    text-align: center;
    min-height: 130px
}

.mediaSlider--slide-logo img {
    display: block;
    margin: 0 auto;
    max-height: 20px;
    position: relative;
    top: 10px;
    -webkit-transition: max-height 400ms linear, top 400ms linear;
    -o-transition: max-height 400ms linear, top 400ms linear;
    transition: max-height 400ms linear, top 400ms linear;
}

.mediaSlider--slide-text {
    font-size: 20px;
    line-height: 1.2;
    margin: 20px 0 0;
    opacity: 0;
    -webkit-transition: opacity 450ms ease-out, visibility 450ms linear, margin 450ms linear;
    -o-transition: opacity 450ms ease-out, visibility 450ms linear, margin 450ms linear;
    transition: opacity 450ms ease-out, visibility 450ms linear, margin 450ms linear;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.mediaSlider .slick-arrow {
    background: none;
    border: none;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 200;
    font-size: 85px;
    line-height: 0;
}

.mediaSlider .slick-next {
    left: auto;
    right: 0;
}

.mediaSlider .slick-slide {
    opacity: 0.5;
    padding-top: 20px;
    min-height: 135px;
    outline: none !important;
}

.mediaSlider .slick-active.slick-center {
    opacity: 1;
}

.mediaSlider .slick-active.slick-center .mediaSlider--slide-logo img {
    max-height: 50px;
    top: 0
}

.mediaSlider .slick-active.slick-center .mediaSlider--slide-text {
    opacity: 1;
    margin-top: 20px;
}

@media (max-width:860px) {
    .mediaSlider .slick-slide {
        padding-top: 0;
    }

    .mediaSlider--slide {
        max-width: 480px;
        margin: 0 auto;
        padding: 0 40px;
    }
}

@media (max-width:780px) {
    .mediaSlider .slick-arrow {
        top: 50%;
        margin-top: -20px;
        font-size: 40px;
    }
}

@media (max-width:480px) {
    .section-our-story {
        padding: 40px 0 60px;
    }

    .mediaSlider {
        margin-top: 60px;
    }
}


/* Say hello */
.section-say-hello {
    padding: 115px 0 70px;
    background: url(../images/team.jpg) #000 no-repeat top center;
    background-size: cover;
    font-size: 18px;
}

.section-say-hello input,
.section-say-hello textarea {
    vertical-align: top;
    height: 54px;
    width: 100%;
    border: solid 1px rgba(255, 255, 255, 0.5);
    background: transparent !important;
    padding: 15px;
    border-radius: 5px;
    -webkit-transition: border-color 250ms ease;
    -o-transition: border-color 250ms ease;
    transition: border-color 250ms ease;
}

.section-say-hello input.wpcf7-not-valid,
.section-say-hello textarea.wpcf7-not-valid {
    border-color: #f00 !important;
}

.section-say-hello input:focus,
.section-say-hello input:active {
    border-color: rgba(241, 164, 24, 1);
}

.section-say-hello textarea {
    height: 60px;
    max-height: 400px;
    resize: none;
}

.section-say-hello .limitWidth {
    max-width: 700px;
    margin: 50px auto 0;
}

.section-say-hello .button-circle {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.section-say-hello .form--row.mmt {
    margin-top: 60px !important;
}

/* Form */
.form--row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% + 10px);
    margin-left: -5px;
    -ms-flex-wrap: Wrap;
    flex-wrap: Wrap;
}

.form--row + .form--row {
    margin-top: 10px;
}

.form--row [class^="form--row-"] {
    padding: 0 5px;
}

.form--row-25 {
    width: 25%;
}

.form--row-33 {
    width: 33.333%;
}

.form--row-50 {
    width: 50%;
}

.form--row-40 {
    width: 40%;
}

.form--row-60 {
    width: 60%;
}

.form--row-66 {
    width: 66.667%;
}

.form--row-100 {
    width: 100%;
}

.form--row p {
    margin: 0 !important;
    width: 100% !important
}

.expressCheckout {
    margin-bottom: 20px;
    border-bottom: solid 1px #c6c6c6;
    padding-bottom: 30px;
}

.expressCheckout p {
    font-weight: 200;
    color: #a9a9a9;
    margin: 13px 0 10px !important;
}


.form-lg .form--row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% + 100px);
    margin-left: -50px;
    -ms-flex-wrap: Wrap;
    flex-wrap: Wrap;
}

.form-lg .form--row + .form--row {
    margin-top: 35px;
}

.form-lg .form--row-50 {
    width: 50%;
    padding: 0 50px;
}

.form-lg .form--row-100 {
    width: 100%;
    padding: 0 50px;
}

.form .wpcf7-form-control-wrap {
    display: block;
    position: relative;
}

.form .wpcf7-not-valid-tip {
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: calc(100% + 5px);
    padding-left: 17px;
}

.form--loader {
    text-align: center;
}

.form--loader .ajax-loader {
    display: none !important;
    margin: 0 !important;
    padding: 10px !important;
    background-color: #fff;
    border-radius: 50%;
    background-repeat: no-repeat !important;
    background-position: center !important;
    -webkit-transition: margin 250ms ease;
    -o-transition: margin 250ms ease;
    transition: margin 250ms ease;
}

.form--loader .ajax-loader.is-active {
    display: inline-block !important;
    margin-top: 25px !important;
}

.cf-blog {
    max-width: 480px;
    margin: 30px 0;
}

.cf-blog input {
    padding: 5px 10px;
    width: 100%;
    border: solid 1px #000;
    height: 40px;
}

.cf-blog input.wpcf7-not-valid {
    border-color: #f00;
}

.cf-blog button {
    height: 40px;
    padding: 5px 20px;
    border-radius: 0;
    font-size: 18px;
    opacity: 1;
    -webkit-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
}

.cf-blog .form {
    position: relative;
}

.cf-blog .form--row-flex > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.cf-blog .wpcf7-not-valid-tip {
    display: none !important;
}

.cf-blog + div.wpcf7-response-output {
    position: static;
    text-align: left;
    font-size: 16px;
    margin: -10px 0 20px !important
}

.cf-blog .form--loader {
    position: relative;
    margin-left: 5px;
}

.cf-blog .form--loader .ajax-loader {
    position: absolute;
    z-index: 20;
    left: 50%;
    top: 50%;
    margin: -10px 0 0 -10px !important;
}

.cf-blog .form--loader .ajax-loader.is-active + button {
    pointer-events: none;
    opacity: 0.5;
}

.woocommerce-shipping-fields {
    width: 100%;
    display: none;
}

/*.woocommerce-account-fields {
    display: none;
}*/

/*.itFitsMessage--onSend {
    display: block;
}*/

.woocommerce-shipping-fields span {
    margin: 0 !important;
    font-size: 15px;
    padding-left: 7px;
}

.woocommerce-shipping-fields .form-row:first-child {
    margin-top: 10px !important;
}

.woocommerce-shipping-fields .form-row {
    float: none !important;
    width: 100%;
    clear: none;
    margin: 5px 0 !important;
}

.woocommerce-shipping-fields .form-row .required {
    border: none;
    text-decoration: none;
    margin: 0px;
}

.woocommerce-shipping-fields .form-row span.optional {
    display: none;
}

.woocommerce-shipping-fields .form-row label {
    display: block;
    width: 100%;
    font-weight: 200;
    color: #a9a9a9;
    margin: 0 0 5px;
    padding: 0;
}

.woocommerce-billing-fields__field-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: Wrap;
    flex-wrap: Wrap;
}

.woocommerce-billing-fields__field-wrapper .form-row {
    width: 100%;
    float: none !important;
    clear: none !important;
    width: calc(100% + 10px);
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: -5px;
    padding: 0 5px;
}

.woocommerce-billing-fields__field-wrapper .form-row.fcol-100 {
    width: calc(100% + 5px);
}

.woocommerce-billing-fields__field-wrapper .form-row.fcol-50 {
    width: calc(49% + 5px);
}

.woocommerce-billing-fields__field-wrapper .form-row.fcol-60 {
    width: calc(60% + 5px);
}

.woocommerce-billing-fields__field-wrapper .form-row.fcol-40 {
    width: calc(40% + 5px);
}

.woocommerce-billing-fields__field-wrapper .form-row.fcol-33 {
    width: calc(32% + 5px);
}

.woocommerce-billing-fields__field-wrapper .form-row.fcol-60 + .form-row {
    width: calc(40% + 5px);
}

.woocommerce-billing-fields__field-wrapper .form-row label {
    display: block;
    width: 100%;
    font-weight: 200;
    color: #a9a9a9;
    margin: 0 0 5px;
    padding: 0;
}

p.return-to-shop {
    margin-bottom: 20px;
}

.footer--bottom .footer_newsletter input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email {
    color: #fff;
    text-transform: lowercase;
}

.woocommerce a.added_to_cart {
    padding: 0px;
    display: inline-block;
    margin-top: 10px;
    line-height: 45px;
    border-radius: 0;
}

.page-checkout .select2-dropdown {
    background: #fff;
}

.woocommerce-billing-fields__field-wrapper .form-row.form-heading {
    font-weight: 500;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}

.woocommerce-billing-fields__field-wrapper .form-row.form-heading label {
    font-weight: 500 !important;
    color: #313131;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

.woocommerce-billing-fields__field-wrapper .form-row.form-heading span:not(.form-heading-label) {
    display: none;
}

.woocommerce-billing-fields__field-wrapper .form-row + .form-row.form-heading {
    margin-top: 20px;
}

.woocommerce-billing-fields__field-wrapper .form-row .required {
    border: none;
    text-decoration: none;
    margin: 0px;
}

.woocommerce-billing-fields__field-wrapper .form-row.hide-optional span.optional {
    display: none;
}

.form-row.woocommerce-mailchimp-opt-in {
    display: none;
}

.wc-tmp-cnt table.shop_table {
    height: 0;
    overflow: hidden;
}

.woocommerce-checkout-review-order-table table {
    font-size: 16px;
    margin-top: 10px;
}

/*
.woocommerce-checkout-review-order-table thead,
.woocommerce-checkout-review-order-table tbody {
    display: none;
}
*/

.woocommerce-checkout-review-order-table th {
    font-weight: 400;
    text-align: left;
    padding: 6px 0;
}

.woocommerce-checkout-review-order-table td {
    text-align: right;
    padding: 6px 0;
    font-weight: 400;
}

.woocommerce-checkout-review-order-table td strong {
    font-weight: 400;
}

.woocommerce-checkout-review-order-table td a {
    font-weight: 200;
}

.woocommerce-checkout-review-order-table tr.cart-discount a {
    font-size: 14px;
}

.woocommerce-checkout-review-order-table tr.order-total {
    border-top: solid 1px #c8c7c7;
}
/*

.woocommerce-checkout-review-order-table tr.shipping {
    display: none;
}
*/

.woocommerce-checkout-review-order-table tr.shipping {
    display: table-cell;
    width: 100%;
}
.creditCardForm .wc-credit-card-form {
    border: none;
    margin: 0;
    padding: 0;
}

.creditCardForm .wc-credit-card-form .wc-stripe-elements-field {
    width: 100%;
    border: solid 1px #c6c6c6;
    background: transparent;
    margin: 0;
    border-radius: 3px;
    height: 32px;
    padding: 3px 7px 5px;
}

.creditCardForm .wc-credit-card-form .wc-stripe-elements-field > div {
    margin-top: 4px !important;
}

.creditCardForm .wc-credit-card-form iframe {
    height: 23px !important;
}


.loaderContainer {
    position: relative;
}

div.wpcf7 {
    position: relative;
}

div.wpcf7 .loaderContainer .ajax-loader {
    z-index: 10;
    position: absolute;
    width: 36px;
    height: 36px;
    left: 50%;
    top: 50%;
    margin: -18px 0 0 -18px;
    background: url(../images/ajax-loader-button.gif) no-repeat center #fff;
    background-size: 20px;
    padding: 5px;
    border-radius: 50%;
}

div.wpcf7 .loaderContainer .ajax-loader.is-active + button {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

div.wpcf7-response-output {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    display: block;
    color: #46b450;
    font-weight: 700;
    padding: 0;
    border: none;
    text-align: center;
    margin: 20px 0 0;
    font-size: 15px;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 15px;
    font-weight: normal;
    display: block;
    position: absolute;
    left: 50%;
}

.postid-680 {
    background-color: #000
}

.main-header-menu .menu-item:hover > .menu-link,
.main-header-menu .menu-item:hover > .ast-menu-toggle,
.main-header-menu .ast-masthead-custom-menu-items a:hover,
.main-header-menu .menu-item.focus > .menu-link,
.main-header-menu .menu-item.focus > .ast-menu-toggle,
.main-header-menu .current-menu-item > .menu-link,
.main-header-menu .current-menu-ancestor > .menu-link,
.main-header-menu .current-menu-item > .ast-menu-toggle,
.main-header-menu .current-menu-ancestor > .ast-menu-toggle {
    color: #f1a32d;
}

/*
.form div.wpcf7 .loaderContainer .ajax-loader.is-active + button {opacity:0.5;}
*/
@media (max-width:780px) {
    .form-lg .form--row {
        width: calc(100% + 20px);
        margin-left: -10px;
    }

    .form-lg [class^="form--row-"] {
        padding: 0 10px;
    }
}

@media (max-width:480px) {
    .section-say-hello {
        padding: 40px 0
    }

    .form-lg .form--row-50 {
        width: 100%;
    }

    .form-lg .form--row-50 + .form--row-50 {
        margin-top: 20px;
    }

    .form-lg .form--row + .form--row {
        margin-top: 20px;
    }

    .form .wpcf7-not-valid-tip {
        position: relative;
        top: 8px;
    }

    .woocommerce-billing-fields__field-wrapper .form-row.fcol-50,
    .woocommerce-billing-fields__field-wrapper .form-row.fcol-60,
    .woocommerce-billing-fields__field-wrapper .form-row.fcol-40,
    .woocommerce-billing-fields__field-wrapper .form-row.fcol-33,
    .woocommerce-billing-fields__field-wrapper .form-row.fcol-60 + .form-row {
        width: calc(100% + 5px) !important;
    }

}


/* Blog */
.section-blog {
    background: #000;
    padding: 40px 0 120px
}

.masonryGrid {
    display: inline-block;
    vertical-align: top;
    width: calc(100% + 20px);
    margin: -10px 0 -10px -10px;
    position: relative;
}

.masonryGrid--item,
.masonryGrid--sizer {
    width: 33.333%;
}

.masonryGrid--item-sm .blogItem--image {
    height: 200px;
}

.masonryGrid--item-md .blogItem--image {
    height: 320px;
}

.masonryGrid--item-xlg .blogItem--image {
    height: 520px;
}

.masonryGrid .column {
    float: left;
}

.masonryGrid--item {
    opacity: 1;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.masonryGrid--item.hidden {
    display: none;
}

.masonryGrid--item.opacity {
    opacity: 0;
}

.masonryGrid--loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .3);
    z-index: 10;
    display: none;
}

.blogItem {
    display: block;
    padding: 10px;
    text-decoration: none !important;
}

.blogItem--image {
    height: 400px;
    position: relative;
    background-color: #ccc;
    overflow: hidden;
}

.blogItem--image > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 650ms ease;
    transition: -webkit-transform 650ms ease;
    -o-transition: transform 650ms ease;
    transition: transform 650ms ease;
    transition: transform 650ms ease, -webkit-transform 650ms ease;
}

.blogItem--content {
    background: #fff;
    color: #000;
    padding: 10px 10px 25px;
    min-height: 193px;
}

.blogItem--content date {
    color: #a6a6a6;
    font-size: 12px;
}

.blogItem--content h3 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: normal;
    position: relative;
    margin: 12px 0;
    padding: 0 0 12px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.blogItem--content h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 95px;
    height: 1px;
    background: #000;
}

.blogItem--content p {
    font-size: 16px;
    font-weight: 200;
    margin: 0;
}

.blogItem:hover .blogItem--image > div {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.comment-list,
.comment-list a {
    color: #222;
}

.comment-list a.comment-reply-link {
    background: #f1a417;
    border: none;
    display: inline-block;
    vertical-align: top;
    color: #313131;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    border-radius: 13px;
    padding: 6px 19px;
    -webkit-transition: color 250ms ease, background 250ms ease;
    -o-transition: color 250ms ease, background 250ms ease;
    transition: color 250ms ease, background 250ms ease;
}

.comment-list a.comment-reply-link:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.comment-list a#cancel-comment-reply-link {
    font-size: 14px;
    color: #f1a417;
}

.comment-list,
.comment-list ol,
.comment-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list li {
    border-bottom: solid 1px #ccc;
    padding: 20px 0;
}

.comment-list li.depth-2 .comment-wrap {
    padding-left: 30px;
}

.comment-list li.depth-3 .comment-wrap {
    padding-left: 60px;
}

.comment-list li.depth-4 .comment-wrap {
    padding-left: 90px;
}

.comment-list li.depth-5 .comment-wrap {
    padding-left: 120px;
}

.comment-list li.depth-6 .comment-wrap {
    padding-left: 150px;
}

.comment-list li.depth-7 .comment-wrap {
    padding-left: 180px;
}

.comment-list li.depth-8 .comment-wrap {
    padding-left: 210px;
}

.comment-list li.depth-9 .comment-wrap {
    padding-left: 240px;
}

.comment-list li.depth-10 .comment-wrap {
    padding-left: 270px;
}

.comments-error {
    color: #f00;
    font-weight: 400;
    margin: 15px 0 0;
    display: none;
}

.comment-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.comment-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-img img {
    width: 100%;
}

.comment-body {
    width: calc(100% - 50px);
    padding: 0 0 0 20px;
}

.comment-body h4 {
    text-transform: capitalize;
    margin: 0 0 5px;
}

.comment-body p {
    margin: 5px 0 15px;
}

.comment-body .comment-date {
    font-size: 14px;
}

.comment-respond {
    margin: 40px 0 20px;
    max-width: 680px;
}

.comment-respond a {
    color: #222;
}

.comment-respond h3 {
    font-weight: 300;
    font-size: 28px;
    margin: 0;
}

.comment-respond .comment-notes {
    width: 100%;
    margin: 10px 0 25px;
}

.comment-respond .form-submit {
    margin: 20px 0 0;
}

.comment-respond .form-submit input.submit {
    background: #f1a417;
    border: none;
    height: 40px;
    display: inline-block;
    vertical-align: top;
    color: #313131;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    border-radius: 20px;
    padding: 6px 20px;
    -webkit-transition: color 250ms ease, background 250ms ease;
    -o-transition: color 250ms ease, background 250ms ease;
    transition: color 250ms ease, background 250ms ease;
}

.comment-respond .form-submit input.submit:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.comment-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.comment-form label {
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    border: solid 1px #ccc;
    font-size: 16px;
    height: 45px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    height: 40px;
    vertical-align: top;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-left: solid 3px #ccc;
    -webkit-transition: border 200ms ease;
    -o-transition: border 200ms ease;
    transition: border 200ms ease;
}

.comment-form input.error,
.comment-form textarea.error {
    border-color: #f00;
}

.comment-form textarea {
    resize: none;
    height: 150px;
    margin-left: -1px;
}

.comment-form-comment {
    width: 100%;
    margin: 0 !important;
    border: solid 1px #ccc;
}

.comment-form-author,
.comment-form-email {
    width: 50%;
    margin: -1px 0 0 !important;
    border: solid 1px #ccc;
}

.comment-form-author input {
    margin-left: -1px;
}

.comment-form-email input {
    margin-left: -2px;
}

.comment-awaiting-moderation {
    font-size: 14px;
    color: #f00;
    font-weight: 400;
    margin: 10px 0 !important;
}

@media (min-width: 961px) {
    [data-columns]::before {
        content: '3 .column.size-1of3';
    }

    .size-1of3 {
        width: 33.333%;
    }
}

@media (max-width:960px) {
    .comment-list li.depth-2 .comment-wrap {
        padding-left: 15px;
    }

    .comment-list li.depth-3 .comment-wrap {
        padding-left: 30px;
    }

    .comment-list li.depth-4 .comment-wrap {
        padding-left: 45px;
    }

    .comment-list li.depth-5 .comment-wrap {
        padding-left: 60px;
    }

    .comment-list li.depth-6 .comment-wrap {
        padding-left: 75px;
    }

    .comment-list li.depth-7 .comment-wrap {
        padding-left: 90px;
    }

    .comment-list li.depth-8 .comment-wrap {
        padding-left: 105px;
    }

    .comment-list li.depth-9 .comment-wrap {
        padding-left: 120px;
    }

    .comment-list li.depth-10 .comment-wrap {
        padding-left: 135px;
    }
}

@media (max-width:960px) and (min-width:641px) {
    [data-columns]::before {
        content: '2 .column.size-1of2';
    }

    .size-1of2 {
        width: 50%;
    }

    .size-1of2:first-child .masonryGrid--item-xlg:last-child .blogItem--image {
        height: 240px;
    }

    .size-1of2:last-child .masonryGrid--item-md:last-child .blogItem--image {
        height: 520px;
    }

    .masonryGrid--item,
    .masonryGrid--sizer {
        width: 50%;
    }

    .masonryGrid--item-xlg .blogItem--image {
        height: 300px;
    }

    .masonryGrid--item-sm .blogItem--image {
        height: 300px;
    }
}

@media (max-width:640px) {
    [data-columns]::before {
        content: '1 .column.size-1of1';
    }

    .size-1of1 {
        width: 100%;
    }

    .blogItem--image {
        height: 350px !important;
    }

    .masonryGrid--item,
    .masonryGrid--sizer {
        width: 100%;
    }

    .comment-wrap {
        display: block;
    }

    .comment-body {
        width: 100%;
        padding: 0;
        margin-top: 25px;
    }
}

@media (max-width:460px) {

    .comment-form-author,
    .comment-form-email {
        width: 100%;
        margin: -1px 0 0 !important;
        border: solid 1px #ccc;
    }

    .comment-form-email input {
        margin-left: -1px;
    }
}

/* Blog slider */
.section-slider {
    position: relative;
}

.blogSliderNav {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blogSliderNav button {
    padding: 0;
    border: none;
    background: none;
    font-size: 85px;
    line-height: 0;
    opacity: 0.6;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.blogSliderNav button:hover {
    opacity: 1;
}

.blogSliderBullets {
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
}

.blogSliderBullets ul {
    list-style: none;
    margin: -7px 0 -7px -7px;
    width: calc(100% + 14px);
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blogSliderBullets ul li {
    margin: 7px;
}

.blogSliderBullets ul li.slick-active button {
    background: #fff;
}

.blogSliderBullets button {
    text-indent: -999em;
    font-size: 0;
    width: 16px;
    height: 2px;
    background: #8e8e90;
    border: none;
    -webkit-transition: background 250ms ease;
    -o-transition: background 250ms ease;
    transition: background 250ms ease;
}

.blogSlider--slide {
    height: calc(100vh - 75px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    outline: none !important;
}

.blogSlider--slide-text {
    max-width: 920px;
    width: 100%;
    padding: 0 70px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}

.blogSlider--slide-text h2 {
    font-size: 33px;
    font-weight: 300;
    margin: 0 0 40px;
    min-height: 80px;
}

.blogSlider--slide-text p {
    font-size: 18px;
}

.blogSlider--slide-text a.button-readMore {
    margin-top: 70px;
}

.blogSlider--slide-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 100px 0;
}

@media (max-width:960px) {
    .blogSlider--slide {
        height: auto;
    }

    .blogSlider--slide-inner {
        padding: 50px 0 100px 0;
    }

    .blogSlider--slide-text h2 {
        margin: 0 0 20px;
    }

    .blogSlider--slide-text h2 {
        min-height: 0;
    }

    .blogSliderNav button {
        font-size: 65px;
    }

    .blogSliderNav button img {
        height: 60px;
    }
}

@media (max-width:680px) {
    .blogSlider--slide-text br {
        display: none;
    }

    .blogSlider--slide-text a.button-readMore {
        margin-top: 40px;
    }
}

@media (max-width:480px) {
    .blogSlider--slide-text {
        padding: 0 40px;
    }

    .blogSlider--slide-text p {
        display: none;
    }

    .blogSlider--slide-text a.button-readMore {
        margin-top: 0;
    }

    .blogSliderNav {
        padding: 0 10px;
    }

    .blogSliderNav button {
        font-size: 50px;
    }

    .blogSliderNav button img {
        height: 40px;
    }
}

/* Article */
.section-intro-article {
    min-height: calc(100vh - 75px);
    padding: 80px 0 160px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.section-intro-article > .row > div {
    max-width: 400px;
}

.section-intro-article h1 {
    font-size: 33px;
    font-weight: 200;
}

.section-intro-article p {
    font-size: 20px;
    line-height: 1.3;
}

.section-intro-article .sia-actions {
    position: absolute;
    left: 50%;
    bottom: 95px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.section-article {
    padding: 40px 0 60px;
    background: #fff;
    color: #000;
    font-size: 18px;
}

.section-article h2 {
    font-weight: 300;
    font-size: 28px;
    margin: 45px 0 28px 0;
}

.section-article p {
    margin: 18px 0;
    text-align: justify;
}

.section-article p:first-child {
    margin-top: 0;
}

.section-article .img-left {
    float: left;
    margin: 0 15px 15px 0;
}

.section-article img.img-left + h2 {
    margin-top: 0px
}

.section-article div.img-float-container {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 45px;
}

.section-article .blockGrid--content h2 {
    font-weight: 500;
    font-size: 30px;
}

.section-article .blockGrid--content h3 {}

.blockGrid.articleBG .blockGrid--content {
    width: calc(100% - 330px);
}

.blockGrid.articleBG .blockGrid--content .bikeSelectContainer {
    margin: 25px 0 40px;
}

/*.blockGrid.articleBG .blockGrid--content .bikeSelectContainer select.select-model + .select2-container .select2-selection__rendered, 
.blockGrid.articleBG .blockGrid--content .bikeSelectContainer select.select-model + .select2-container .select2-selection__placeholder {color:#000!important}*/
.blockGrid.articleBG .blockGrid--content .bikeSelectContainer .itFitsMessage form input {
    border-color: #888;
}

.blockGrid.articleBG .blockGrid--content .bikeSelectContainer .itFitsMessage {
    margin: 30px 0 0;
}

.bikeSelect--row + .bikeSelect--row {
    margin: 20px 0 0;
}

.bikeSelect--row.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.blockGrid.articleBG .blockGrid--sidebar {
    width: 330px;
}

.blockGrid.articleBG .blockGrid--sidebar .custom-html-widget {
    height: 100%;
}

.blockGrid.articleBG[data-sidebar="no_sidebar"] .blockGrid--content {
    width: 100%;
}

.waypoint-sticky {
    position: relative;
    padding-top: 0;
    -webkit-transition: padding 250ms ease;
    -o-transition: padding 250ms ease;
    transition: padding 250ms ease
}

.waypoint-sticky.is_stuck {
    padding-top: 90px;
}

.blockGrid.articleBG + .blockGrid.articleBG {
    margin-top: 100px;
}

.iframe-responsive-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.iframe-responsive-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.shareArticle {
    margin: 40px 0 60px;
}

.shareArticle h2 {
    margin: 0 0 25px;
    font-weight: 600;
    font-size: 28px;
}

.shareArticle h4 {
    margin: 10px 0;
    font-weight: 500;
    font-size: 20px;
}

.shareArticle nav {
    margin: 10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.shareArticle nav a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none !important;
    -webkit-transition: background 200ms ease;
    -o-transition: background 200ms ease;
    transition: background 200ms ease;
}

.shareArticle nav a + a {
    margin-left: 10px;
}

.shareArticle nav a.fb {
    background: #3b5998;
    font-size: 22px;
}

.shareArticle nav a.fb:hover {
    background: #8b9dc3;
}

.shareArticle nav a.tw {
    background: #00aced;
    font-size: 20px;
}

.shareArticle nav a.tw:hover {
    color: #fff;
    background: #1dcaff;
}

.ad-article {
    width: 290px;
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.3;
    text-align: justify;
}

.ad-article.mobile {
    display: none;
}

.ad-article h2 {
    margin: 0 0 20px;
}

.ad-article p {}

.ad-article img {
    width: 100%;
}

.ad-article + .ad-article {
    margin-top: 60px;
}

@media (max-width:960px) {
    .section-intro-article {
        min-height: 0;
        padding: 80px 0 220px;
    }

    .section-intro-article .row > div {
        max-width: none;
    }

    .blockGrid.articleBG .blockGrid--content {
        width: 100% !important;
    }

    .blockGrid.articleBG .blockGrid--sidebar {
        display: none;
    }

    .section-intro-article .sia-actions {
        bottom: 130px;
    }

    .section-article h2:first-child {
        margin-top: 0;
    }
}

@media (max-width:680px) {
    .ad-article.desktop {
        display: none;
    }

    .ad-article.mobile {
        display: block;
        width: 100%;
        float: none;
        margin: 30px 0;
    }

    .section-intro-article {
        padding: 80px 0 120px;
    }

    .section-intro-article .sia-actions {
        bottom: 20px;
    }

    .section-article div.img-float-container {
        margin-top: 10px;
    }

    .section-article .img-left {
        float: none;
        margin: 0 0 30px;
    }

    .blockGrid.articleBG + .blockGrid.articleBG {
        margin-top: 50px;
    }
}

.blockGrid.articleBG .recomendedProducts h2 {
    margin-top: 0;
}

.recomendedProducts {
    text-align: center;
}

.recomendedProducts h2 {
    font-size: 33px;
}

.recomendedProduct {
    max-width: 320px;
    display: inline-block;
    vertical-align: top;
    color: #282828;
    font-size: 15px;
}

.recomendedProduct h3 {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 10px;
}

.recomendedProduct--info {
    margin: 20px 0;
}

.recomendedProduct--info .price {
    font-weight: normal;
}

.recomendedProduct--info .price.price-old {
    margin-left: 10px;
    position: relative;
}

.recomendedProduct--info .price.price-old:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background: #f00;
}

/* Section - alert */
.section-alert {
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #f00;
    color: #fff;
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.3;
}

.section-alert .blockGrid {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.section-alert ::-webkit-input-placeholder {
    color: #fff
}

.section-alert :-moz-placeholder {
    color: #fff
}

.section-alert ::-moz-placeholder {
    color: #fff
}

.section-alert :-ms-input-placeholder {
    color: #fff
}

.section-alert .newsletterInline input {
    border: solid 1px #fff;
    background: transparent;
    padding: 3px 10px 5px;
    height: 34px;
    border-radius: 13px;
    text-align: center;
    min-width: 200px;
}

.section-alert .newsletterInline .newsletter input {
    width: 220px;
}

.section-alert .newsletterInline .newsletter input.wpcf7-not-valid {
    border-color: #000 !important;
}

.section-alert .newsletterInline .newsletter span.wpcf7-not-valid-tip {
    font-size: 12px;
    color: #000;
    margin-top: 0;
}

.section-alert .newsletterInline .newsletter button {
    height: 34px;
    font-size: 18px;
    font-weight: normal;
    border-radius: 13px;
    padding: 5px 25px;
}

.section-alert .newsletterInline .newsletter .cf7-msg {
    color: #000;
}

.section-alert .newsletterInline div.wpcf7 .loaderContainer .ajax-loader {
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    background-size: 18px;
}

.section-alert nav.socialNav {
    margin-left: 30px;
    font-size: 15px;
}

.section-alert nav.socialNav i {
    font-size: 16px;
}

.section-alert nav.socialNav a {
    margin-left: 10px;
}

.section-alert nav.socialNav a i.icon-fb {
    font-size: 18px;
}

@media (max-width:960px) {
    .section-intro-article {
        z-index: 6;
    }

    .section-intro-article.hover .section-alert {
        top: 75px;
        opacity: 1;
    }

    .section-alert {
        position: fixed;
        left: 0;
        top: 0;
        bottom: auto;
        z-index: 99;
        min-width: 320px;
        background: #f1a417;
        color: #222;
        padding: 10px 20px;
        opacity: 0;
        -webkit-transition: top 350ms ease, opacity 350ms ease;
        -o-transition: top 350ms ease, opacity 350ms ease;
        transition: top 350ms ease, opacity 350ms ease;
    }

    .section-alert .blockGrid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .section-alert .blockGrid--item {
        text-align: center;
    }

    .section-alert .blockGrid--item + .blockGrid--item {
        margin-top: 7px;
    }

    .section-alert .newsletterInline .newsletter {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .section-alert .newsletterInline .newsletter input {
        margin-right: 10px;
        width: auto;
        background: #fff !important;
        border-color: #222;
        font-weight: 400;
    }

    .section-alert .newsletterInline .newsletter button {
        background: #222;
        color: #fff
    }

    .section-alert ::-webkit-input-placeholder {
        color: #222
    }

    .section-alert :-moz-placeholder {
        color: #222
    }

    .section-alert ::-moz-placeholder {
        color: #222
    }

    .section-alert :-ms-input-placeholder {
        color: #222
    }

    .section-alert .newsletterInline .newsletter span.wpcf7-not-valid-tip {
        position: static;
        margin: 3px 0 -5px;
    }
}

@media (max-width:680px) {
    .section-intro-article {
        padding: 40px 0 100px;
    }
}

@media (max-width:540px) {
    .section-alert .newsletterInline .newsletter {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .section-alert .newsletterInline .newsletter input {
        margin-bottom: 0;
    }

    .section-alert .newsletterInline .newsletter span.wpcf7-not-valid-tip {
        margin: 5px 0 0;
    }
}

@media (max-width:480px) {
    .section-alert .newsletterInline .newsletter input {
        width: 280px;
    }
}

@media (max-width:440px) {
    .section-alert .newsletterInline .newsletter input {
        width: 230px;
    }
}

@media (max-width:390px) {
    .section-alert .newsletterInline .newsletter {
        display: block;
    }

    .section-alert .newsletterInline .newsletter input {
        width: 100%;
        margin: 0 0 10px;
    }

    .section-alert .newsletterInline .newsletter button {
        margin: 0 !important
    }

    .section-alert .newsletterInline .newsletter span.wpcf7-not-valid-tip {
        margin: -5px 0 6px;
    }
}

/* Banner widget */
.blockGrid.bannerBG {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-top: 20px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.blockGrid.bannerBG [class^="blockGrid--"] {
    padding: 0 10px
}

.blockGrid.bannerBG .blockGrid--33 .custom-html-widget {
    height: 100%;
}

.bannerCTA {
    height: 345px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.bannerCTA--text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.bannerCTA--text h2 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 200;
    color: #fff;
}

.bannerCTA--text .button-readMore-inverted {
    margin-top: 30px
}

.subscribeBlock {
    background: #262626;
    height: 100%;
    text-align: center;
    padding: 20px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-template-blog_page .subscribeBlock {
    padding: 66px 25px;
}

.ast-separate-container .comment-respond {
    background-color: #fff;
    padding: 0;
    border-bottom: 0;
}

#comments .submit,
.search .search-submit {
    padding: 10px 15px;
    border-radius: 2px;
    line-height: 7px;
    border: 0;
}

.section-intro-article form.wpcf7-form.sent .footer_newsletter {
    display: none;
}

.section-intro-article .wpcf7 .screen-reader-response {
    position: relative;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    right: 0;
    color: #fff;
    top: 0;
}

.subscribeBlock h2 {
    font-size: 28px;
    color: #eeeeee;
    font-weight: 200;
    margin: 0 0 33px;
}

.subscribeBlock input {
    border: solid 3px #fff;
    height: 40px;
    width: 100%;
    background: transparent;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: 200;
}

.subscribeBlock button {
    height: 40px;
    width: 100%;
    background: #fff;
    border: solid 1px #fff;
    color: #262626;
    font-size: 16px;
    font-weight: 200;
    -webkit-transition: background 250ms ease, color 250ms ease, border 250ms ease;
    -o-transition: background 250ms ease, color 250ms ease, border 250ms ease;
    transition: background 250ms ease, color 250ms ease, border 250ms ease;
}

.subscribeBlock button:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.subscribeBlock .socialNav {
    margin-top: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.subscribeBlock .socialNav a + a {
    margin-left: 15px;
}

.subscribeBlock--inner {
    width: 100%;
}

.subscribeBlock span.wpcf7-not-valid-tip {
    font-size: 14px;
    margin: 5px 0 0;
}

.subscribeBlock div.wpcf7-response-output {
    position: static;
    margin: 15px 0 0;
    font-size: 14px;
}

@media (max-width:960px) {
    .blockGrid.bannerBG {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .blockGrid.bannerBG [class^="blockGrid--"] {
        width: 100% !important;
    }

    .blockGrid.bannerBG [class^="blockGrid--"] + [class^="blockGrid--"] {
        margin-top: 20px;
    }

    .subscribeBlock {
        padding: 40px;
    }
}

@media (max-width:960px) and (min-width:641px) {
    .subscribeBlock form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .subscribeBlock button {
        margin: 0 0 0 20px
    }
}

@media (max-width:860px) {
    .section-blog {
        padding: 40px 0
    }
}

@media (max-width:460px) {
    .subscribeBlock {
        padding: 30px 25px
    }
}

/* Newsletter */
.newsletter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.newsletter input {
    width: 360px;
    padding: 10px 20px;
    margin: 0 15px 0 0;
    text-align: center;
    border: solid 1px #4b4b4b;
    background: transparent !important;
    height: 50px;
    border-radius: 25px;
}

.newsletter input.wpcf7-not-valid {
    border-color: #f00 !important;
}

.newsletter button {
    height: 50px;
    padding: 3px 40px 5px;
    font-weight: 500;
}

.newsletter + .wpcf7-response-output {
    /*display: none!important;*/
    font-size: 14px;
}

.newsletter span.wpcf7-not-valid-tip {
    position: absolute;
    left: 0;
    top: 33px;
    width: 100%;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.wpcf7-form.sent .newsletter + .wpcf7-response-output {
    display: none !important;
}

.cf7-msg {
    color: #f00;
}

.subscribeBlock .newsletter {
    display: block;
}

.subscribeBlock .newsletter input {
    border: solid 3px #fff;
    border-radius: 0;
    margin: 0 0 25px;
    height: 50px;
    width: 100%;
    background: transparent;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: 200;
}

.subscribeBlock .newsletter button {
    height: 50px;
    width: 100%;
    border-radius: 0;
    background: #fff;
    border: solid 3px #fff;
    color: #262626;
    font-size: 16px;
    font-weight: 200;
    -webkit-transition: background 250ms ease, color 250ms ease, border 250ms ease;
    -o-transition: background 250ms ease, color 250ms ease, border 250ms ease;
    transition: background 250ms ease, color 250ms ease, border 250ms ease;
}

.subscribeBlock .newsletter button:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.subscribeBlock .newsletter span.wpcf7-not-valid-tip {
    position: static;
    margin: -15px 0 15px;
}

.subscribeBlock .newsletter .cf7-msg {
    font-weight: 400;
    margin: -10px 0 25px;
}

@media (max-width:960px) {
    .subscribeBlock .newsletter {
        display: block;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .subscribeBlock form {
        display: block;
    }

    .subscribeBlock .newsletter button {
        margin: 0;
    }
}

/* Footer */
.footer {
    background: #000;
    font-size: 18px;
    font-weight: 200;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer a {
    color: #fff;
}

.footer h3 {
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 14px;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer ul li + li {
    margin-top: 4px;
}

.footer ul li.current-menu-item a {
    text-decoration: underline;
}

.footer--top {
    padding: 65px 0 60px;
}

.footer--top .blockGrid.footerBG {
    max-width: 900px;
}

.footer--bottom {
    padding: 80px 0 120px;
    border-top: solid 1px #fff;
    font-size: 24px;
}

.footer--bottom p {
    margin: 0 0 10px;
}

.footer--bottom .blockGrid.footerBG {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer--bottom .blockGrid.footerBG .blockGrid--item:last-child {
    text-align: right;
}

nav.socialNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 0;
}

nav.socialNav a {
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

nav.socialNav a + a {
    margin-left: 12px;
}

nav.socialNav a i {
    font-size: 23px;
}

nav.socialNav a i[class*="facebook"] {
    font-size: 24px;
}

nav.socialNav a:hover {
    text-decoration: none;
    color: #f1a417;
}

.hashTag {
    text-align: right;
    font-weight: 500;
    font-size: 69px;
    line-height: 1;
    position: relative;
    bottom: -4px;
    right: -2px;
}

@media (max-width:780px) {
    .footer--top .blockGrid.footerBG [class^="blockGrid--"] {
        width: 33.333%;
    }

    .footer--top .blockGrid.footerBG [class^="blockGrid--"]:first-child {
        width: 100%;
        margin-bottom: 40px
    }
}

@media (max-width:860px) {
    .footer--bottom .blockGrid.footerBG .blockGrid--item {
        width: 100%;
    }

    .footer--bottom .blockGrid.footerBG .blockGrid--item:last-child {
        max-width: 620px;
        margin: 40px auto 0
    }

    .newsletter {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width:540px) {
    .footer--top .blockGrid.footerBG [class^="blockGrid--"] {
        width: 50%;
        margin: 20px 0;
    }

    .footer--top .blockGrid.footerBG [class^="blockGrid--"]:first-child {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .footer--bottom .blockGrid.footerBG .blockGrid--item:last-child {
        text-align: left;
    }

    .newsletter {
        display: block;
    }

    .newsletter input,
    .newsletter .button {
        width: 100%;
    }

    .newsletter input {
        margin-bottom: 15px;
    }

    .newsletter span.wpcf7-not-valid-tip {
        position: static;
        margin: 0 0 15px;
    }
}

@media (max-width:360px) {
    .footer--top {
        padding: 60px 0 30px
    }

    .footer--top .blockGrid.footerBG [class^="blockGrid--"] {
        width: 100%;
    }

    .footer--bottom {
        font-size: 18px;
        padding: 40px 0
    }

    .newsletter input {
        height: 40px;
        text-align: center;
    }

    .newsletter .button {
        margin-top: 10px;
    }
}

/* Popup */
.popupContainer {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 9999;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    overflow: auto;
    display: none;
}

.popupContainer:after {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.popupContainer .popup {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 20px);
    min-width: 300px;
    max-width: 400px;
    color: #000;
    background: #fff;
    padding: 20px;
    opacity: 0;
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
    -webkit-transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out, transform 400ms ease-in-out;
    transition: opacity 400ms ease-in-out, transform 400ms ease-in-out;
    transition: opacity 400ms ease-in-out, transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}

.popupContainer .popup--content {
    padding: 10px 0 20px;
}

.popupContainer .popup--actions a {
    display: block;
    width: 100%;
    background: #eee;
    padding: 12px 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.popupContainer .popup--actions a + a {
    margin-top: 10px;
}

.popupContainer .popup--actions a.button-continue {
    background: #eeeeee;
    border: solid 1px #d7d7d7;
    color: #000;
    -webkit-transition: background 250ms ease;
    -o-transition: background 250ms ease;
    transition: background 250ms ease;
}

.popupContainer .popup--actions a.button-continue:hover {
    background: #d7d7d7;
    text-decoration: none;
}

.popupContainer .popup--actions a.button-checkout {
    background: #f0a317;
    color: #fff;
    -webkit-transition: background 250ms ease;
    -o-transition: background 250ms ease;
    transition: background 250ms ease;
}

.popupContainer .popup--actions a.button-checkout:hover {
    background: #000;
    text-decoration: none;
}

.popupContainer.visible .popup {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.popupContainer[data-popup="special-offer"] {
    padding-top: 100px;
}

.popupContainer .popup-lg {
    width: calc(100% - 20px);
    max-width: 980px;
}

.popupContainer .popup.popup-special-offer {
    position: relative;
    border-radius: 35px;
}

.popupContainer .popupBG--bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    border-radius: 35px;
    pointer-events: none;
}

.popupContainer .popupBG--bg:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -25%;
    top: -50%;
    background: #f1a417;
    height: 100%;
    -webkit-transform: rotate(-7deg);
    -ms-transform: rotate(-7deg);
    transform: rotate(-7deg);
    width: 150%;
}

.popupContainer .popup--close {
    position: absolute;
    padding: 0;
    line-height: 0;
    color: #a09786;
    font-size: 12px;
    background: none;
    border: none;
    right: 25px;
    top: 22px;
    outline: none !important;
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

.popupContainer .popup--close:hover {
    color: #000;
}

.popupContainer .popupBG {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 750px;
    margin: 0 auto;
    padding: 30px 0;
}

.popupContainer .popupBG--top {
    width: 100%;
    margin: -100px 0 60px
}

.popupContainer .popupBG--top img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}

.popupContainer .popupBG--left {
    width: calc(100% - 250px);
    padding-right: 60px;
    text-align: left;
    font-size: 20px;
    color: #4b4b4b;
}

.popupContainer .popupBG--left h1 {
    font-size: 70px;
    margin: -15px 0 15px;
    font-weight: bold;
    word-break: break-word;
}

.popupContainer .popupBG--left h1 + p {
    margin-top: -5px;
}

.popupContainer .popupBG--left h2 {
    font-size: 55px;
    margin: 0 0 15px;
    font-weight: bold;
}

.popupContainer .popupBG--left h3 {
    font-size: 35px;
    margin: 0 0 15px;
    font-weight: bold;
}

.popupContainer .popupBG--right {
    width: 250px;
}

.popupContainer .popupBG .form .newsletter {
    display: block;
}

.popupContainer .popupBG .form .newsletter input {
    margin: 0 0 15px;
}

.popupContainer .popupBG .form .newsletter button {
    background: #f00;
    color: #fff;
}

.popupContainer .popupBG .form .newsletter button:hover {
    background: #D70000;
}

.popupContainer .popupBG .form input {
    height: 60px;
    border-radius: 30px;
    padding: 5px 20px;
    text-align: center;
    width: 100%;
    border: solid 1px #9f9f9f;
    background: #fff;
}

.popupContainer .popupBG .form button {
    height: 60px;
    border-radius: 30px;
    font-size: 22px;
    width: 100%;
}

.popupContainer .popupBG .form--row + .form--row {
    margin-top: 15px;
}

.popupContainer .popupBG a {
    color: #000;
}

@media (max-width:890px) {
    .popupContainer .popupBG--left {
        padding-right: 30px;
    }

    .popupContainer .popupBG--left h1 {
        font-size: 50px;
    }

    .popupContainer .popupBG--left h2 {
        font-size: 45px;
    }

    .popupContainer .popupBG--left h3 {
        font-size: 26px;
    }

    .popupContainer .popupBG .form input {
        height: 50px;
    }

    .popupContainer .popupBG .form button {
        height: 50px;
    }
}

@media (max-width:680px) {
    .popupContainer[data-popup="special-offer"] {
        padding-top: 20px;
    }

    .popupContainer .popup.popup-special-offer {
        border-radius: 0;
    }

    .popupContainer .popupBG--bg {
        border-radius: 0;
    }

    .popupContainer .popupBG--bg:before {
        top: -80%;
    }

    .popupContainer .popupBG {
        padding: 20px 0 0;
    }

    .popupContainer .popupBG--top {
        margin: 0 0 40px
    }

    .popupContainer .popupBG--left,
    .popupContainer .popupBG--right {
        width: 100%;
        padding: 0;
    }

    .popupContainer .popupBG--right {
        margin-top: 30px;
    }

    .popupContainer .popupBG .form input,
    .popupContainer .popupBG .form button {
        border-radius: 0;
    }
}
/* 
.blockUI.blockOverlay {
    position: fixed !important;
    background: rgba(0, 0, 0, .5) !important;
    z-index: 9999 !important
} */

/* .blockUI.blockOverlay:after {
    content: "";
    position: absolute;
    width: 46px;
    height: 46px;
    left: 50%;
    top: 50%;
    margin: -23px 0 0 -23px;
    background: url(../images/ajax-loader-button.gif) no-repeat center #fff;
    background-size: 30px;
    padding: 5px;
    border-radius: 50%;
} */

.sectionClose {
    display: none;
    position: absolute;
    z-index: 10;
    right: 6px;
    top: 5px;
    font-size: 14px;
    color: #fff;
}

.sectionClose:hover {
    text-decoration: none;
}

@media (max-width:960px) {
    .section-hide {
        display: none;
    }

    .sectionClose {
        display: block;
    }
}

.cartProduct--misc-opt .quantity label {
    display: none;
}

.cartProduct--misc-opt .quantity input[type="text"] {
    pointer-events: none;
}


.ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu {
    border-top-width: 0;
    border-style: solid;
    border-color: #000;
}

.ast-header-break-point .ast-header-custom-item,
.ast-header-break-point .main-header-menu {
    background-color: #000;
}

.ast-header-break-point .main-navigation ul .menu-item .menu-link {
    padding: 0 20px;
    display: inline-block;
    width: 100%;
    border-bottom-width: 0px;
    border-style: solid;
    border-color: #eaeaea;
}


/*----------------------------- 25-12-20-----------------------*/

.my_account_page .entry-title {
    font-size: 30px;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.my_account_page form.woocommerce-form.woocommerce-form-login.login,
.my_account_page form.register {
    background: #f2f2f2;
    padding: 35px;
    box-shadow: 2.83px 2.83px 2px #c7c7c7;
}

.my_account_page .ast-article-single {
    border-bottom: 0;
    box-shadow: 2.83px 2.83px 2px #c7c7c7;
    margin-top: 60px;
    border-radius: 5px;
}

.my_account_page label {
    line-height: 2;
    font-weight: normal !important;
    color: #000;
}

.page-template-myaccount.ast-separate-container {
    background-color: #f2f2f2 !important;
}

.my_account_page form .form-row input.input-text,
.my_account_page form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: 1;
    border-radius: 25px;
}

.my_account_page button.button,
.my_account_page a.woocommerce-Button.button,
.my_account_page a.button {
    border-color: #f1a32d !important;
    background-color: #f1a32d !important;
    border-radius: 50px;
    background: repeat padding-box border-box 0% 0%/auto auto scroll linear-gradient(229deg, #f1a32d 0%, rgba(29, 44, 243, 0) 100%), #f4ab2d;
    border: 1px solid #f2a52d;
    box-shadow: 2.83px 2.83px 2px #c7c7c7;
    font-weight: normal !important;
    text-transform: uppercase !important;
}


.my_account_page .woocommerce-MyAccount-navigation > ul {
    margin: 0;
    border-radius: 5px;
}

.my_account_page .woocommerce-MyAccount-navigation-link a,
.my_account_page .woocommerce-MyAccount-content a {
    color: #000;
    font-weight: normal;
}

.my_account_page .woocommerce-MyAccount-navigation-link.is-active {
    border: 1px solid #f1a32d;
    border-radius: 5px;
}

.woocommerce-MyAccount-navigation-link.is-active a {
    background-color: #f1a32d;
}

.my_account_page .woocommerce-MyAccount-navigation-link {
    list-style: none;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    margin-bottom: 5px;
    background: #f2f2f2;
}

.my_account_page div.woocommerce-error,
.my_account_page div.woocommerce-message {
    background: #f7f6f7;
}

.my_account_page form.woocommerce-EditAccountForm.edit-account,
.my_account_page .woocommerce-MyAccount-content form {
    background: #f2f2f2;
    padding: 25px;
    border-radius: 5px;
}

.my_account_page form.woocommerce-EditAccountForm.edit-account label,
.my_account_page .woocommerce-MyAccount-content form label {
    color: #000 !important
}



.my_account_page .woocommerce-message,
.my_account_page .woocommerce-info {
    margin-top: 0px;
}

.my_account_page .select2-container .select2-selection--single {
    border-radius: 25px !important;
}

.my_account_page a.edit {
    border-color: #f1a32d !important;
    background-color: #f1a32d !important;
    padding: 4px 15px !important;
    margin-top: 7px;
}

/*
.my_account_page .woocommerce-MyAccount-content {
    float: right;
    width: 68%;
    background: #3a3a3a;
    padding: 25px;
    border-radius: 5px;
    color: #fff !important;
}*/

article#post-678 {
    margin-top: 100px;
}

@media all and (max-width:575px) {
    .woo-multi-currency.wmc-sidebar.wmc-right{
        right: -170px;
    }

    .woocommerce ul#shipping_method li {
        margin: 0;
        padding: .25em 0 .25em 22px;
        text-indent: -22px;
        list-style: none outside;
        display: inline-block;
        padding: 0;
        margin-top: 10px;
        font-size: 11px;
        vertical-align: middle;
    }

    .woocommerce ul#shipping_method li input {
        margin: 5px .5ex;
        vertical-align: bottom;
    }

    .woocommerce ul#shipping_method li input {
        margin: 5px .5ex;
        vertical-align: bottom;
    }

    p.woocommerce-shipping-destination {
        float: left;
        width: 100%;
    }


}

.language_dropdown {
    width: 85px;
    margin-top: 22px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    font-size: 13px;
}

.bikeSelect--row + .bikeSelect--row {
    margin: 12px 0 0 !important;
}
.woocommerce-checkout-payment ul.wc_payment_methods.payment_methods li > label {
  position: inherit;

}
