.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #bebdbd;
    opacity: 1;
    /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bebdbd;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #bebdbd;
}

.no-gutter.container,
.no-gutter.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.no-gutter .row {
    margin-left: 0;
    margin-right: 0;
}

.no-gutter .row > [class^="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.bg-gray {
    background: #eaeeef !important;
}

.text-decoration-underline {
    text-decoration: underline;
}

.text-orange {
    color: #f38230 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
    text-rendering: optimizelegibility;
}

a {
    color: #97928e;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: #005580;
    text-decoration: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
    outline: none;
}

h1 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 50px;
    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: 1.5px;
}

h2 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 50px;
    font-size: 5rem;
    letter-spacing: 1.5px;
}

.btn {
    display: inline-block;
    border: 2px solid transparent;
    padding: 10px 25px;
    line-height: 1.5;
    border-radius: 50px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
    text-transform: uppercase;
    text-align: center;

    transition: all 0.5s;
    letter-spacing: 1.5px;
    cursor: pointer;
    vertical-align: middle;
}

.btn-primary.disabled,
.btn-primary:disabled {
    background: #aaa;
    border: 2px solid transparent;
}

.btn-primary,
.btn-primary:not([href]) {
    background: #f38230;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:not([href]):hover,
.btn-primary:active,
.btn-primary:focus {
    color: #fff;
    border-color: #da6817 !important;
    background: #da6817 !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
}

.btn-tertiary {
    color: #fff;
    background-color: #948e88;
}

.btn-tertiary:hover,
.btn-tertiary:active,
.btn-tertiary:focus {
    text-decoration: none;
    background-color: #a39a93;
    color: #ffffff;
}

html {
    font-size: 62.5%;
    line-height: 1.4;
}

html.menuOpen,
html.menuOpen body,
html.searchOpen body {
    overflow: hidden;
    height: auto !important;
}

body {
    background: #ffffff;
    font-size: 14px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
}

body:after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 150ms ease;
}

.searchOpen body:after {
    background: rgba(0, 0, 0, 0.7);
    bottom: 0;
}

.container {
    width: 100%;
    max-width: 1600px;
}

.container.full-width {
    max-width: 100%;
}

.container.container-medium {
    width: 100%;
    max-width: 960px;
}

.container.container-padding {
    padding: 0 50px;
}

.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 120;
}

.header .logo {
    background: #3b3936;
    outline: none;
    display: inline-block;
    width: 262px;
    height: 65px;
    line-height: 58px;
    text-align: center;
    transition: all 0.5s;
    position: absolute;
    top: 0;
    right: 50%;
}

.header .logo img {
    width: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header ul {
    display: flex;
    padding: 0;
    margin: 0;
    font-size: 0;
    position: absolute;
    top: 0;
    left: 50%;
}

.header ul li {
    background: #232120;
    display: inline-block;
    width: 65px;
    height: 65px;
    position: relative;
}

.header ul li a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.header-search {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 65px;
    max-width: 100%;
    background: #ffffff;
    z-index: 10000;
    transition: all 300ms ease-in-out;
    overflow: hidden;
    opacity: 0;
}

.searchOpen .header-search {
    opacity: 1;
    width: 635px;
}

.header-search input {
    background-color: #fff;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.3;
    color: #2a2622;
    height: 65px;
    width: 100%;
    border: 1px solid #cecdcd;
    padding: 4px 140px 4px 25px;
    margin: 0;
    position: relative;
    left: 0;
    right: 0;
    box-shadow: 0 0 transparent;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0;
}

.header-search .btn-search {
    position: absolute;
    top: 0;
    right: 65px;
    bottom: 0;
    width: 65px;
    border: none;
    background: url(../img/front/icon-search.png) no-repeat center center;
    background-size: 28px 28px;
    padding: 0;
}

.header-search input:hover,
.header-search input:focus {
    outline: 0;
    outline-color: transparent;
    outline-width: 0;
    outline-style: none;
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    border-color: #ffffff;
}

.header-search .toggleSearch {
    background: #1e1c1b;
    position: absolute;
    top: 0;
    right: 0;
    width: 65px;
    height: 65px;
    border: none;
    color: #ffffff;
}

.header-search .toggleSearch .icon-search {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.header-search .toggleSearch .icon-search:before,
.header-search .toggleSearch .icon-search:after {
    content: "";
    height: 2px;
    width: 28px;
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    background-color: #fff;
    transform: rotate(-45deg);
}

.header-search .toggleSearch .icon-search:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.header-search .toggleSearch .icon-search:after {
    transform: translate(-50%, -50%) rotate(-223deg);
}

.header-search .btn-search,
.header-search .toggleSearch {
    opacity: 0;
    transition: all 600ms ease-in-out;
}

.searchOpen .header-search .btn-search,
.searchOpen .header-search .toggleSearch {
    opacity: 1;
}

.toggleMenu {
    transition: 0.3s;
    cursor: pointer;
    user-select: none;
    position: absolute;
    z-index: 100;
}

.toggleMenu:hover,
.toggleMenu:focus {
    opacity: 1;
    text-decoration: none;
    color: #fff;
}

.toggleMenu:hover span {
}

.toggleMenu:active {
    transition: 0;
}

.icon-burger,
.icon-burger:before,
.icon-burger:after {
    background: #fff;
}

.icon-burger {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-burger:before,
.icon-burger:after {
    display: inline-block;
    width: 26px;
    height: 2px;
    transition: 0.3s;
    position: absolute;
    left: 0;
    content: "";
    -webkit-transform-origin: 0.28571rem center;
    transform-origin: 0.28571rem center;
}

.icon-burger:before {
    top: 8px;
}

.icon-burger:after {
    top: -8px;
}

.toggleMenu.closed {
}

.menuOpen .toggleMenu .icon-burger {
    background: transparent;
}

.menuOpen .toggleMenu .icon-burger:before,
.menuOpen .toggleMenu .icon-burger:after {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    top: 0;
    width: 26px;
    background: #fff;
}

.menuOpen .toggleMenu .icon-burger:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.menuOpen .toggleMenu .icon-burger:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

html body .header .toggleMenu-wrapper {
    background: #232120;
    background: #1e1c1b;
}

html body .header .toggleSearch-wrapper {
    background: #1e1c1b;
}

html body .header .hideOnMenuOpen {
    background: #1e1c1b;
    transition: all 200ms ease;
    opacity: 1;
}

@media (min-width: 769px) {
    html.menuOpen body .header .hideOnMenuOpen {
        opacity: 0;
        pointer-events: none;
    }
}

html body .header li a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
}

.navigation {
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    z-index: 98;
    transition: all 300ms ease;
    opacity: 1;
}

.scrolled .navigation {
    opacity: 0;
    pointer-events: none;
}

.navigation ul {
    padding: 0;
    margin: 0;
    font-size: 0;
    text-align: center;
}

.navigation ul li {
    padding: 0 18px;
    display: inline-block;
    position: relative;
}

.navigation ul li a {
    display: inline-block;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    display: block;
    padding: 9px 0 12px;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
    letter-spacing: 1.5px;
    text-shadow: 0px 0px 1px #000;
    text-align: left;
}

.navigation > ul > li > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    height: 4px;
    background: #fff;
    transition: all 300ms ease;
}

.navigation > ul > li.parent-category > a:after {
    transition: none;
}

.navigation > ul > li.parent-category.no-children > a:after {
    transition: all 300ms ease;
}

.navigation > ul > li.parent-category:hover > a:after {
    opacity: 0;
    z-index: -1;
}

.navigation > ul > li.parent-category.no-children:hover > a:after {
    opacity: 1;
}

.navigation > ul > li:hover > a:after {
    width: 80px;
    max-width: 100%;
}

.navigation > ul > li > a.active:after {
    width: 80px;
    max-width: 100%;
}

.navigation ul li a:hover {
    text-decoration: none;
}

.navigation.blackNav ul li a {
    color: #2a2622;
    text-shadow: none;
}

.navigation.blackNav ul li a:after {
    background: #2a2622;
}

.navigation.blackNav > ul > li:not(.no-children):hover > a {
    color: #ffffff;
}

@media (min-width: 1599px) {
    .navigation ul li a {
        text-align: center;
    }

    .navigation ul li a br {
        display: none;
    }
}

.navigation ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: all 300ms ease;
}

.navigation ul li:hover {
    background: #000000;
}

.navigation ul li.no-children:hover {
    background: rgba(0, 0, 0, 0);
}

.navigation ul li:hover ul {
    height: auto;
    padding: 5px 0;
    text-align: left;
    background: #000000;
}

.navigation ul li ul li a,
.navigation.blackNav ul li ul li a {
    white-space: nowrap;
    color: #b7b7b7;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: lighter;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 4px 0;
    transition: all 300ms ease;
}

.navigation ul li ul li a:hover,
.navigation ul li ul li a.active {
    color: #ffffff;
}

.menu {
    padding: 0 !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #232120;
    display: flex;
    flex-direction: row;
    z-index: 110;
    transform: translateX(-100%);
    transition: all 300ms ease;
    overflow: auto;
}
.menu .menu-wrapper {
    width: 100%;
}
.menuOpen .menu {
    transform: translateX(0);
}
/* 
.menu .main {
    max-width: 63%;
    flex: 0 0 63%;
    padding: 110px 8% 0;
    overflow: inherit;
}
*/

.menu .main {
    width: 100%;
    max-width: 63%;
    padding: 110px 8% 0;
    float: left;
}

/* 
.menu .secondary {
    max-width: 37%;
    flex: 0 0 37%;
    background: #171413;
    padding: 110px 3% 30px;
    overflow: inherit;
} 
*/

.menu .secondary {
    max-width: 37%;
    width: 100%;
    background: #171413;
    padding: 110px 3% 30px;
    float: left;
    min-height: 100vh;
}

.menu h3 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 19px;
    font-size: 1.9rem;
    color: #f38230;
    text-transform: uppercase;
    margin: 0 0 17px;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu ul > li {
    margin: 0 0 17px;
}

.menu ul > li > a {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
    color: #fff;
    display: block;
    text-transform: uppercase;
}

.menu ul > li > ul {
    margin-top: 7px;
}

.menu ul > li > ul > li {
    margin-bottom: 5px;
}

.menu ul > li > ul > li a {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: lighter;
    font-size: 12px;
    font-size: 1.2rem;
    color: #948e88;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.menu ul > li > ul > li a:hover {
    color: #ffffff;
}

.menu ul > li > a.active {
    color: #ffffff;
    text-decoration: underline;
}

.menu ul > li > ul > li a.active {
    color: #ffffff;
}

.menu ul li a span.icon {
    display: inline-block;
    line-height: 1.3;
    position: relative;
    width: 35px;
    margin-left: 10px;
    vertical-align: middle;
}

.menu ul li a.has-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.breadcrumbs,
.breadcrumbs-trail {
    position: absolute;
    top: 155px;
    width: 100%;
    text-align: center;
    color: #bebdbd;
    letter-spacing: 0.5px;
    z-index: 10;
    list-style: none;
    text-transform: lowercase;
    padding: 0;
}

.breadcrumbs-trail li {
    display: inline-block;
}

.breadcrumbs a,
.breadcrumbs span,
.breadcrumbs-trail a,
.breadcrumbs-trail span {
    display: inline-block;
    color: #bebdbd;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 12px;
    font-size: 1.2rem;
    margin: 0;
    text-shadow: none;
    line-height: 1;
    transition: all 300ms ease;
    padding: 5px 2px;
    text-transform: uppercase;
}

.breacrumbs a:hover,
.breadcrumbs-trail a:hover {
    text-decoration: none;
    color: #948e88;
}

.page-recipes .breacrumbs a,
.page-recipes .breacrumbs span {
    color: #ffffff;
}

.footer {
    background: #232120;
    position: relative;
    z-index: 10;
}

.menu .social-links a,
.footer .social-links a {
    display: inline-block;
    padding: 0 3px 0 0;
}

.menu .social-links a img,
.footer .social-links a img {
    display: block;
    width: 32px;
}

.footer .services {
    padding: 100px 0 60px;
    text-align: center;
}

.footer .services h2 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 25px;
    font-size: 2.5rem;
    color: #fff;
    text-transform: none;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    position: relative;
    padding: 0 0 35px 0;
    margin: 0 0 50px;
    letter-spacing: 1.5px;
}

.footer .services h2:after {
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer .services .services-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.footer .services .services-carousel a {
    display: block;
}

.footer .services .services-carousel a .image {
    display: block;
    width: 84px;
    height: 84px;
    position: relative;
    border-radius: 100%;
    margin: 0 auto 20px;
    border: 1px solid #575554;
    transition: all 300ms ease;
}

.footer .services .services-carousel a .image img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 32%;
}

.footer .services .services-carousel a .text {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 0 5px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    transition: all 300ms ease;
    text-decoration: none;
}

.footer .services .services-carousel a:hover .image,
.footer .services .services-carousel a.active .image {
    border-color: #f38230;
}

.footer .services .services-carousel a:hover,
.footer .services .services-carousel a.active {
    text-decoration: none;
}

.footer .services .services-carousel a:hover .text,
.footer .services .services-carousel a.active .text {
    color: #f38230;
    text-decoration: none;
}

.footer .links {
    border-top: 5px solid #f38230;
}

@media (min-width: 992px) {
    .footer .links {
        padding: 0 0 0 50px;
    }
}

.footer .links .col-wrapper {
    padding: 30px 0 20px 0;
}

.footer .col-newsletter {
    background: url(../img/front/bg-newsletter.jpg) no-repeat center center;
    background-size: cover;
}

.footer .newsletter-wrapper h2 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 25px;
    font-size: 2.5rem;
    color: #fff;
    text-transform: none;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    position: relative;
    padding: 0 0 10px 0;
    margin: 0 0 50px;
    letter-spacing: 1.5px;
}

.footer .newsletter-wrapper h2:after {
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer .newsletter-wrapper h2 + p {
    margin-bottom: 20px;
}

.footer .newsletter-wrapper p {
    font-family: "Libre Baskerville", "Arial", sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    color: #948e88;
    display: block;
    text-align: center;
    margin-top: 15px;
}

.footer .newsletter-form {
    max-width: 320px;
    margin: 0 auto;
}

.footer .newsletter-wrapper .newsletter-form p,
.footer .newsletter-wrapper .newsletter-form p a {
    color: #fff;
    font-family: "Open Sans", "Arial", sans-serif;
}

.footer .newsletter-wrapper .newsletter-form p a {
    text-decoration: underline;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
}

.footer .newsletter-form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.footer .newsletter-form .form-group label {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    transition: all 300ms ease;
    text-transform: uppercase;
}

.footer .newsletter-form .form-group.checkbox label {
    text-transform: none;
    font-family: "Open Sans", "Arial", sans-serif;
    font-size: 12px;
}

.footer .newsletter-form .form-group:not(.checkbox) label {
    position: absolute;
    top: 6px;
    left: 8px;
    cursor: text;
}

.footer .newsletter-form .form-group.focus label,
.footer .newsletter-form .form-group.filled label {
    top: -18px;
}

.footer .newsletter-form .form-group label sup {
    color: #f38230;
}

.footer .newsletter-form .form-group input {
    background: transparent;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
    color: #fff;
    min-height: 38px;
    line-height: 1.2;
    border: 0;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    width: 100%;
    box-shadow: 0 0 transparent;
    margin: 0;
    padding: 0 8px 5px;
}

.footer .newsletter-form .btn {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 20px auto 0;
    padding: 15px 0;
}

.footer .links h3 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
    color: #fff;
    line-height: 1.3;
    position: relative;
    text-transform: uppercase;
    margin: 0 0 15px;
    letter-spacing: 1.5px;
}

.footer .links ul {
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}

.footer .links ul li {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: light;
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 17px;
}

.footer .links ul li a {
    color: #948e88;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer .links ul li a:hover {
    color: #dadada;
}

.footer .links ul li a.active {
    color: #dadada;
}

.footer .copy {
    background: #111111;
}

@media (min-width: 992px) {
    .footer .copy {
        padding: 13px 50px;
    }
}

.footer .copy .logo {
    display: block;
    width: 68px;
}

.footer .copy .logo img {
    display: block;
    width: 100%;
}

.footer .copy-links {
    display: flex;
}

.footer .copy-links > div {
    margin-top: auto;
    margin-bottom: auto;
}

.footer .copy-links .choose-country {
}

.footer .copy-links .choose-country img {
    width: 23px;
}

.footer .copy-links .links-list h3 {
    color: #fff;
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

.footer .copy-links .links-list ul {
    margin: 0;
    padding: 0 0 0 10px;
}

.footer .copy-links .links-list ul li {
    display: inline-block;
    padding-left: 15px;
}

.footer .copy-links .links-list ul li a {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: light;
    font-size: 12px;
    font-size: 1.2rem;
    color: #948e88;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    margin: 0 10px 0 0;
    transition: all 300ms ease;
}

.footer .copy-links .links-list ul li a:hover {
    color: #dadada;
}

.footer .copy-links .links-list ul li a.active {
    color: #dadada;
}

.footer .copy-links .logo-copy {
    margin-left: auto;
}

.full-size {
    width: 100%;
    height: 100vh;
    padding: 180px 90px 70px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.full-size .bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
}

.full-size .bg:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.15);
}

.full-size .bg .left,
.full-size .bg .right,
.full-size .bg .single {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.full-size .bg .left {
    right: 50%;
}

.full-size .bg .right {
    left: 50%;
}

.full-size .bg .left,
.full-size .bg .right,
.full-size .bg .single {
    overflow: hidden;
}

.full-size .bg .left img,
.full-size .bg .right img,
.full-size .bg .single img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    min-width: 101%;
    min-height: 101%;
    pointer-events: none;
    width: 100%;
}

.full-size .bg img.position-right {
    object-position: right;
}

.full-size .bg .has-overlay:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.full-size .cta-wrapper {
    position: relative;
    width: 100%;
}

.full-size .cta-wrapper.vertical-displaced {
    transform: translateY(-20%);
}

.full-size .cta-wrapper.cta-wrapper-centered {
    margin: 0 -75px;
    width: calc(100% + 150px);
}

.full-size .cta-wrapper .cta-category {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 19px;
    font-size: 1.9rem;
    color: #fff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    font-style: normal;
}

.full-size .cta-wrapper.cta-wrapper-centered .cta-category {
    text-align: center;
}

.full-size .cta-wrapper.cta-wrapper-centered .cta-actions {
    text-align: center;
}

.full-size .cta-wrapper.cta-wrapper-centered .cta-btn {
    text-align: center;
}

.full-size .cta-wrapper .cta-title {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1.5;
    font-weight: normal;
    padding: 0 0 35px 0;
    margin: 0 0 50px;
    font-size: 50px;
    font-size: 5rem;
    position: relative;

    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, 0.25),
        1px -1px 0 rgba(0, 0, 0, 0.25),
        -1px 1px 0 rgba(0, 0, 0, 0.25),
        1px 1px 0 rgba(0, 0, 0, 0.25);
}

.full-size .cta-wrapper .cta-title .icon {
    width: 50px;
    margin-right: 10px;
}

@media (min-width: 992px) {
    .full-size .cta-wrapper .cta-title .icon {
        position: absolute;
        right: 100%;
        top: 30%;
        transform: translateY(-50%);
        width: 50px;
        z-index: 10;
        margin-right: 10px;
    }
}

.full-size .cta-wrapper .cta-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 5px;
    background: #f38230;
}

.full-size .cta-wrapper.cta-wrapper-centered .cta-title {
    font-size: 40px;
    overflow: auto;
}

.full-size .cta-wrapper.cta-wrapper-centered .cta-title:after {
    left: 50%;
    transform: translate(-50%);
}

.full-size .cta-wrapper.cta-wrapper-centered .cta-title span {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: 300;
    width: 50%;
    text-transform: uppercase;
    padding: 0 8px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    line-height: 50px;
}

.full-size .cta-wrapper.cta-wrapper-centered .cta-title span:first-child {
    color: #fff;
    text-align: right;
    float: left;
}

.full-size .cta-wrapper.cta-wrapper-centered .cta-title span:last-child {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    color: #f38230;
    text-align: left;
    padding-right: 70px;
    float: right;
}

.full-size .cta-wrapper h3 {
    display: block;
    font-family: "Libre Baskerville", "Arial", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    margin: 0 0 40px 0;
    font-style: italic;
    color: #ffffff;
}

.full-size .cta-wrapper .cta-desc {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
    width: 40%;
}

.scrollTo {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}

.scrollTo .icon {
    background-color: rgba(0, 0, 0, 0.2);
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 100%;
    height: 56px;
    width: 56px;
}

.scrollTo .icon span {
    display: block;
    height: 25px;
    width: 18px;
    border: 3px solid #fff;
    border-radius: 1em;
    cursor: pointer;
    margin: 9px auto;
}

.scrollTo .icon span:before {
    content: "";
    background: url("../img/front/chevron-down-white.png") no-repeat 0 0;
    background-size: 12px 6px;
    width: 12px;
    height: 12px;
    display: block;
    margin: 28px auto 0;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-name: arrow;
}

.scrollTo .text {
    display: block;
    text-transform: uppercase;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    color: #ffffff;
    margin-top: 10px;
}

@keyframes arrow {
    0% {
        transform: translateY(-20%);
    }

    65% {
        transform: translateY(20%);
    }

    100% {
        transform: translateY(-20%);
    }
}

.category-header {
    position: relative;
    padding: 215px 20px 0;
    background: #232120;
}

.category-header > .bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
}

.category-header > .bg-left {
    left: 0;
    background: #232120;
}

.category-header > .bg-right {
    right: 0;
    background: #181413;
}

.category-header .col-category-header {
    padding: 45px 15px 5%;
    min-height: 35vh;
}

.category-header h1 {
    color: #fff;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.2;
    position: relative;
    text-transform: uppercase;
}

.category-header h2 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .category-header h1 {
        color: #fff;
        font-size: 30px;
        font-size: 3rem;
    }

    .category-header h2 {
        font-size: 25px;
        font-size: 2.5rem;
    }
}

.category-header h1:after,
.category-header h2:after {
    content: "";
    display: block;
    height: 5px;
    width: 50px;
    background: #f38230;
    margin: 5% 0;
}

.category-header h2:after {
    margin: 5% auto;
}

.category-header .text-wrapper {
    padding: 0 25px;
}

.category-header .text {
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.category-header .cta-actions {
    position: relative;
}

.category-header .col-product {
    position: relative;
}

.category-header .col-product .cta-actions {
    text-align: center;
    margin-top: 55px;
}

.category-header .col-product .bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.category-header .col-product .bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list {
    background: #eaeeef;
    padding: 35px 0;
}

.product-list h3 {
    text-transform: uppercase;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
    padding-bottom: 15px;
}

.product-list .col-product {
    margin-bottom: 30px;
    position: relative;
}

.product-list .col-product .cta-actions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
}

.product-list .col-product .cta-actions a {
    margin: 2px auto;
    max-width: 50%;
}

.product-list .product {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    padding: 15px 10px 35px 10px;
    text-align: center;
    position: relative;
}

@media (min-width: 992px) {
    .product-list .product {
        padding: 35px 30px 55px 30px;
    }
}

.product-list .product:hover {
    text-decoration: none;
}

.product-list .product .title {
    display: block;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 12px;
    font-size: 1.2rem;
    color: #f38230;
    text-transform: uppercase;
    line-height: 18px;
    margin-bottom: 12px;
}

.product-list .product .subtitle {
    font-family: "Open Sans", "Arial", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
    color: #948e88;
    padding: 0 15px;
    margin: 0;
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 10;
}

.product-list .product .image {
    display: block;
    margin: 10px 0;
    height: 180px;
    position: relative;
}

.product-list .product .image img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-list .product .description {
    display: block;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    color: #2a2622;
    line-height: 21px;
}

.product-list .cta-actions .btn {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 5px 15px;
}

.filters {
    margin-bottom: 20px;
}

.filters .title {
    display: block;
    padding: 20px;
    background-color: #232120;
    color: #fff;
    position: relative;
    cursor: pointer;
}

.filters .title h3 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.filters .title h3 a,
.filters .title h3 a:hover {
    color: #fff;
    display: block;
    text-decoration: none;
}

.filters .title .icon:after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-size: 1rem;
    color: #ffffff;
    font-family: "icokrups";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "\e902";
    transition: all 300ms ease;
}

.filters.filtersOpen .title .icon:after {
    transform: translateY(-50%) rotateX(180deg);
}

.filters .filter {
    background: #fff;
}

.filters .filter-title a {
    display: block;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    border: none;
    text-decoration: none;
    text-transform: uppercase;
    background: #fff;

    position: relative;
    color: #2a2622;
    font-size: 16px;
    font-size: 1.6rem;

    overflow: hidden;
    padding: 0 32px 0 22px;
    height: 0;
    opacity: 0;
    transition: all 300ms ease;
}

.filters.filtersOpen .filter-title a {
    padding: 7px 32px 7px 22px;
    height: auto;
    opacity: 1;
}

.filters .filter-title a .icon:after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-size: 1rem;
    color: #2a2622;
    font-family: "icokrups";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "\e902";
    transition: all 300ms ease;
}

.filters .filterOpen .filter-title a .icon:after {
    transform: translateY(-50%) rotateX(180deg);
}

.filters .filter.active .filter-title a,
.filters .filter.filterOpen .filter-title a {
    background: #bebdbd;
    color: #fff;
}

.filters .filter.active .filter-title a,
.filters .filter.active .filter-title a .icon:after,
.filters .filter.filterOpen .filter-title a,
.filters .filter.filterOpen .filter-title a .icon:after {
    color: #fff;
}

.filters .filter-content {
    opacity: 0;
    transition: all 200ms ease;
}

.filters.filtersOpen .filter-content {
    opacity: 1;
}

.filters .filter-title a span,
.filters .filter-title a .icon:after {
    transition: all 600ms ease;
    opacity: 0;
}

.filters.filtersOpen .filter-title a span,
.filters.filtersOpen .filter-title a .icon:after {
    transition: all 0 ease;
    opacity: 1;
}

.filters .filter-content .input-wrapper {
}

.filters .filter-content .input-wrapper .form-group {
    margin: 0;
}

.filters.filtersOpen .filterOpen .filter-content .input-wrapper {
    height: auto;
    opacity: 1;
}

.filters .filter-content .input-wrapper .form-group.checkbox,
.filters .filter-content .input-wrapper .form-group .radio {
    padding: 0 32px 0 22px;
    height: 0;
    transition: all 300ms ease;
    overflow: hidden;
    border-bottom: 0px solid #eaeeef;
    opacity: 0;
}

.filters.filtersOpen .filterOpen .filter-content .input-wrapper .form-group.checkbox,
.filters.filtersOpen .filterOpen .filter-content .input-wrapper .form-group .radio {
    padding: 7px 32px 7px 22px;
    opacity: 1;
    height: auto;
    border-bottom: 1px solid #eaeeef;
}

.filters .filter-content label {
    display: block;
}

.filters .filter-content label input + span {
    display: block;
}

.activated-filters {
    padding: 0 10px 0;
    background: #fff;
    transition: all 300ms ease;
}

.activated-filters.active {
    padding: 13px 10px 0;
}

.activated-filters .tag {
    display: inline-block;
    background: #f2f2f2;
    color: #50535d;
    margin: 0 8px 8px 0;
    padding: 3px 30px 3px 7px;
    position: relative;
    font-size: 13px;
    font-size: 1.3rem;
}

.activated-filters .tag .name {
    display: inline-block;
    margin-right: 3px;
}

.activated-filters .tag .label {
    display: inline-block;

    text-transform: uppercase;
}

.activated-filters .tag .close {
    background: url(../img/front/btn-delete.png) no-repeat 0 0;
    position: absolute;
    color: #f38230;
    font-weight: 100;
    font-size: 0px;
    font-size: 0rem;
    text-shadow: 0 0 transparent;
    opacity: 1;
    top: 6px;
    right: 7px;
    width: 14px;
    height: 14px;
    transition: all 300ms ease;
    cursor: pointer;
}

.product-header {
    position: relative;
    padding: 215px 0 0 0;
    margin-bottom: 100px;
}

.product-header.recipe-header {
    margin-bottom: 0;
}

.product-header > .bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
}

.product-header > .bg-left {
    left: 0;
    background: #ffffff;
}

.product-header > .bg-right {
    right: 0;
    background: #eaeeef;
}

.product-header .col-product .text-wrapper {
    padding: 15px 15px 15px 15px;
}

@media (min-width: 992px) {
    .product-header .col-product .text-wrapper {
        padding: 15px 15px 30px 6%;
    }
}

.product-header h1 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 30px;
    font-size: 3rem;
    font-weight: normal;
    color: #2a2622;
    position: relative;
    padding: 0 0 30px 0;
    margin: 0 0 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

.product-header h1:before {
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 0;
}

.product-header h2 {
    font-family: "Libre Baskerville", "Arial", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    color: #2a2622;
    display: block;
    margin: 0 0 20px -25px;
    line-height: 28px;
    width: calc(100% + 25px);
    display: block;
}

.product-header h3 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-align: right;
    color: #948e88;
    line-height: 42px;
}

.product-header .col-product .description {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    display: inline-block;
    overflow: hidden;
    transition: max-height 5s ease-out;
    line-height: 21px;
    margin: 0;
    padding: 18px;
}

.product-header .col-product .description ul {
    padding: 0;
    margin: 0;
}

.product-header .col-product .description p {
    display: list-item;
    list-style: disc;
}

.product-header .col-product .cta-actions {
    margin-top: 30px;
}

.product-header .link-reparability {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    width: 77px;
}

.product-header .product-slider + .link-reparability {
    bottom: 105px;
}

.product-header .link-reparability img {
    display: block;
    width: 100%;
}

.product-slider {
    position: relative;
    height: 100%;
}

.product-slider .slider-wrapper {
    position: relative;
}

.product-slider .image {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
}

.product-slider .image a {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.product-slider .image a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-header .image a.play:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #f38230;
    z-index: 10;
}

.product-header .image a.play:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/front/reparability/icon-play.png);
    background-size: 12px 14px;
    z-index: 10;
    width: 12px;
    height: 14px;
}

.product-slider .thumbnail {
    position: relative;
    width: 100%;
    height: 65px;
    cursor: pointer;
}

.product-slider #carousel .thumbnail:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
    background: #00ead7 url(../img/front/thumbnail-valide.png) no-repeat center center;
    background-size: 16px auto;
    opacity: 0;
    transition: all 300ms ease;
}

.product-slider #carousel .current .thumbnail:before {
    opacity: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 10;
}

.product-slider .thumbnail {
    border: 1px solid #eaeeef;
}

.product-slider .thumbnail img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80px;
    max-height: 55px;
    object-fit: contain;
}

.product-slider #slider .item {
    background: #0c83e7;
    padding: 80px 0px;
    margin: 5px;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}

.product-slider #slider .owl-nav {
    display: none;
}

.product-slider #carousel {
    padding: 0 65px;
}

.product-slider #carousel .owl-dots {
    display: none;
}

.product-slider #carousel .owl-prev,
.product-slider #carousel .owl-next {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 0;
    background: #232120;
}

.product-slider #carousel .owl-prev {
    left: 0;
}

.product-slider #carousel .owl-next {
    right: 0;
}

.product-slider #carousel .owl-prev span:after,
.product-slider #carousel .owl-next span:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 300ms ease;
    font-family: icokrups;
    font-size: 18px;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    color: #fff;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 300ms ease;
}

.product-slider #carousel .owl-prev span:after {
    content: "\e601";
}

.product-slider #carousel .owl-next span:after {
    content: "\e600";
}

.product-menu {
    padding: 30px 0;
    background: #ffffff;
}

.product-menu .container {
    padding: 0 90px;
}

@media (max-width: 1200px) {
    .product-menu .container {
        padding: 0 15px;
    }
}

.product-menu .menu-wrapper {
    font-size: 0;
    border-bottom: 5px solid #eaeeef;
    display: inline-block;
}

.product-menu .menu-wrapper a {
    display: inline-block;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    color: #bebdbd;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    line-height: 24px;
    min-height: 37px;
    position: relative;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 1px;
    padding: 0 12px;
    transition: all 300ms ease;
}

@media (max-width: 1023px) {
    .product-menu .menu-wrapper a {
        padding: 0 10px;
    }
}

@media (max-width: 1023px) {
    .product-menu .menu-wrapper a {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.product-menu .menu-wrapper a.active {
    color: #2a2622;
}

.product-menu .menu-wrapper a:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    bottom: -5px;
    background: #00ead7;
    height: 5px;
    transition: all 300ms ease;
}

.product-menu .menu-wrapper a:hover:before,
.product-menu .menu-wrapper a.active:before {
    width: 80px;
    max-width: 100%;
}

.product-section {
    padding: 80px 0 60px;
    background: #ffffff;
}

.product-section.bg-gray {
    background: #eaeeef;
}

.product-section.bg-light {
    background: #ffffff !important;
}

.product-section.bg-dark {
    background: #232120 !important;
}

.product-section h3 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 20px;
    font-size: 2rem;
    text-transform: uppercase;
    color: #2a2622;
    text-align: center;
    position: relative;
    padding: 0 0 15px 0;
    margin: 0 0 25px;
    line-height: 1.3;
}

@media (min-width: 757px) {
    .product-section h3 {
        font-size: 25px;
        font-size: 2.5rem;
        padding: 0 0 30px 0;
        margin: 0 0 50px;
    }
}

.product-section.bg-dark h3 {
    color: #ffffff;
}

.product-section h3:after {
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.product-section.has-carousel .container,
.product-section.has-carousel .container .col-12 {
    padding: 0;
}

.product-section.has-carousel .container > .row {
    margin: 0;
}

.product-section h4 {
    text-align: center;
    font-family: "Libre Baskerville", "Arial", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    color: #f38230;
    margin-bottom: 25px;
}

.product-section.bg-dark .text {
    color: #ffffff;
}

.essentials-carousel {
    position: relative;
}

.essentials-carousel .item {
    padding: 0 15px;
}

.essentials-carousel .image {
    position: relative;
    height: 0;
    padding-top: 75%;
}

.essentials-carousel .image img {
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.essentials-carousel .text h4 {
    font-family: "Libre Baskerville", "Arial", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    padding: 15px 0;
    line-height: 1.2;
    text-align: center;
    color: #000;
}

.essentials-carousel .text p {
    text-align: center;
}

#carousel .owl-stage,
.documentation-carousel .owl-stage,
.essentials-carousel .owl-carousel .owl-stage,
.accesories-carousel .owl-carousel .owl-stage,
.recipes-carousel .owl-carousel .owl-stage,
.product-list .related-carousel .owl-carousel .owl-stage {
    margin: 0 auto;
}

.documentation-carousel .owl-item,
.essentials-carousel .owl-carousel .owl-item,
.accesories-carousel .owl-carousel .owl-item,
.recipes-carousel .owl-carousel .owl-item,
.product-list .related-carousel .owl-carousel .owl-item {
    padding: 0 0;
}

@media (min-width: 567px) {
    .documentation-carousel .owl-item,
    .essentials-carousel .owl-carousel .owl-item,
    .accesories-carousel .owl-carousel .owl-item,
    .recipes-carousel .owl-carousel .owl-item,
    .product-list .related-carousel .owl-carousel .owl-item {
        padding: 0 7.5px;
    }
}

@media (min-width: 1024px) {
    .essentials-carousel .owl-carousel,
    .accesories-carousel .owl-carousel,
    .recipes-carousel .owl-carousel,
    .product-list .related-carousel .owl-carousel {
        padding: 0 60px;
    }
}

.essentials-carousel .owl-carousel .owl-nav button.owl-prev,
.accesories-carousel .owl-carousel .owl-nav button.owl-prev,
.recipes-carousel .owl-carousel .owl-nav button.owl-prev,
.product-list .related-carousel .owl-carousel .owl-nav button.owl-prev {
    left: 0;
    background: #fff url(../img/front/carousel-arrow-left.png) no-repeat center center;
}

.essentials-carousel .owl-carousel .owl-nav button.owl-next,
.accesories-carousel .owl-carousel .owl-nav button.owl-next,
.recipes-carousel .owl-carousel .owl-nav button.owl-next,
.product-list .related-carousel .owl-carousel .owl-nav button.owl-next {
    right: 0;
    background: #fff url(../img/front/carousel-arrow-right.png) no-repeat center center;
}

.essentials-carousel .owl-carousel .owl-nav button.owl-next,
.product-list .related-carousel .owl-carousel .owl-nav button.owl-next,
.accesories-carousel .owl-carousel .owl-nav button.owl-next,
.recipes-carousel .owl-carousel .owl-nav button.owl-next,
.essentials-carousel .owl-carousel .owl-nav button.owl-prev,
.product-list .related-carousel .owl-carousel .owl-nav button.owl-prev,
.accesories-carousel .owl-carousel .owl-nav button.owl-prev,
.recipes-carousel .owl-carousel .owl-nav button.owl-prev {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: 13px auto;
    border: 2px solid #eee;
}

.product-specification-table {
    max-width: 910px;
    margin: 0 auto;
}

.product-specification-table table {
    border-collapse: separate;
}

.product-specification-table table tr:nth-child(odd) {
    background-color: #f5f7f7;
}

.product-specification-table table td {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    background-color: transparent;
    vertical-align: middle;
    line-height: 1.2em;
    border: none;
    border-right: 1px solid #fff;
    padding: 14px 22px;
    text-transform: lowercase;
}

@media (min-width: 768px) {
    .product-specification-table table td {
        width: 50%;
    }
}

.product-specification-table table td:first-letter {
    text-transform: capitalize;
}

.product-specification-table table td.info {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-weight: normal;
    vertical-align: middle;
}

.product-specification-table table td.reference {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    color: #948e88;
    text-align: center;
}

.product-specification-table table .theme-title {
    border: 1px solid #000 !important;
    background-color: #000 !important;
    text-align: left !important;
    color: #fff !important;
    font-size: 12pt !important;
}

.product-specification-table .is,
.product-specification-table .not {
    border-radius: 100%;
    height: 14px;
    display: inline-block;
    margin-top: 2px;
    background: url(../img/front/ok-nok.png) no-repeat;
}

.product-specification-table .is {
    width: 18px;
    background-position: left top;
}

.product-specification-table .not {
    width: 15px;
    background-position: right top;
}

.product-section .downloads {
    margin-top: 60px;
    font-size: 0;
    text-align: center;
}

.product-section .downloads a {
    display: block;
    font-size: 20px;
}

.product-section .downloads a:hover {
    text-decoration: none;
}

.product-section .downloads a span {
    display: block;
}

.product-section .downloads a span.image {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 100%;
    border: 1px solid #575554;
    transition: all 300ms ease;
}

.product-section .downloads a:hover span.image {
    border-color: #f38230;
}

.product-section .downloads a span.image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 40%;
}

.product-section .downloads a span.text {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 0 5px;
    line-height: 20px;
    text-transform: uppercase;
}

.faq .accordion-group {
    border: 0;
    margin: 0 0 10px 0;
}

.faq .accordion-heading {
    border-bottom: 0;
}

.faq .accordion-toggle {
    display: block;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 40px 15px 20px;
    line-height: 32px;
    background: #232120;
    color: #fff;
    position: relative;
    margin: 0;
    outline: none;
    text-align: left;
    transition: all 300ms ease;
}

.faq .accordion-toggle:hover {
    text-decoration: none;
}

.faq .accordion-toggle:after {
    position: absolute;
    right: 20px;
    top: 26px;
    font-family: icokrups;
    font-size: 11px;
    font-size: 1.1rem;
    color: #fff;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e900";
    transition: all 300ms ease;
}

.faq .accordion-toggle.collapsed:after {
    content: "\e902";
    transition: all 300ms ease;
}

.faq .accordion-inner {
    border: 0;
    padding: 0;
}

.faq .accordion-inner .accordion-group {
    margin: 0;
    border-bottom: 1px solid #fff;
}

.faq .accordion-inner .accordion-group .accordion-heading .accordion-toggle {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-weight: normal;
    color: #2a2622;
    background: #eaeeef;
    border-color: #fff;
    text-align: left;
    text-transform: none;
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0;
}

.faq .accordion-inner .accordion-toggle.collapsed:after {
    content: "\e902";
}

.faq .accordion-inner .accordion-toggle:after {
    font-size: 11px;
    font-size: 1.1rem;
    color: #50535d;
    content: "\e900";
}

.faq .accordion-inner .accordion-inner {
    background: #eaeeef;
    text-align: justify;
    padding: 20px 15px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4em;
}

@media (min-width: 992px) {
    .faq .accordion-inner .accordion-inner {
        padding: 4% 15%;
    }
}

.faq .accordion-inner img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}

.faq .accordion-inner .accordion-iframe {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.4%;
    margin: 20px auto;
}

.faq .accordion-inner iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    min-width: 100% !important;
}

.product-list .related-carousel .owl-carousel .owl-item img {
    width: auto;
}

.accesories-carousel .owl-item {
    padding: 0 5px;
}

.accesories-carousel .col-accesory {
    width: 100%;
    border: 1px solid #eaeeef;
    background: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    display: inline-block;
    vertical-align: top;
    padding: 35px 15px 50px;
    position: relative;
    margin-bottom: 60px;
}

.accesories-carousel .col-accesory a.product,
.accesories-carousel .col-accesory a.product span {
    display: block;
}

.accesories-carousel .col-accesory a.product .title {
    display: block;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    color: #f38230;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 18px;
    text-align: center;
}

.accesories-carousel .col-accesory a.product .subtitle {
    font-family: "Open Sans", "Arial", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
    color: #948e88;
    padding: 0 15px;
    margin: 0;
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 10;
}

.accesories-carousel .col-accesory a.product .image {
    margin: 20px 0;
    position: relative;
    padding-bottom: 80%;
}

.accesories-carousel .col-accesory a.product .image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%;
    max-height: 100%;
    object-fit: contain;
}

.accesories-carousel .col-accesory a.product .description {
    color: #2a2622;
    text-align: center;
}

.accesories-carousel .col-accesory .cta-actions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
}

.accesories-carousel .col-accesory .cta-actions a {
    margin: 3px 0;
    padding: 5px;
    font-size: 1.1rem;
    width: 49%;
}

.page-reparability {
    background: #eaeeef;
}

.reparability-header {
    position: relative;
    padding: 225px 0 0 0;
}

.reparability-header .bg img {
    display: block;
    width: 100%;
}

.reparability-header-container {
    position: relative;
    margin: 0 auto 40px auto;
    position: relative;
    top: -140px;
    margin-bottom: -140px;
    padding: 0 94px;
    max-width: 1784px;
}

.reparability-header h1 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 30px;
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 0 0 25px;
    margin: 0 0 10px 0;
}

.reparability-header h2 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 25px;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #2a2622;
    text-align: center;
    position: relative;
    padding: 0 0 30px 0;
    margin: 0 0 30px;
    line-height: 32px;
}

.reparability-header h1:after,
.reparability-header h2:after {
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.reparability-header a {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
}

.reparability-header .wrapper {
    background: #ffffff;
    text-align: center;
    position: relative;
    padding: 60px 0;
    width: 100%;
    margin: 0 auto;
    min-height: 134px;
}

.simple-search {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.simple-search .form-group {
    margin: 0;
}

.simple-search input[type="text"] {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    width: 100%;
    display: block;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #dadada;
    height: 50px;
    padding-right: 55px;
    color: #50535d;
    box-shadow: none;
    font-size: 14px;
    line-height: 20px;
    outline: none;
}

.simple-search button[type="submit"] {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 40px;
}

.simple-search button.btn-search {
    background: url(../img/front/icon-search2.png) no-repeat center center;
    background-size: 18px auto;
}

.simple-search button.btn-search.btn-close {
    background: url(../img/front/icon-close.png) no-repeat center center;
    background-size: 40px auto;
}

.menu-sticky {
    position: relative;
}

.sticky-container nav.sticky {
    width: 100%;
    margin: 0 auto;
    padding: 25px 0 0 0;
    text-align: center;
    transition: all 300ms ease;
}

.sticky-container {
    background: rgba(255, 255, 255, 0);
    transition: all 300ms ease;
    padding-top: 65px;
}

.sticky-container.stick {
    background: #ffffff;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}

.sticky-container.stick nav.sticky {
    background: #eaeeef;
}

.sticky-container nav.sticky button {
    display: inline-block;
    padding: 0 9px;
    font-size: 18px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    background: transparent;
    border: none;
    outline: none;
}

.sticky-container nav.sticky button.current,
.sticky-container nav.sticky button:hover {
    color: #f38230;
}

.sticky-container nav.sticky button:after {
    width: 0;
    display: block;
    content: "";
    margin: 24px auto 0 auto;
    height: 4px;
    background: transparent;
    transition: all 300ms ease-out;
}

.sticky-container nav.sticky button.current:after,
.sticky-container nav.sticky button:hover:after {
    width: 50px;
    background: #f38230;
    color: #f38230;
}

.reparability-section {
    padding: 0 94px 70px;
    min-height: 200px;
    background: #eaeeef;
}

.section-commitment {
    position: relative;
}

.section-commitment .bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 583px;

    background: url(../img/front/reparability/bg-commitments.png) no-repeat center center;
    background-size: cover;
}

.section-commitment img {
    display: block;
    width: 100%;
}

.section-commitment h2 {
    color: #ffffff;
    margin-top: 65px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 25px;
    text-align: center;
    position: relative;
}

.section-commitment h2:after {
    content: "";
    display: block;
    position: relative;
    top: 25px;
    left: 50%;
    width: 50px;
    margin-left: -25px;
    height: 5px;
    background-color: #f38230;
}

.section-commitment h3 {
    text-align: center;
    color: #f38230;
    font-family: "Libre Baskerville";
    font-size: 20px;
}

.section-commitment .text {
    margin: 30px 0 39px 0;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

.section-how .box {
    margin-top: 30px;
}

.section-how .box-wrapper {
    padding: 37px 30px;
}

.section-how .bg-dark {
    background: #2a2622 !important;
}

.section-how .bg-orange {
    background: #f38230;
}

.section-how .bg-dark .box-wrapper {
    padding: 15px;
}

.section-how .has-border {
    border: 2px solid #bebdbd;
}

.section-how img {
    display: block;
    width: 100%;
}

.section-how h2 {
    color: #f38230;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 50px;
    text-align: center;
    margin: 0;
}

.section-how h2 + h3 {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0;
}

.section-how h2 + h3:after {
    display: none;
}

.section-how h3 {
    margin: 50px 0 30px;
    padding-bottom: 20px;
    color: #2a2622;
    text-align: center;
    position: relative;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 25px;
}

.section-how .bg-dark h3 {
    color: #ffffff;
}

.section-how .bg-dark h3 span {
    color: #f38230;
    display: block;
}

.section-how h3:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    transform: translateX(-50%);
    height: 5px;
    background-color: #f38230;
}

.section-how .text {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
}

.section-how .bg-dark .text,
.section-how .bg-orange .text {
    color: #ffffff;
}

.section-how .bg-dark .box-wrapper {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-how .equal-height-columns .box {
    height: 100%;
}

.equal-height-columns > div,
.equal-height-columns > div > div,
.equal-height-columns > div > div > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-repairers .bg-dark {
    background: #2a2622 !important;
    color: #ffffff;
    padding: 40px;
    text-align: center;
}

.section-repairers h2 {
    color: #ffffff;
    margin-bottom: 50px;
    margin-top: 50px;
    text-align: center;
    font-size: 25px;
    position: relative;
}

.section-repairers h2:after {
    content: "";
    display: block;
    position: relative;
    top: 25px;
    left: 50%;
    width: 50px;
    margin-left: -25px;
    height: 5px;
    background-color: #f38230;
}

.section-repairers .cta-actions {
    margin-top: 30px;
}

.section-repairers .cta-actions .btn {
    width: 100%;
    margin: 10px 0;
    font-size: 13px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 11.5px 32px;
}

.section-repairers .pin {
    position: absolute;
    right: 18%;
    top: 15%;
    text-align: center;
    width: 220px;
    background: url(../img/front/reparability/pin.png) no-repeat center center;
    background-size: contain;
    height: 321px;
}

.section-repairers .pin h3 {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    color: #ffffff;
}

.section-repairers .pin h3 span {
    display: block;
    font-size: 3em;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
}

@media (min-width: 767px) {
    .section-repairers .col-content {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .section-repairers {
        padding-bottom: 0;
        background: url(../img/front/reparability/bg-repairers-map.jpg) no-repeat center center;
        background-size: cover;
        margin-bottom: 75px;
    }

    .section-repairers .bg-dark {
        max-width: 430px;
    }
}

.section-solutions h2 {
    margin-bottom: 50px;
    margin-top: 50px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 25px;
    position: relative;
    text-align: center;
}

.section-solutions h2:after {
    content: "";
    display: block;
    position: relative;
    top: 25px;
    left: 50%;
    width: 50px;
    margin-left: -25px;
    height: 5px;
    background-color: #f38230;
}

.section-solutions h3 {
    font-family: "Libre Baskerville";
    font-size: 20px;
    text-align: center;
}

.section-solutions .text {
    margin: 40px 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.section-printing {
    padding-top: 70px;
    position: relative;
}

.section-printing .bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 500px;
    background: #2a2622;
}

.section-printing h2 {
    color: #fff;
    margin-bottom: 50px;
    margin-top: 50px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 25px;
    text-align: center;
}

.section-printing h3 {
    margin: 40px 0;
    color: #f38230;
    font-family: "Libre Baskerville";
    font-size: 20px;
    text-align: center;
}

.section-printing .vp {
    margin: 50px 0;
    text-align: center;
}

.section-printing .vp img {
    display: inline-block;
    width: 30%;
    max-width: 185px;
    margin: 40px 0;
}

.section-printing .vp .quotation-marks {
    font-family: "Libre Baskerville";
    color: #f38230;
    font-size: 80px;
    display: block;
    margin: 0 auto 0 auto;
    padding: 0;
    letter-spacing: -5px;
    position: relative;
    left: -10px;
    top: -35px;
    line-height: normal;
    height: 15px;
}

.section-printing .vp em {
    color: #948e88;
    font-family: "Libre Baskerville";
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    display: block;
    width: 100%;
}

.video-thumbnail a.play {
    font-size: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #f38230;
}

.video-thumbnail a.play:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 14px;
    background-image: url(../img/front/reparability/icon-play.png);
    background-size: 100% 100%;
}

.section-hero {
    padding-top: 225px;
}

.section-hero.full-width {
    padding-top: 0;
}

.section-hero .title-wrapper {
    position: relative;
}

.section-hero .title-wrapper img {
    display: block;
    width: 100%;
}

.section-hero .title-wrapper .bg {
    position: relative;
    min-height: 200px;
    background: #eee;
    overflow: hidden;
}

.section-hero .title-wrapper .bg:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.section-hero .title-wrapper .title {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 15px;
    text-align: center;
}

.section-hero.full-width .title-wrapper .title {
    top: 54%;
    transform: none;
}

.section-hero .title-wrapper .title h1 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 30px;
    font-size: 2.6rem;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 0 0 25px;
    margin: 0;
}

.section-hero .title-wrapper .title h1:after {
    content: "";
    width: 50px;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-hero-search .title-wrapper .bg {
    min-height: auto;
}

.section-hero-search .title-wrapper .bg img {
    max-height: 170px;
    object-fit: cover;
}

.section-hero-search .search-form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    max-width: 345px;
}

.content-wrapper {
    background: #ffffff;
    text-align: center;
    background-color: #fff;
    padding: 15px;
    margin-bottom: 22.5px;
}

@media (min-width: 992px) {
    .content-wrapper {
        padding: 5% 15% 15px 15%;
    }
}

.content-wrapper.little-content {
    padding: 10%;
}

.content-wrapper .title h2 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 25px;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #2a2622;
    text-align: center;
    position: relative;
    padding: 0 0 30px 0;
    margin: 0 0 30px;
    line-height: 32px;
}

.content-wrapper .title h2:after {
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.content-wrapper h2 {
    font-family: "Libre Baskerville", "Arial", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    font-weight: bold;
    margin-top: 40px;
}

.content-wrapper h4 {
    font-weight: bold;
    margin-top: 30px;
}

.side-wrapper {
    padding: 10% 8% 20% 8%;
    background: #ffffff;
    position: relative;
}

.side-wrapper h2 {
    font-size: 16px;
    font-size: 1.6rem;
    color: #161414;
    position: relative;
    text-align: center;
}

.side-wrapper h2:after {
    content: "";
    display: block;
    height: 5px;
    width: 50px;
    background: #f38230;
    margin: 8% auto 10%;
}

.side-wrapper .description {
    text-align: center;
}

.side-wrapper .actions {
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.choose-country h4 {
    font-family: "Libre Baskerville", "Arial", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 20px;
    position: relative;
}

.choose-country ul {
    list-style: none;
    padding: 0;
}

.choose-country a {
    text-decoration: none;
    color: #2a2622;
    display: block;
    padding: 5px 0;
}

.choose-country a:hover {
    text-decoration: none;
    color: #948e88;
}

.faq-categories {
    padding-bottom: 40px;
}

.faq-categories .category {
    display: block;
    position: relative;
    margin: 20px 0;
    background: #f38230;
}

.faq-categories .category span {
    display: block;
}

.faq-categories .category span.title {
    padding: 10px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.4s;
    margin: 0;
    line-height: 18px;
    letter-spacing: 1px;
}

.faq-categories .category span.image {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 90%;
    overflow: hidden;
}

.faq-categories .category span.image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    min-width: 105%;
    transition: all 300ms ease;
}

.faq-categories .category:hover span.image img {
    transform: translate(-50%, -50%) scale(1.1);
}

.faq-categories {
    padding-bottom: 40px;
}

.faq-categories .product {
    display: block;
    position: relative;
    margin: -1px -1px 0 0;
    background: #ffffff;
    padding: 20px 0;
    border: 1px solid #d9dbe0;
}

.faq-categories .product:before {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    content: "";
    display: block;
    opacity: 0;
    transition: all 600ms ease;
    background: linear-gradient(
        to bottom,
        rgba(238, 238, 238, 0) 26%,
        rgba(238, 238, 238, 0.22) 76%,
        rgba(0, 0, 0, 0.4) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00eeeeee', endColorstr='#66000000', GradientType=0);
}

.faq-categories .product:hover:before {
    opacity: 0.2;
}

.faq-categories .product span {
    display: block;
}

.faq-categories .product span.title {
    padding: 0 15px;
    margin: 0 0 3px 0;
    color: #f38230;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 18px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.faq-categories .product span.subtitle {
    font-family: "Open Sans", "Arial", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
    color: #948e88;
    padding: 0 15px;
    margin: 0;
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 10;
}

.faq-categories .product span.image {
    position: relative;
    width: 100%;
    padding-top: 90%;
    overflow: hidden;
    margin: 0 0 20px 0;
}

.faq-categories .product span.image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    min-width: 105%;
    transition: all 300ms ease;
    mix-blend-mode: multiply;
    z-index: 10;
}

.faq-products .row {
    margin: 0;
}

.faq-products .row > div {
    padding: 0;
}

.faq-categories.faq-products .product span.image img {
    min-width: auto;
    max-width: 90%;
    max-height: 90%;
}

.col-faq-product .image {
    height: 100%;
    position: relative;
    padding: 0 0 75% 0;
    overflow: hidden;
}

.col-faq-product .image a {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.col-faq-product .image img {
    margin: 0;
    padding: 0;
    max-height: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.col-recipe .image {
    height: 100%;
    position: relative;
    padding: 0 0 75% 0;
    overflow: hidden;
}

.col-recipe .image a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.col-recipe .image a img {
    margin: 0;
    padding: 0;
    max-width: 110%;
    max-height: 110%;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.recipes {
    background: #eaeeef;
    padding-bottom: 40px;
}

.recipes .category,
.recipes-carousel .category {
    display: block;
    position: relative;
    margin: 20px 0;
    background: #ffffff;
}

.recipes .category span,
.recipes-carousel .category span {
    display: block;
}

.recipes .category span.text,
.recipes-carousel .category span.text {
    padding: 30px 20px 0px;
}

.recipes .category span.title,
.recipes-carousel .category span.title {
    color: #f38230;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    transition: all 300ms ease;
    text-transform: uppercase;
    text-align: center;
    min-height: 50px;
}

.recipes .category span.subtitle,
.recipes-carousel .category span.subtitle {
    color: #28201a;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 10px;
    font-size: 1rem;
    margin-bottom: 5px;
    transition: all 300ms ease;
    text-transform: uppercase;
    text-align: center;
}

.recipes .category span.image,
.recipes-carousel .category span.image {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 60%;
}

.recipes .category span.image img,
.recipes-carousel .category span.image img {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    display: block;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: all 600ms ease;
}

.recipes .category:hover span.image img,
.recipes-carousel .category:hover span.image img {
    transform: translate(-50%, 0%) scale(1.05);
}

.recipe-wrapper {
    text-align: left;
}

.recipe-wrapper h2 {
    text-align: left;
    margin: 0 0 20px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 25px;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #2a2622;
    position: relative;
    padding: 0 0 30px 0;
    margin: 0 0 30px;
    line-height: 32px;
}

.recipe-wrapper h2:after {
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 0;
}

.recipe-wrapper ul {
    list-style-type: none;
    vertical-align: top;
    margin: 0 0 20px 0;
    padding: 0;
}

.recipe-wrapper ul li {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    display: block;
    padding: 2px 13px;
    position: relative;
}

.recipe-wrapper ul li:before {
    content: "-";
    color: #f38230;
    position: absolute;
    left: 0;
    top: 3px;
}

.recipe-wrapper .accordion-panel {
    margin-bottom: 35px;
}

.recipe-products-wrapper {
    margin: 20px 0;
}

.recipe-filters-container {
    background: #232120;
}

.recipe-filters .actions {
    position: relative;
    text-align: center;
    height: 0;
    margin-top: 30px;
}

.recipe-filters .actions .btn {
    transform: translateY(-50%);
    position: relative;
    z-index: 10;
}

.recipe-filters .actions .btn .final {
    display: none;
}

.recipe-filters.active .actions .btn .initial {
    display: none;
}

.recipe-filters.active .actions .btn .final {
    display: block;
}

.recipe-filters .filtersContainer {
    height: 0;
    overflow: hidden;

    transition: all 300ms ease;
    padding: 0;
}

.recipe-filters.active .filtersContainer {
    height: auto;
    padding: 40px 0;
}

.recipe-filters .filtersContainer .title {
    color: #fff;
    text-align: center;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 25px;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding: 10px 0 30px 0;
    margin: 0 0 30px;
    line-height: 1.3;
}

.recipe-filters .filtersContainer .title:after {
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.filtersWrappers {
    max-width: 600px;
    margin: 0 auto;
}

.filtersWrapper {
    width: 100%;
    border-bottom: 2px solid #343332;
    padding: 15px 0;
}

@media (min-width: 600px) {
    .filtersWrapper {
        padding: 25px 40px;
    }
}

.filtersWrapper h3 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
}

.filtersWrapper .options {
    text-align: center;
    font-size: 0;
}

.filtersWrapper .options ul {
    padding: 0;
    list-style: none;
}

.filtersWrapper .options ul li {
    display: inline-block;
    width: 33.333%;
    margin: 20px 0;
}

.filtersWrapper .options a {
    display: inline-block;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    border: 2px solid #343332;
    cursor: pointer;
    margin: 0 auto;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.filtersWrapper .options a[data-tooltip]:after {
    z-index: 1000;
    padding: 8px;
    background-color: #171413;
    content: attr(data-tooltip);
    font-size: 11px;
    font-size: 1.1rem;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    color: #575554;
    text-transform: uppercase;
    font-weight: normal;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    white-space: nowrap;
    opacity: 0;
    transition: all 300ms ease;
}

.filtersWrapper .options a[data-tooltip]:hover:after {
    opacity: 1;
    top: 100%;
    color: #fff;
}

@media (hover: none) {
    .filtersWrapper .options a[data-tooltip]:after {
        margin-top: 5px;
        white-space: nowrap;
        opacity: 1;
        color: #fff;
        top: 100%;
        font-size: 10px;
    }
}

.filtersWrapper .options a:hover {
    border-color: #fff;
}

.filtersWrapper .options a.active {
    border-color: #f38230;
}

.filtersWrapper .options a:hover span {
    background-color: #fff;
}

.filtersWrapper .options a.active span {
    background-color: #f38230;
}

.filtersWrapper .options a span {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
    background-color: #666666;
}

@media (min-width: 400px) {
    .filtersWrapper .options ul li {
        width: 25%;
        margin: 0;
    }

    .filtersWrapper .options a {
        width: 85px;
        height: 85px;
    }

    .filtersWrapper .options a span {
        width: 50px;
        height: 50px;
    }
}

.filtersWrapper .options a.breakfast span {
    -webkit-mask: url(../img/front/icons-recipes/icon-breakfast.png) center/contain;
    mask: url(../img/front/icons-recipes/icon-breakfast.png) center/contain;
}

.filtersWrapper .options a.coffeebreak span {
    -webkit-mask: url(../img/front/icons-recipes/icon-coffee-break.png) center/contain;
    mask: url(../img/front/icons-recipes/icon-coffee-break.png) center/contain;
}

.filtersWrapper .options a.snack span {
    -webkit-mask: url(../img/front/icons-recipes/icon-snack.png) center/contain;
    mask: url(../img/front/icons-recipes/icon-snack.png) center/contain;
}

.filtersWrapper .options a.all span {
    -webkit-mask: url(../img/front/icons-recipes/icon-all-categories.png) center/contain;
    mask: url(../img/front/icons-recipes/icon-all-categories.png) center/contain;
}

.optionsCheckboxes {
    font-size: 14px;
    color: #fff;
    height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.optionsRadios {
    font-size: 14px;
    color: #fff;
    font-size: 0;
}

.optionsRadios .line {
    width: 66%;
    height: 1px;
    background: #575554;
    position: relative;
    margin: 0 auto;
}

.optionsRadios .line .progress-line {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background: #f38230;
    transition: all 300ms ease;
}

.optionsRadios.difficulty .line {
    margin-top: 70px;
}

.optionsRadios .line .progress-line .progress-container-mask {
    height: 0;
    position: absolute;
    bottom: 20px;
    left: -1%;
    right: -1%;
    background: #aaa;
    z-index: 10;
    transform: rotate(-5deg);
    display: none;
}

.optionsRadios .line .progress-line .progress-container {
    height: 0;
    width: 100%;
    position: absolute;
    bottom: 1px;
    left: 0;
    background: #2c2a29;
    background: linear-gradient(to bottom right, #232120 0%, #232120 50%, #2c2a29 50%, #2c2a29 100%);
    transition: all 300ms ease;
    padding-top: 15%;
}

.optionsRadios .radio {
    width: 33.3333%;
    display: inline-block;
    position: relative;
}

.optionsRadios .radio label {
    display: block;
    position: relative;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.optionsRadios .radio label input {
    opacity: 0;
    position: fixed;
    top: -100px;
    left: -100px;

    /* position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; */
}

.optionsRadios .radio label input + span {
    display: block;
    text-align: center;
    position: relative;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 11px;
    font-size: 1.1rem;
    color: #948e88;
    text-transform: uppercase;
    padding: 30px 0 0 0;
    transition: all 0.3s;
}

.optionsRadios .radio label input + span:before {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 4px;
    background: #948e88;
    transition: all 300ms ease;
}

.optionsRadios .radio label input:hover + span:before {
    background: #fff;
}

.optionsRadios .radio label input:checked + span:before {
    background: #f38230;
}

.optionsRadios .radio label input + span i {
    display: block;
    position: absolute;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid #948e88;
    background: #232120;
    opacity: 0;
}

.optionsRadios .radio label input + span i:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #f38230;
    transition: all 300ms ease;
}

.optionsRadios .radio label input:hover + span {
    color: #fff;
}

.optionsRadios .radio label input:checked + span {
    color: #f38230;
}

.optionsRadios .radio label input:checked + span i {
    opacity: 1;
}

.product-header .col-product .recipe-products-wrapper h2 {
    width: 100%;
    margin: 0;
}

.product-header .col-product ul.recipe-steps {
    display: block;
    padding: 0;
    margin-bottom: 20px;
}

.product-header .col-product ul.recipe-steps li {
    display: flex;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    color: #2a2622;
    overflow: hidden;
    border-bottom: 1px solid #cecdcd;
    line-height: 22px;
    padding: 20px 0;
}

.product-header .col-product ul.recipe-steps li:last-child {
    border-bottom: hidden;
}

.product-header .col-product ul.recipe-steps li span {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    margin-left: auto;
}

.share-actions {
    margin-top: 25px;
}

.share-actions a {
    display: inline-block;
    vertical-align: middle;
    line-height: 26px;
    font-weight: bold;
    font-size: 13px;
    padding-right: 2px;
    transition: all 300ms ease;
    margin-right: 10px;
}

.share-actions a:hover {
    color: #f38230;
}

.share-actions a span {
    display: inline-block;
}

.share-actions a .icon {
    font-size: 40px;
    line-height: 25px;
    vertical-align: top;
}

.share-actions a .icon:after {
    display: inline-block;
    font-family: "ico";
}

.share-actions a .icon-share:after {
    content: "\e624";
}

.share-actions a .icon-envelope:after {
    content: "\e622";
}

.CookieDeclaration {
    text-align: left;
}

.CookieDeclarationDialogText,
.CookieDeclarationIntro,
.CookieDeclarationLastUpdated {
    margin: 0 0 14px 0;
}

.CookieDeclarationType {
    display: block;
    margin: 12px 0 12px 0;
    padding: 8px 8px 0 8px;
    border: 1px solid #333333;
    vertical-align: top;
}

.CookieDeclarationTypeHeader {
    font-weight: bold;
}

.CookieDeclarationTypeDescription {
    margin: 2px 0 16px 0;
}

.CookieDeclarationTable {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 0 18px 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.CookieDeclarationTableHeader {
    font-weight: bold;
    border-bottom: 1px solid #777777;
    text-align: left;
    padding: 4px;
    overflow: hidden;
}

.CookieDeclarationTableHeader[dir="rtl"] {
    text-align: right;
}

.CookieDeclarationTableCell {
    text-overflow: ellipsis;
    word-wrap: break-word;
    border-bottom: 1px solid #777777;
    vertical-align: top;
    padding: 4px 4px 5px 4px;
}

#CookieDeclarationUserStatusLabelConsentId {
    text-overflow: ellipsis;
    word-wrap: break-word;
}

@media all and (max-width: 600px) {
    .CookieDeclaration table.CookieDeclarationTable tr td:nth-child(n + 5),
    .CookieDeclaration table.CookieDeclarationTable tr th:nth-child(n + 5),
    .CookieDeclaration table.CookieDeclarationTable colgroup col:nth-child(n + 5) {
        display: none;
    }
}

.constrain .table th,
.constrain .table td {
    border: 1px solid #777777;
}

.distributors {
    margin: 20px 0 30px;
}

.distributors h2 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 25px;
    font-size: 2.5rem;
    color: #2a2622;
    text-transform: uppercase;
    text-align: center;
    line-height: 25px;
    margin-top: 40px;
}

.distributors h2:after {
    content: "";
    display: block;
    height: 5px;
    width: 100px;
    background: #f38230;
    margin: 2% auto 5%;
}

.distributors .distributor {
    margin: 15px 0;
}

.distributors .distributor a {
    display: block;
}

.distributors .distributor a span {
    display: block;
}

.distributors .distributor a .image {
    background: #ffffff;
    padding: 50% 0 0 0;
    height: 0;
    position: relative;
}

.distributors .distributor a .image img {
    margin: 0 auto;
    max-width: 80%;
    max-height: 80%;
    transition: all 300ms ease;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.distributors .distributor a:hover .image img {
    transform: translate(-50%, -50%) scale(1.1);
}

.distributors .distributor a .title {
    text-align: center;
    padding-top: 10px;
    color: #f38230;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}

.distributors .distributor a img {
    display: block;
    width: 100%;
}

.full-size .cta-wrapper.slider-with-carousel {
    padding-bottom: 0;
    height: 100%;
}

.category-slider {
    position: relative;
}

.category-slider {
    height: calc(100vh - 100px);
}

.category-slider .slider-wrapper,
.category-slider .slider-wrapper .flexslider,
.category-slider .slider-wrapper .flexslider .flex-viewport,
.category-slider .slider-wrapper .flexslider .flex-viewport .slides,
.category-slider .slider-wrapper .flexslider .flex-viewport .slides li,
.category-slider .slider-wrapper .flexslider .flex-viewport .slides li .item,
.category-slider .slider-wrapper .flexslider .flex-viewport .slides li .item .row {
    height: 100%;
}

@media (min-width: 992px) {
    .category-slider,
    .category-slider .slider-wrapper,
    .category-slider .slider-wrapper .flexslider,
    .category-slider .slider-wrapper .flexslider .flex-viewport,
    .category-slider .slider-wrapper .flexslider .flex-viewport .slides,
    .category-slider .slider-wrapper .flexslider .flex-viewport .slides li,
    .category-slider .slider-wrapper .flexslider .flex-viewport .slides li .item,
    .category-slider .slider-wrapper .flexslider .flex-viewport .slides li .item .row {
        height: 100%;
    }
}

.category-slider .col-image {
    margin: auto 0 0 0;
    display: none;
}

.category-slider .col-description {
    height: 100%;
    padding-top: 5%;
}

.category-slider h2 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 50px;
    font-size: 5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f38230;
    line-height: 1.2;
    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, 0.25),
        1px -1px 0 rgba(0, 0, 0, 0.25),
        -1px 1px 0 rgba(0, 0, 0, 0.25),
        1px 1px 0 rgba(0, 0, 0, 0.25);
}

.category-slider h2:after {
    content: "";
    display: block;
    height: 5px;
    width: 50px;
    background: #f38230;
    margin: 10px auto 0;
}

@media (min-width: 992px) {
    .category-slider .col-description {
        padding-right: 40px;
        margin: auto 0;
        height: auto;
    }

    .category-slider .col-image {
        display: block;
    }

    .category-slider h2:after {
        margin: 5% 0;
    }
}

.category-slider .description {
    font-family: "Libre Baskerville", "Arial", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 10px;
    color: #fffff0;
}

.category-slider .actions {
    margin-top: 25px;
}

.category-slider .actions .btn {
    padding: 18.5px 21.5px;
    border-radius: 37px;
    border: 2px solid #fff;
}

.category-slider .image img {
    max-height: 300px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.category-slider .slider-wrapper .flex-direction-nav .flex-prev,
.category-slider .slider-wrapper .flex-direction-nav .flex-next {
    font-size: 0;
    background-color: red;
}

.category-slider .slider-wrapper .flex-direction-nav .flex-prev:before,
.category-slider .slider-wrapper .flex-direction-nav .flex-next:before {
    display: none;
}

.category-slider .slider-wrapper .flex-direction-nav .flex-prev {
    left: -10px;
    opacity: 1;
    background: url(../img/front/carousel-arrow-left2.png) no-repeat center center;
    background-size: 15px auto;
}

.category-slider .slider-wrapper .flex-direction-nav .flex-next {
    right: -10px;
    opacity: 1;
    background: url(../img/front/carousel-arrow-right2.png) no-repeat center center;
    background-size: 15px auto;
}

@media (min-width: 993px) {
    .category-slider .slider-wrapper .flex-direction-nav .flex-prev {
        left: -40px;
    }

    .category-slider .slider-wrapper .flex-direction-nav .flex-next {
        right: -40px;
    }
}

.category-slider .slider-wrapper .slides li {
    opacity: 0;
    transition: all 300ms ease;
}

.category-slider .slider-wrapper .slides li.flex-active-transition {
    opacity: 1;
}

.category-slider .slider-wrapper {
    height: calc(100% - 200px);
    position: relative;
    z-index: 10;
}

.category-slider .carousel-wrapper {
    position: relative;
    z-index: 12;
    height: 200px;
    padding-top: 20px;
    margin: 0 -15px 0;
    width: calc(100% + 30px);
    background: rgba(255, 255, 255, 0.15);
    background: url(../img/front/bg-carousel-machine.jpg) no-repeat center top;
    background-size: cover;
}

@media (min-width: 992px) {
    .category-slider .carousel-wrapper {
        position: relative;
        z-index: 9;
        height: 300px;
        padding-top: 100px;
        margin: -100px -90px 0;
        width: calc(100% + 180px);
        background: rgba(255, 255, 255, 0.15);
        background: url(../img/front/bg-carousel-machine.jpg) no-repeat center top;
        background-size: cover;
    }
}

.category-slider .carousel-wrapper .carousel .flex-direction-nav {
    display: none;
}

.category-slider .carousel-wrapper .flex-direction-nav .flex-prev {
    left: 0;
}

.category-slider .carousel-wrapper .flex-direction-nav .flex-next {
    right: 0;
}

.category-slider .carousel-wrapper .thumbnail img {
    max-width: 113px;
    display: block;
    margin: 0 auto;
}

.category-slider .flexslider {
    background: none;
    border: none;
    margin: 0;
}

.category-slider .flexslider .flex-control-nav,
.category-slider .flexslider .flex-pauseplay {
    display: none;
}

.carousel-wrapper .flexslider .slides {
    text-align: center;
    width: 100% !important;
    white-space: nowrap;
}

.carousel-wrapper .flexslider .slides > li {
    display: inline-block !important;
    float: none !important;
    vertical-align: top;
    cursor: pointer;
}

.carousel-wrapper .flexslider .slides > li .thumbnail h4 {
    white-space: initial;
    color: #fff;
    text-transform: uppercase;
    display: block;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    line-height: 16px;
    display: block;
    padding: 10px 15px 0;
    transition: all 300ms ease;
}

.carousel-wrapper .flexslider .slides > li.flex-active-slide .thumbnail h4 {
    color: #00ead7;
}

.carousel-wrapper .flexslider .slides > li .thumbnail .image {
    padding: 10px;
    position: relative;
    height: 0;
    padding-top: 60%;
    max-width: 160px;
    margin: 0 auto;
}

.carousel-wrapper .flexslider .slides > li .thumbnail .image:before {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    transition: all 300ms ease;
}

.carousel-wrapper .flexslider .slides > li.flex-active-slide .thumbnail .image:before {
    background: #00ead7;
}

.carousel-wrapper .flexslider .slides > li .thumbnail .image img {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transition: all 300ms ease;
    transform: scale(1) translateX(-50%);
    transform-origin: 0 0;
    max-width: 113px;
}

.carousel-wrapper .flexslider .slides > li:hover .thumbnail .image img,
.carousel-wrapper .flexslider .slides > li.flex-active-slide .thumbnail .image img {
    transform: scale(1.1) translateX(-50%);
    transform-origin: 0 0;
}

.custom-slider-section {
    padding: 0;
    background: #232120;
}

.custom-slider-section .custom-slider,
.custom-slider-section .custom-slider .slider-wrapper,
.custom-slider-section .custom-slider .slider-wrapper .slider,
.custom-slider-section .custom-slider .slider-wrapper .slider .slides,
.custom-slider-section .custom-slider .slider-wrapper .slider .slides li,
.custom-slider-section .custom-slider .slider-wrapper .slider .slides li .slide {
    height: 100%;
}

.custom-slider .flexslider {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.custom-slider .slide {
    position: relative;
    width: 100%;
    height: 100vh;
}

.custom-slider .slide .title {
    position: relative;
    z-index: 11;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    padding-top: 150px;
    display: none;
}

@media (min-width: 767px) and (max-width: 1024px) {
    .full-size.custom-slider-section {
        padding: 0;
    }

    .custom-slider .slide .title {
        padding-top: 80px;
    }
}

.custom-slider .slide .description .title {
    display: block;
}

@media (min-width: 767px) {
    .custom-slider .slide .title {
        display: block;
    }

    .custom-slider .slide .description .title {
        display: none;
    }
}

.custom-slider .slide .title h2 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 40px;
    font-size: 4rem;
    letter-spacing: 1.5px;
    padding-bottom: 25px;
}

.custom-slider .slide .title h2:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    width: 50px;
    background: #f38230;
}

.custom-slider .slide .description {
    padding: 15px;
}

.custom-slider .slide .description p {
    color: #ffffff;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.1;
}

@media (min-width: 767px) {
    .custom-slider .slide .half {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50%;
    }

    .custom-slider .slide .description {
        display: flex;
        flex-direction: column;
        justify-content: center;
        right: 0;
    }

    .custom-slider .slide .description p {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

.custom-slider .slide .image {
    left: 0;
    overflow: hidden;
}

.custom-slider .slide .image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.custom-slider .slide .image:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
}

@media (min-width: 767px) {
    .custom-slider .slide .description {
        padding: 2em 5em;
    }
}

.custom-slider .flex-control-nav {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 100;
}

.custom-slider .flex-control-nav li a {
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.9);
    transition: all 300ms ease;
}

.custom-slider .flex-control-nav li a.flex-active {
    background: rgba(255, 255, 255, 0);
}

.custom-slider .flex-direction-nav .flex-prev,
.custom-slider .flex-direction-nav .flex-next {
    font-size: 0;
    background-color: red;
}

.custom-slider .flex-direction-nav .flex-prev:before,
.custom-slider .flex-direction-nav .flex-next:before {
    display: none;
}

.custom-slider .flex-direction-nav .flex-prev {
    left: 10px;
    opacity: 1;
    background: url(../img/front/carousel-arrow-left2.png) no-repeat center center;
    background-size: 15px auto;
}

.custom-slider .flex-direction-nav .flex-next {
    right: 10px;
    opacity: 1;
    background: url(../img/front/carousel-arrow-right2.png) no-repeat center center;
    background-size: 15px auto;
}

.list-categories {
    background: #171413;
    padding-top: 65px;
}

.list-categories .col-wrapper {
    padding: 20px 5%;
}

.list-categories h2 {
    color: #fff;
    line-height: 25px;
    font-size: 25px;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.list-categories h2:after {
    content: "";
    display: block;
    height: 5px;
    width: 50px;
    background: #f38230;
    margin: 25px 0;
}

.list-categories .description {
    color: #fff;
}

.list-categories .btn {
    padding: 14px 25px;
    border-radius: 28px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 700;
    border-radius: 100px;
    margin-top: 25px;
    letter-spacing: 1.5px;
}

.list-categories .col-description {
    margin: auto 0;
}

.list-categories .col-image {
}

.list-categories .bg {
    height: 100%;
}

.list-categories .bg img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

/** radio and checkbox inputs begin **/

.filters {
    /* Base for label styling */
    /* checkbox aspect */
    /* checked mark aspect */
    /* checked mark aspect changes */
    /* disabled checkbox */
    /* accessibility */
}

.filters .radio input[type="radio"],
.filters .radio-inline input[type="radio"],
.filters .checkbox input[type="checkbox"],
.filters .checkbox-inline input[type="checkbox"] {
    margin-left: 0;
}

.filters [type="radio"]:not(:checked),
.filters [type="radio"]:checked,
.filters [type="checkbox"]:not(:checked),
.filters [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

.filters [type="radio"]:not(:checked) + span,
.filters [type="radio"]:checked + span,
.filters [type="checkbox"]:not(:checked) + span,
.filters [type="checkbox"]:checked + span {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    display: block;
    line-height: 1.3;
    margin: 10px 0;
}

.filters [type="radio"]:not(:checked) + span:before,
.filters [type="radio"]:checked + span:before,
.filters [type="checkbox"]:not(:checked) + span:before,
.filters [type="checkbox"]:checked + span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #eaeeef;
    border-radius: 100%;
}

.filters [type="radio"]:checked + span:before,
.filters [type="checkbox"]:checked + span:before {
    background: #00ead7;
}

.filters [type="radio"]:not(:checked):focus + span:before,
.filters [type="radio"]:checked:focus + span:before,
.filters [type="checkbox"]:not(:checked):focus + span:before,
.filters [type="checkbox"]:checked:focus + span:before {
    /* border: 2px solid #ffffff;
	 background: #00ead7;
	 */
}

.filters [type="radio"]:not(:checked):focus + span,
.filters [type="radio"]:checked:focus + span,
.filters [type="checkbox"]:not(:checked):focus + span,
.filters [type="checkbox"]:checked:focus + span {
    /*text-shadow: 0 0 2px #faa61a;
	*/
}

.filters [type="radio"]:not(:checked) + span:before,
.filters [type="radio"]:checked + span:before {
    border-radius: 100%;
}

.filters [type="radio"]:not(:checked) + span:after,
.filters [type="radio"]:checked + span:after,
.filters [type="checkbox"]:not(:checked) + span:after,
.filters [type="checkbox"]:checked + span:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -3px;
    left: 5px;
    font-size: 14px;
    color: #fff;
    transition: all 0.2s;
    width: 18px;
    height: 10px;
    text-align: center;
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "";
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
}

.filters [type="radio"]:not(:checked) + span:after,
.filters [type="checkbox"]:not(:checked) + span:after {
    opacity: 0;
    transform: scale(0) translateY(-50%);
}

.filters [type="radio"]:checked + span:after,
.filters [type="checkbox"]:checked + span:after {
    /*background: red;
	*/
    opacity: 1;
    transform: scale(1) translateY(-50%) rotate(-45deg);
}

.filters [type="radio"]:checked + span:before,
.filters [type="checkbox"]:checked + span:before {
    /*background: #2d96cd;
	*/
}

.filters [type="radio"]:disabled:not(:checked) + span:before,
.filters [type="radio"]:disabled:checked + span:before,
.filters [type="checkbox"]:disabled:not(:checked) + span:before,
.filters [type="checkbox"]:disabled:checked + span:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.filters [type="radio"]:disabled:checked + span:after,
.filters [type="checkbox"]:disabled:checked + span:after {
    color: #999;
}

.filters [type="radio"]:disabled + span,
.filters [type="checkbox"]:disabled + span {
    color: #aaa;
}

.filters [type="radio"]:checked:focus + span:before,
.filters [type="radio"]:not(:checked):focus + span:before,
.filters [type="checkbox"]:checked:focus + span:before,
.filters [type="checkbox"]:not(:checked):focus + span:before {
    /*border: 1px dotted blue;
	*/
}

/** radio and checkbox inputs end **/

.search-filters {
    background: #ffffff;
}

.section-search-result {
    margin-bottom: 40px;
    background: #ffffff;
}

.search-filters h2 {
    text-align: center;
    padding: 24px 0 27px 0;
    border-bottom: 1px solid #eaeeef;
    color: #2a2622;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 15px;
    font-size: 1.5rem;
    text-transform: uppercase;
    background-color: white;
}

.section-search-result h2 {
    position: relative;

    color: #000000;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-weight: normal;
    font-size: 16px;
    font-size: 1.6rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 35px 14px 55px;
    text-align: center;
}

.section-search-result h2:after {
    content: "";
    width: 30px;
    margin: 0 auto;
    border-bottom: 3px solid #f38230;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
}

.section-search-result h3 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
    color: #948e88;
    display: block;
    margin: 15px 0 12px;
}

.section-search-result img {
    margin: 0 auto;
    width: auto;
    max-height: 153px;
}

.section-search-row {
    border-top: 1px solid #eaeeef;
}

.section-search-row .image {
}

.section-search-row .image a {
    display: block;
    padding: 15px 20px;
    text-align: center;
}

.section-search-row .caption {
    padding: 15px;
}
.section-search-row .caption ul {
    padding-left: 18px;
}

@media (min-width: 576px) {
    .section-search-row .caption {
        padding: 22px 27px 22px 5px;
    }
}

.section-search-row .caption .title {
    display: block;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    color: #f38230;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.modal img {
    display: block;
    max-width: 100%;
}

.modal-lg {
    max-width: 900px;
}

.modal-header {
    background-color: #f38230;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
    padding: 12px 45px 10px 15px;
    min-height: 45px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-weight: normal;
    font-size: 18px;
    font-size: 1.8rem;
    position: relative;
}

.modal-header .modal-title {
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-weight: normal;
}

.modal .close {
    color: #ffffff;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.modal .close:after {
    font-family: "icokrups";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    font-size: 14px;
    font-size: 1.4rem;
    content: "\e701";
    text-indent: 0;
    display: block;
    color: #fff;
    speak: none;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 300ms ease;
}

.modal .modal-body {
    padding: 40px 20px 20px;
    text-align: center;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: lighter;
}

#ModalCommerce.modal-business .modal-header {
    height: 0;
    min-height: 0;
    padding: 0;
    /* background: none; */
}

#ModalCommerce.modal-business .close {
    right: 0;
    margin-top: -20px;
}

#ModalCommerce.modal-business .modal-body {
    padding: 10px 15px 10px !important;
    text-align: left;
    max-height: 80vh;
    overflow: auto;
}

@media (max-width: 575px) {
    #ModalCommerce.modal-business .modal-body .image img {
        max-width: 50%;
        margin: 0 auto;
        display: block;
    }
}

@media (min-width: 992px) {
    #ModalCommerce.modal-business .close {
        right: -50px;
        margin-top: -20px;
    }

    #ModalCommerce.modal-business .modal-body {
        padding: 10px 80px 50px !important;
        text-align: left;
    }
}

#ModalCommerce.modal-business h1 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 25px;
    font-size: 2.5rem;
    color: #2a2622;
    letter-spacing: initial;
    position: relative;
    padding: 0 0 30px 0;
    margin: 0 0 20px;
    line-height: 1.3;
    float: left;
    width: 70%;
}

#ModalCommerce.modal-business h1:before {
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 0;
}

#ModalCommerce.modal-business h2 {
    font-family: "Libre Baskerville", "Arial", sans-serif;
    color: #232120;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.3;
}

#ModalCommerce.modal-business .ref {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #948e88;
    float: right;
    width: 30%;
}

.modal-business .retailers-carousel {
    margin: 20px 0;
    /* padding: 0 30px; */
}

.modal-business .retailers-carousel .owl-nav button {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.modal-business .retailers-carousel .owl-nav .owl-prev {
    left: -35px;
}

.modal-business .retailers-carousel .owl-nav .owl-next {
    right: -35px;
}

.modal-business .retailers-carousel .owl-nav .owl-prev span:after,
.modal-business .retailers-carousel .owl-nav .owl-next span:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 300ms ease;
    font-family: icokrups;
    font-size: 18px;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    color: #aaa;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 300ms ease;
}

.modal-business .retailers-carousel .owl-nav .owl-prev span:after {
    content: "\e601";
}

.modal-business .retailers-carousel .owl-nav .owl-next span:after {
    content: "\e600";
}

.modal-business .retailers-carousel .owl-dots {
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

.modal-business .retailers-carousel .owl-dots .owl-dot {
    background: #eee;
    border-radius: 100%;
    width: 13px;
    height: 13px;
    margin: 2px;
}

.modal-business .retailers-carousel .owl-dots .owl-dot.active {
    background: #ccc;
}

.modal-business .retailers-carousel .retailer a {
    display: block;
    padding: 5px;
    border: 1px solid #f5f7f7;
    position: relative;
    height: 0;
    padding-top: 50%;
}

.modal-business .retailers-carousel .retailer a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.modal #Youtube_GlobalPlayer {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.3%;
}

.modal #Youtube_GlobalPlayer iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.ui-autocomplete {
    padding: 0 0;
    background: #ffffff;
    z-index: 1001;
    border: 1px solid #000;
}

.ui-autocomplete .ui-menu-item-wrapper {
    padding: 10px;
    border-top: 1px solid #1e1c1b;
    color: #1e1c1b;
    transition: all 300ms ease;
}

.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
    margin: 0;
    color: #f38230;
}

.footer-mobile-products {
    background: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-mobile-products h2 {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 0 10px 22px;
    margin: 0 0 22px;
    line-height: 1.3;
    display: block;
    color: #2a2622;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
}

.footer-mobile-products h2:after {
    content: "";
    width: 50px;
    margin: 0 auto;
    border-bottom: 5px solid #f38230;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-mobile-products ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-mobile-products ul li a {
    display: block;
    position: relative;
    overflow: hidden;
    letter-spacing: 1.5px;
    text-shadow: 0px 0px 1px #000;
    display: block;
    padding: 9px 0 7px;
    color: #2a2622;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: none;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.footer-mobile-products ul li a:after {
    content: "";
    width: 25px;
    margin: 0 auto;
    border-bottom: 2px solid #bebdbd;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.content > .message {
    position: fixed;
    right: 15px;
    top: 80px;
    z-index: 140;
    background: #fff;
    padding: 5px 45px 5px 15px;
    border-radius: 15px;
    box-shadow: 0 0 10px #000;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 300ms ease;
    overflow: hidden;
    white-space: nowrap;
}

.content > .message.hidden {
    right: -100%;
    width: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    border-width: 0;
}

.content > .message:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    content: "x";
    height: 24px;
    line-height: 20px;
    width: 24px;
    height: 24px;
    border: 1px solid #000;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    border-radius: 100%;
    color: #000;
    text-align: center;
}

.sticky-buy-btn {
    transition: all 300ms ease;
    width: 0;
    height: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.sticky-buy-btn-hide {
    transition: all 300ms ease;
}

.sticky-buy .sticky-buy-btn {
    position: fixed;
    top: 210px;
    right: 15px;
    left: auto;
    z-index: 1000;
    padding: 5px 10px;
    width: auto !important;
    height: auto;
    opacity: 1;
}

.sticky-buy .sticky-buy-btn-hide {
    opacity: 0;
}

@media (min-width: 767px) {
    .sticky-buy .sticky-buy-btn {
        padding: 7px 10px;
        font-size: 12px;
    }
}

@media (min-width: 767px) {
    .footer-mobile-products {
        display: none;
    }
}

@media (max-width: 991px) {
    .breadcrumbs,
    .breadcrumbs-trail,
    .navigation {
        display: none;
    }

    .category-header {
        padding: 90px 15px 0;
    }

    .product-header {
        padding-top: 90px;
    }

    .product-header .link-reparability,
    .product-header .product-slider + .link-reparability {
        width: 65px;
        bottom: 125px;
    }

    .product-header h1 {
        font-size: 20px;
        font-size: 2rem;
    }

    .product-header h2 {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .product-header .col-product .description {
        padding: 10px 0;
    }

    .full-size {
        padding: 85px 15px 15px;
    }

    .full-size .cta-wrapper .cta-title,
    .full-size .cta-wrapper.cta-wrapper-centered .cta-title {
        font-size: 20px;
        font-size: 2rem;
        padding: 0 0 25px 0;
        margin: 0 0 20px;
        text-align: center;
        line-height: 1.2;
    }

    .full-size .cta-wrapper .cta-title span {
        display: block;
        line-height: 1.2 !important;
        width: 100% !important;
    }

    .full-size .cta-wrapper .cta-title br {
        display: none;
    }

    .full-size .cta-wrapper .cta-title:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .full-size .cta-wrapper .cta-desc {
        width: 100%;
        text-align: center;
    }

    .full-size .cta-wrapper .cta-actions {
        text-align: center;
    }

    .full-size .cta-wrapper.cta-wrapper-centered {
        margin: 0;
        width: 100%;
    }

    .full-size .cta-wrapper.cta-wrapper-centered .cta-category {
        font-size: 14px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .full-size .cta-wrapper.cta-wrapper-centered .cta-title span {
        float: none !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .full-size .cta-wrapper h3 {
        margin-bottom: 10px;
        text-align: center;
    }

    .category-slider .col-image {
        display: none;
    }

    .category-slider .col-description {
        text-align: center;
    }

    .category-slider .col-description h2 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .header {
        width: 100%;
        left: 0;
        transform: none;
    }

    .header .logo {
        width: 40%;
        right: 60%;
    }

    .header .mobileLogo img {
        width: 90px;
    }

    .header ul {
        left: 0%;
        width: 100%;
    }

    .header ul li {
        width: 30%;
    }

    .header ul li.mobileLogoWrapper {
        width: 40%;
    }

    .header .logo,
    .header ul li,
    .header-search,
    .header-search input,
    .header-search .toggleSearch {
        height: 53px;
    }

    .header-search input {
        padding-left: 10px;
        padding-right: 53px;
    }

    .header-search .btn-search {
        right: 53px;
    }

    .header-search .btn-search,
    .header-search .toggleSearch {
        width: 53px;
    }

    .menu {
        top: 53px;
        display: block;
        padding-top: 0px;
        max-height: calc(100vh - 53px);
        overflow: auto;
    }

    .menu .main,
    .menu .secondary {
        display: block;
        max-width: 100%;
        padding: 15px;
    }

    .full-size .bg .left,
    .full-size .bg .right {
        width: 100%;
        left: 0;
        right: 0;
    }

    .full-size .bg .right {
        opacity: 1;
        animation: bg 9000ms 3000ms infinite;
    }

    @keyframes bg {
        0% {
            opacity: 0;
        }

        65% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    .footer .services {
        padding: 40px 0 10px;
    }

    .footer .services .services-carousel {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }

    .footer .links {
        padding: 0;
    }

    .footer .copy {
        background: #232120;
        padding: 0;
    }

    .footer .copy .container,
    .footer .copy .container .row > div {
        padding: 0;
    }

    .footer .copy .container .row {
        margin: 0;
    }

    .footer .copy .logo {
        display: none;
    }

    .footer .copy-links {
        flex-direction: column-reverse;
    }

    .footer .copy-links .choose-country {
        display: block;
        text-align: center;
        margin-top: 10px;
        padding: 10px;
        background: #111111;
    }

    .footer .copy-links .links-list ul {
        margin: 0;
        padding-top: 20px;
    }

    .footer .copy-links .links-list ul li {
        display: block;
        text-align: center;
        padding: 0;
    }

    .footer .copy-links .links-list ul li a {
        padding-bottom: 12px;
    }

    .category-header {
        padding: 65px 0 0;
    }

    .category-header .col-category-header {
        min-height: 200px;
    }

    .category-header > .bg-left {
        width: 100%;
    }

    .category-header > .bg-right {
        display: none;
    }

    .category-header .text-wrapper {
        padding: 0;
        text-align: center;
    }

    .category-header h1,
    .category-header h2 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .category-header h1:after,
    .category-header h2:after {
        margin: 10px auto 0;
    }

    .product-list h3 {
        text-align: center;
    }

    .product-header {
        padding-top: 53px;
        margin-bottom: 20px;
    }

    .product-header > .bg-right {
        width: 100%;
    }

    .product-header .text-wrapper {
        padding: 0 15px;
    }

    .product-header h1 {
        text-align: center;
        font-size: 18px;
        font-size: 1.8rem;
        text-align: center;
        padding: 20px 0 25px 0;
        margin: 0 0 18px;
    }

    .product-header h1:before {
        left: 50%;
        transform: translateX(-50%);
    }

    .product-header h2 {
        margin: 10px 0;
        text-align: center;
        width: 100%;
        font-size: 16px;
        font-size: 1.6rem;
    }

    .product-header h3 {
        text-align: center;
    }

    .product-header .col-product .cta-actions {
        text-align: center;
    }

    .product-header .col-product .cta-actions .btn {
        width: 100%;
    }

    .product-header .col-product .description {
        padding: 0;
    }

    .product-header .carosel-wrapper {
        display: none;
    }

    .product-header .product-slider + .link-reparability {
        bottom: 50px;
    }

    .product-header .owl-dots {
        text-align: center;
        margin-top: 10px;
    }

    .product-header .owl-dots .owl-dot {
        background: #fff;
        width: 16px;
        height: 16px;
        border: 2px solid #b5b6b9;
        border-radius: 100%;
        cursor: pointer;
        display: inline-block;
        margin: 5px;
    }

    .product-header .owl-dots .owl-dot.active {
        background: #b5b6b9;
        cursor: default;
    }

    .product-menu {
        display: none;
    }

    .product-section {
        padding: 0 0;
    }

    .recipe-product-section {
        padding: 15px 0;
    }

    .product-section.section-toggle .container,
    .product-section.section-toggle .container .row > div {
        padding: 0;
    }

    .product-section.section-toggle .container .row {
        margin: 0;
    }

    .product-section.section-toggle .section-toggle-title {
        border-top: 1px solid #dadada;
        border-bottom: 1px solid #dadada;
        background: #fff;
        cursor: pointer;
        position: relative;
    }

    .product-section.section-toggle .section-toggle-title:after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-family: icokrups;
        font-size: 8px;
        color: #2a2622;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\e902";
        transition: all 300ms ease;
    }

    .product-section.section-toggle.active .section-toggle-title:after {
        content: "\e900";
        color: #f38230;
    }

    .section-toggle {
        margin-top: -1px;
    }

    .product-section.section-toggle .section-toggle-title h3 {
        text-align: left;
        margin: 0;
        padding: 0;
        color: #2a2622;
        text-transform: capitalize;
        background: #fff;
        font-family: "Open Sans", "Arial", sans-serif;
        font-weight: bold;
        font-weight: bold;
        font-size: 16px;
        font-size: 1.6rem;
        color: #2a2622;
        text-align: left;
        text-transform: none;
        line-height: 1.3;
        padding: 15px 40px 15px 15px;
        margin: 0;
        width: 100%;
        max-width: 100% !important;
        position: relative;
    }

    .product-section.section-toggle.active .title h3 {
        color: #f38230;
    }

    .product-section.section-toggle .title h3:after {
        display: none;
    }

    .product-section.section-toggle .content {
        height: 0;
        overflow: hidden;
        padding: 0 15px;
        transition: all 300ms ease;
    }

    .product-section.section-toggle.section-faq .content {
        background: #eaeeef;
    }

    .product-section.section-toggle.active .content {
        height: auto;
        padding: 15px 15px;
        transition: all 300ms ease;
    }

    .product-specification-table table td {
        padding: 10px 5px;
    }

    .product-section .downloads {
        margin-top: 0;
    }

    .section-essentials {
        margin-bottom: 10px;
    }

    .essentials-carousel .text h4 {
        font-size: 18px;
        font-size: 1.8rem;
        padding: 15px 0;
        margin: 0 0 5px 0;
    }

    .essentials-carousel .owl-dots {
        text-align: center;
    }

    .essentials-carousel .owl-dots .owl-dot {
        background: #fff;
        width: 16px;
        height: 16px;
        border: 2px solid #b5b6b9;
        border-radius: 100%;
        cursor: pointer;
        display: inline-block;
        margin: 5px;
    }

    .essentials-carousel .owl-dots .owl-dot.active {
        background: #b5b6b9;
        cursor: default;
    }

    .container.container-padding {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-hero {
        padding-top: 0;
        margin-top: 53px;
    }

    .section-hero .container.container-padding,
    .section-hero .container.container-padding .row > div {
        padding-left: 0;
        padding-right: 0;
    }

    .section-hero .container.container-padding .row {
        margin: 0;
    }

    .section-hero .title-wrapper .bg {
        min-height: 180px;
    }

    .section-hero .title-wrapper .title {
        /* margin-top: 40px; */
    }

    .section-hero .title-wrapper .bg img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 102%;
        min-height: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .modal .modal-body {
        padding: 10px 5px 5px;
    }

    .modal-header .modal-title {
        font-size: 14px;
    }

    .full-size.custom-slider-section {
        padding: 0;
        background: #232120;
    }

    .custom-slider .slide .description {
        text-align: center;
    }

    .custom-slider .slide .description .title {
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .custom-slider .slide .image img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }

    .custom-slider .slide .image {
        position: relative;
        height: 40vh;
    }

    .custom-slider .slide .description {
        position: relative;
        padding: 20px 50px;
        height: 60vh;
    }

    .custom-slider .slide .title h2 {
        font-size: 20px;
        padding-top: 10px;
    }
}

@media (max-height: 670px) and (min-width: 768px) {
    .full-size .cta-wrapper .cta-title,
    .category-slider h2 {
        font-size: 30px;
        font-size: 3rem;
        padding: 0 0 25px;
        margin-bottom: 15px;
    }

    .section-category-slider {
        padding: 80px 0 0 !important;
        overflow: hidden;
        min-height: 696px;
    }

    .full-size.section-category-slider .cta-wrapper .cta-title,
    .section-category-slider .category-slider h2 {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .section-category-slider .category-slider .actions .btn {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .category-slider .carousel-wrapper {
        height: 200px;
        padding-top: 0;
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .reparability-header {
        padding-top: 100px;
    }

    .reparability-header-container,
    .reparability-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    .menu-sticky {
        display: none;
    }

    .reparability-header {
        padding-top: 53px;
    }

    .reparability-header h1 {
        padding-top: 40px;
        margin-bottom: 25px;
    }

    .reparability-header-container,
    .reparability-section {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 1024px) {
    .displaced-left {
        padding-left: 80px;
    }
}

.reparaible-product-wrapper {
    position: relative;
}

.reparaible-product {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10;
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #eee;
}

.reparaible-product h2 {
    text-align: left;
}

.reparaible-product h2:after {
    margin-left: 0;
}

.reparaible-product h3.text-success {
    font-weight: bold;
}

.reparaible-product h3.ref {
    font-weight: bold;
    color: #948e88;
    margin-bottom: 20px;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
}

#intuition.full-size {
    align-items: initial;
}

#intuition.full-size .bg .left img,
#intuition.full-size .bg .right img {
    object-fit: contain;
    object-position: bottom;
    min-width: 90%;
}

#intuition.full-size .bg .right img {
    max-height: 50vh;
    min-height: auto;
    bottom: 5vh;
    top: auto;
    transform: translate(-50%, 0%);
}

#intuition.full-size .single img {
    object-position: left;
    position: fixed;
}

@media (max-width: 767px) {
    #intuition.full-size .bg .left img {
        opacity: 0 !important;
    }

    #intuition.full-size .bg .right {
        animation: none !important;
    }

    #intuition.full-size .bg .right img {
        bottom: 80px;
    }
}

#intuition.full-size h1 {
    color: #b72200;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.2;
    background: url(../img/front/intuition/neon.png) no-repeat center bottom;
    background-size: 120px 20px;
    padding-bottom: 20px;
}

#intuition.full-size p {
    text-align: center;
    color: #f59c06;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-weight: bold;
    font-size: 20px;
}

#intuition.full-size .cta-actions {
    margin-top: 30px;
}

@media (min-width: 1440px) {
    #intuition.full-size .bg:after,
    #intuition.full-size .single.has-overlay:after {
        opacity: 0;
    }

    #intuition.full-size .cta-actions {
        margin-top: 10px;
    }

    #intuition.full-size .cta-wrapper {
        margin-left: auto;
        max-width: 50%;
        margin-right: -30px;
    }
}

@media (max-width: 578px) {
    #intuition.full-size .single img {
        object-position: left;
        animation-duration: 20s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        animation-name: translate;
    }
}

@keyframes translate {
    0% {
        object-position: left;
    }

    50% {
        object-position: right;
    }

    100% {
        object-position: left;
    }
}

@media (min-width: 768px) {
    #intuition.full-size h1 {
        font-size: 4rem;
    }

    #intuition.full-size p {
        font-size: 2.3rem;
    }

    #intuition.full-size .cta-actions {
        margin-top: 20px;
    }
}

@media (min-width: 992px) {
    #intuition.full-size .single img {
        object-position: right;
    }

    #intuition.full-size h1 {
        font-size: 5rem;
        background-size: 200px 40px;
        padding-bottom: 50px;
    }

    #intuition.full-size p {
        font-size: 2rem;
        margin: 10px auto 0;
    }

    #intuition.full-size .cta-actions {
        margin-top: 20px;
    }
}

.full-size.animated {
    overflow: hidden;
}

.animated .cta-wrapper {
    opacity: 0;
    transition: all 600ms ease;
    transform: translateY(25%);
}

#intro.full-size.animated .cta-wrapper {
    transition: all 1200ms ease;
}

.animated.animate .cta-wrapper {
    opacity: 1;
    transform: translateY(0%);
}

@media (min-width: 768px) {
    .full-size.animated .bg .left,
    .full-size.animated .bg .right {
        opacity: 0;
        transition: all 900ms ease-in-out;
    }

    .full-size.animated.animate .bg .left,
    .full-size.animated.animate .bg .right {
        opacity: 1;
    }

    .full-size.animated .bg .left {
        transform: translateY(-100%) scale(0.5);
    }

    .full-size.animated .bg .right {
        transform: translateY(100%) scale(0.5);
    }

    .full-size.animated.animate .bg .left {
        transform: translateY(0%) scale(1);
    }

    .full-size.animated.animate .bg .right {
        transform: translateY(0%) scale(1);
    }
}

ul.sticky-links {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 155px;
    right: 15px;
    list-style: none;
    z-index: 100;
}

ul.sticky-links li {
    margin-top: 10px;
    text-align: right;
}

ul.sticky-links li:first-child() {
    margin-top: 0;
}

ul.sticky-links li a {
    display: inline-block;
    padding: 3px 7px;
    position: relative;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); */
    transition: all 300ms ease;
    border-radius: 50px;
    /* border: 2px solid #fff; */
    background: #f38230;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    width: 135px;
}

ul.sticky-links li a:hover {
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.9); */
}

@media (max-width: 992px) {
    ul.sticky-links {
        top: 125px;
    }
}

.col-newsletter .bucoda-powered-by {
    display: none !important;
}

.col-newsletter .bucoda-c-bravo.Campaign__bravoLayer {
    background: none !important;
}

.col-newsletter .bucoda-he-content.bucoda-HtmlElement--content .html h2 {
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    font-size: 20px !important;
    font-size: 2rem !important;
    color: #fff;
    text-transform: none;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3 !important;
    position: relative;
    padding: 0 0 30px 0 !important;
    margin: 0 0 20px !important;
    letter-spacing: 1.5px !important;
}

.col-newsletter .bucoda-he-content.bucoda-HtmlElement--content .html h2 + p {
    margin-bottom: 30px !important;
}

.col-newsletter .bucoda-error-header {
    margin-bottom: 30px !important;
}

.col-newsletter .FieldsElement__LabelElement-uzeler-1.jOIiqJ {
    transform: translateY(15px);
    cursor: text;
    height: 42px;
    clip: auto;
    font-family: "Open Sans", "Arial", sans-serif;
    font-weight: bold;
    color: #fff;
    height: auto;
    display: block;
    text-align: left;
    width: 100%;
    padding-left: 10px;
    transition: all 300ms ease;
    pointer-events: none;
}

.col-newsletter .focus .FieldsElement__LabelElement-uzeler-1.jOIiqJ,
.col-newsletter .filled .FieldsElement__LabelElement-uzeler-1.jOIiqJ {
    transform: translateY(-20px);
}

.col-newsletter .FieldsElement__LabelElement-uzeler-1.jOIiqJ:before {
    display: inline-block;
    content: "Email";
}

.col-newsletter .FieldsElement__LabelElement-uzeler-1.jOIiqJ:after {
    display: inline-block;
    content: "*";
    color: #f38230;
}

.col-newsletter #bucoda-field-email {
    background: none !important;
    border: none !important;
    border-bottom: 2px solid #fff !important;
    color: #fff !important;
    font-weight: bold !important;
}

.col-newsletter #bucoda-field-email.bucoda-error {
    border-color: #f38230;
}

.col-newsletter #bucoda-field-email:hover,
.col-newsletter #bucoda-field-email:focus {
    outline: none;
    border-color: #f38230;
}

.col-newsletter .bucoda-he-content .html > div {
    font-family: "Libre Baskerville", "Arial", sans-serif !important;
    font-size: 12px;
    font-size: 1.2rem;
    color: #948e88;
    display: block;
    text-align: center;
    margin-top: 15px !important;
}

.col-newsletter .bucoda-field-privacy-text .html label p {
    text-align: left !important;
}
.col-newsletter .bucoda-he-content .html p {
    color: #fff;
}

.col-newsletter .bucoda-he-content .html p a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.col-newsletter .bucoda-ImageElement--content {
    display: none !important;
}

.col-newsletter input[name="FieldsElement--privacyText-checkbox"] {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 2px;
    height: 2px;
    opacity: 0;
    pointer-events: none;
}

.col-newsletter input[name="FieldsElement--privacyText-checkbox"] + div {
    padding-left: 40px !important;
    position: relative !important;
    max-width: 100% !important;
    cursor: pointer;
}

.col-newsletter input[name="FieldsElement--privacyText-checkbox"] + div p,
.col-newsletter input[name="FieldsElement--privacyText-checkbox"] + div p span {
    color: #fff !important;
    line-height: 1.3 !important;
    font-size: 12px !important;
    text-align: left !important;
}

.col-newsletter input[name="FieldsElement--privacyText-checkbox"] + div:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid #d8d8d8;
    background: rgba(255, 255, 255, 0);
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0);
    transition: all 300ms ease;
    position: absolute;
    top: 2px;
    left: 0;
    border-radius: 5px;
}

.col-newsletter input[name="FieldsElement--privacyText-checkbox"] + div:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 6px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0);
    border-radius: 3px;
    transition: all 300ms ease;
}

.col-newsletter input[name="FieldsElement--privacyText-checkbox"]:checked + div:before {
    border-color: #f38230;
}

.col-newsletter input[name="FieldsElement--privacyText-checkbox"]:checked + div:after {
    background: #f38230;
}

.col-newsletter .bucoda-row.bucoda-row-2.Row * {
    background: none !important;
}

.col-newsletter .bucoda-fe-content button {
    margin-top: 20px !important;
}

/* .col-newsletter .bucoda-ImageElement--content,
.col-newsletter #bucoda-TextElement--wrapper--oSltWoVnLrTQ3Qt1CdEW {
    display: none !important;
} */

/* .col-newsletter .bucoda-element.bucoda-ele-1.Element.isTextElement:after {
    display: block;
    content: "Vă mulțumim că v-ați înscris!";
    font-size: 18px;
    color: #fff;
    font-family:  "Open Sans", "Arial", sans-serif;
font-weight: bold;
} */

@media (max-width: 576px) {
    .category-slider .flex-direction-nav a {
        top: auto;
        bottom: 10px;
    }
    .carousel-wrapper .flexslider .slides {
        font-size: 0;
    }

    .carousel-wrapper .flexslider .slides > li .thumbnail h4 {
        padding: 10px 3px 5px;
        font-size: 12px;
        text-align: center;
    }

    .carousel-wrapper .flexslider .slides > li .thumbnail .image {
        padding-top: 100%;
    }
    .category-slider .actions .btn {
        padding: 10px 10px;
    }
}

.bucoda-field-submit {
    display: block !important;
    width: 100% !important;
    max-width: 300px !important;
}

/* test dev */
