
/* -------------------------------------------------------------------------- */
/* VARS
/* -------------------------------------------------------------------------- */

:root {
    --color_blue_light: #F5F8FC;
    --color_navy_mid: #113874;
    --color_navy_dark: #103874;
}

/* -------------------------------------------------------------------------- */
/* COMMON - CLASSES
/* -------------------------------------------------------------------------- */

/* NO CLASSES */
.noDisplay {
    display: none !important;
}
.noWrap {
    white-space: nowrap !important;
}
.noEvent {
    pointer-events: none !important;
}
.noSelect {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* ANIMATION CLASSES */
.animate,
.animate::before,
.animate::after,
.animate *,
.animate *::before,
.animate *::after {
    -webkit-transition: all 0.6s ease !important;
    -moz-transition: all 0.6s ease !important;
    -o-transition: all 0.6s ease !important;
    transition: all 0.6s ease !important;
}
.noAnimate,
.noAnimate::before,
.noAnimate::after,
.noAnimate *,
.noAnimate *::before,
.noAnimate *::after {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-transition-property: none !important;
    -moz-transition-property: none !important;
    -o-transition-property: none !important;
    transition-property: none !important;
    -webkit-transition-duration: 0s !important;
    -moz-transition-duration: 0s !important;
    -o-transition-duration: 0s !important;
    transition-duration: 0s !important;
}

/* DISPLAY CLASSES */
.dContainer > *:first-child {
    margin-top: 0px !important;
    padding-top: 0px !important;
}
.dContainer > *:last-child {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}
.dBlock { display: block; }
.dMobile { display: block; }
.dDesktop { display: none; }

@media (min-width: 768px) {
    .dMobile { display: none; }
    .dDesktop { display: block; }
} 

/* --------------------------------------------------------------------------- */
/* BODY
/* --------------------------------------------------------------------------- */

body,
body * {
    font-family: "Inter Tight", serif !important;
}

body.type-index,
body.type-category,
body.type-product,
body.type-manufacturers-listing,
body.type-manufacturer-detail,
body.type-posts-listing,
body.type-post,
body.type-page {
    opacity: 0;
    background-color: #FFFFFF !important;
}

body.eg_loaded {
    opacity: 1 !important;
}

/* --------------------------------------------------------------------------- */
/* HEADER
/* --------------------------------------------------------------------------- */

@media only screen and (min-width: 768px) {
    .top-navigation-bar {
        margin: 0 auto;
    }
    .top-navigation-bar,
    .top-navigation-bar .container,
    .container.navigation-wrapper {
        width: 100%;
        max-width: 1787px;
    }
    .top-navigation-bar .container {
        padding: 0 0 0 20px;
    }
    .top-navigation-bar .container * {
        background-color: transparent;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    #header .site-name img {
        max-width: 25vw;
    }
}

@media only screen and (max-width: 767px) {
    #header .site-name img {
        max-width: 220px;
    }
}

@media only screen and (max-width: 479px) {
    #header .site-name img {
        max-width: 45vw;
    }
}

@media only screen and (max-width: 350px) {
    #header .site-name img {
        max-width: 44vw;
    }
}
@media only screen and (max-width: 330px) {
    #header .site-name img {
        max-width: 38vw;
    }
}

/* --------------------------------------------------------------------------- */
/* HEADER - MENU
/* --------------------------------------------------------------------------- */

@media only screen and (min-width: 768px) {
    #navigation {
        height: 52px;
        margin: 0 -20px 20px -20px;
    }
    #navigation.fitted .navigation-in > ul {
        justify-content: center !important;
    }
    .navigation-in {
        padding: 10px;
        border-radius: 10px;
        background-color: var(--color_blue_light);
    }
    .navigation-in * {
        color: #000000;
    }
    .navigation-in ul.menu-level-2 {
        transform: translateY(-10px);
        background-color: var(--color_blue_light);
        border-bottom-color: var(--color_navy_dark);
    }
    .navigation-in > ul > li {
        border: none;
    }
    .navigation-in > ul > li > a * {
        font-size: 14px;
        font-weight: 500 !important;
    }
    .navigation-in > ul > li.exp > a,
    .navigation-in > ul > li > a:focus-visible,
    .navigation-in > ul > li > a:hover {
        background-color: var(--color_blue_light);
    }
    .navigation-in > ul > li > a:after {
        content: "";
        display: inline-block;
        margin-left: 6px;
        width: 10px;
        height: 10px;
        border-right: 1px solid #FF9300;
        border-bottom: 1px solid #FF9300;
        transform: rotate(45deg) translate(0px, -6px);
    }
    .navigation-in > ul > li > ul > li > a img {
        mix-blend-mode: multiply;
    }
    
    .has-more-items .more-items-trigger {
        background-color: var(--color_blue_light);
    }
    .has-more-items .more-items-trigger:after {
        background-image: none !important;
    }

    .top-navigation-bar {
        border: none;
        border-bottom: 1px solid #F6F9FC;
        background: linear-gradient(
            to bottom,
            #F6F9FC 50%,
            #FFFFFF 100%
        );
    }
    
    .top-navigation-contacts {
        opacity: 0;
        flex-basis: calc(40% - 70px) !important;
    }
    .top-navigation-contacts.hasEdit {
        opacity: 1;
    }
    .top-navigation-contacts * {
        color: #000000 !important;
        font-size: 14px;
    }
    .top-navigation-contacts a.project-phone:before {
        display: none;
    }

    .top-navigation-menu {
        flex-basis: calc(60% - 70px) !important;
        padding: 0 40px 0 0 !important;
    }

    .top-navigation-bar-menu {
        text-align: right !important;
    }
    .top-navigation-bar-menu,
    .top-navigation-bar-menu-helper {
        text-transform: none;
    }
    .top-navigation-bar-menu li:before {
        display: none;
    }
    .top-navigation-bar-menu li a,
    .top-navigation-bar-menu-helper li a {
        padding: 4px 10px;
        color: #000000;
        font-size: 14px;
    }

    .top-navigation-bar .container > .top-navigation-tools {
        flex-basis: 140px !important;
    }
    .top-navigation-bar .top-nav-button-login,
    .top-navigation-bar .top-nav-button-account {
        display: block;
        width: 140px;
        padding: 8px 20px 10px 20px;
        color: #FFFFFF;
        background-color: var(--color_navy_dark);
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
    }
    .top-navigation-bar .top-nav-button-login:hover,
    .top-navigation-bar .top-nav-button-account:hover {
        color: #FFFFFF;
        background-color: var(--color_navy_dark);
        text-decoration: underline;
    }

    /* login panel */
    .admin-logged .popup-widget.login-widget {
        top: 66px;
    }

    /* basket panel */
    .admin-logged .popup-widget.cart-widget {
        top: 138px;
    }
}

@media only screen and (min-width: 992px) {
    .navigation-in > ul > li > a * {
        font-size: 17px;
        font-weight: 500 !important;
    }

    /* login panel */
    .popup-widget.login-widget {
        top: 46px;
        margin: 0;
        left: unset;
        right: 20px;
    }

    /* basket panel */
    .popup-widget.cart-widget {
        top: 130px;
        margin: 0;
        left: unset;
        right: 10px;
    }
    .admin-logged .popup-widget.cart-widget {
        top: 150px;
    }
}

@media only screen and (min-width: 1787px) {

    /* login panel */
    .popup-widget.login-widget {
        left: 50%;
        right: unset;
        margin-left: 460px;
    }

    /* basket panel */
    .popup-widget.cart-widget {
        left: 50%;
        right: unset;
        margin-left: 460px;
    }
}

/* --------------------------------------------------------------------------- */
/* HEADER - SEARCH
/* --------------------------------------------------------------------------- */

#formSearchForm input[type='search'] {
    border-color: var(--color_blue_light);
    border-radius: 10px;
    background-color: var(--color_blue_light);
    color: #000000;
}
#formSearchForm input[type='search']::placeholder {
    color: #000000;
    font-weight: 500;
}
#formSearchForm button[type='submit'] {
    font-weight: 500;
    border-radius: 10px;
    border-color: var(--color_blue_light);
    border-left: 1px solid var(--color_blue_light);
    background-color: var(--color_blue_light);
    color: #000000;
    font-size: 0px !important;
    line-height: 0px !important;
}
#formSearchForm button[type='submit']::after {
    content: '\e920';
    line-height: 10px;
    font-size: 20px;
    font-weight: 600;
    font-family: shoptet;
}

@media (min-width: 992px) {
    #formSearchForm input[type='search'] {
        height: 46px;
        padding: 16px;
    }
    #formSearchForm button[type='submit'] {
        height: 46px;
        padding: 16px 14px 16px 16px;
    }
}

/* -------------------------------------------------------------------------- */
/* HEADER - BASKET
/* -------------------------------------------------------------------------- */

.navigation-buttons a.btn.cart-count {
    display: flex;
    align-content: flex-end;
    height: 32px;
    margin: 0;
    padding: 0 0 0 62px;
}
.navigation-buttons a.btn.cart-count:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    background-size: contain;
    background-image: url(/user/documents/assets/img/menu_icon_basket.svg?v1);
    background-repeat: no-repeat;
}
.navigation-buttons a.btn.cart-count .cart-price {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
}
.navigation-buttons a.btn.cart-count.full .cart-price {
    font-size: 18px;
    font-weight: 500;
}
.navigation-buttons a.btn.cart-count i[data-testid="headerCartCount"] {
    border: 1px solid #000000;
    color: #FFFFFF;
    left: 32px;
    top: -4px;
}

@media (max-width: 767px) {
    .navigation-buttons a.btn.cart-count {
        height: 32px;
        padding: 0 0 0 54px;
    }
    .navigation-buttons a.btn.cart-count:before {
        width: 32px;
        height: 32px;
        background-image: url(/user/documents/assets/img/menu_icon_basket_mobile.svg?v2);
    }
    .navigation-buttons a.btn.cart-count i[data-testid="headerCartCount"] {
        left: 22px;
        top: -4px;
    }
    .responsive-tools > a[data-target=search]:before,
    .responsive-tools > a[data-target=search]:hover:before {
        color: var(--color_navy_dark);
        font-size: 22px;
    }
    .responsive-tools > a[data-target=navigation]:before,
    .responsive-tools > a[data-target=navigation]:hover:before {
        background-color: var(--color_navy_dark);
    }
}

@media (min-width: 768px) {
    #dkLabFavHeaderWrapper {
        margin: 0 10px 0 0;
        padding: 10px 0 0 0;
    }
}
@media (max-width: 767px) {
    #dkLabFavHeaderWrapper {
        right: 165px !important;
    }
}
@media (max-width: 479px) {
    .navigation-buttons a.btn.cart-count {
        padding: 0 0 0 40px;
    }
    .responsive-tools > a[data-target=search] {
        margin-right: 75px;
    }
    #dkLabFavHeaderWrapper {
        right: 135px !important;
    }
}

/* --------------------------------------------------------------------------- */
/* FOOTER
/* --------------------------------------------------------------------------- */

.in-index #footer {
    margin: 0;
}
#footer {
    margin: 46px 0 0 0;
    padding: 0;
}
#footer,
#footer > .container {
    background-color: var(--color_blue_light);
}
#footer * {
    color: #000000 !important;
}
#footer .footer-bottom {
    background-color: var(--color_blue_light);
}
#footer .footer-bottom * {
    color: rgba(0,0,0,0.75) !important;
}

/* --------------------------------------------------------------------------- */
/* FOOTER - PANEL
/* --------------------------------------------------------------------------- */

/* footer layout */
#footer .custom-footer {
    padding-left: 0px;
    padding-top: 60px;
    border: none;
}
#footer .footer-rows .site-name {
    display: none;
}
#footer .custom-footer > div {
    width: 25%;
}

/* footer panel */
.footerPanel,
.footerPanel * {
    color: #000000 !important;
    font-size: 16px;
}
.footerPanel h4 {
    margin: 0px 0px 16px 0px !important;
    text-transform: none !important;
}
.footerPanel h4 span {
    font-size: 20px !important;
    font-weight: 600;
    line-height: 140%;
}
.footerPanel p,
.footerPanel ul {
    margin: 0px 0px 16px 0px;
    padding: 0px;
}
.footerPanel ul li {
    margin: 0px;
    padding: 0px;
}
.footerPanel small {
    font-size: 85%;
}
.footerPanel a {
    text-decoration: underline;
}
.footerPanel a:hover {
    text-decoration: underline;
}
.footerPanel.contact1 ul li a {
    text-decoration: none;
}

@media (max-width: 991px) {
    #footer .custom-footer > div {
        width: 50% !important;
        text-align: center;
    }
}
@media (max-width: 768px) {
    #footer .custom-footer > div {
        width: 100% !important;
        text-align: center;
    }
    #footer .custom-footer > div > .banner {
        margin: 0px;
        min-height: unset;
    }
    #footer .custom-footer > div > .banner .banner-wrapper {
        margin: 0px 0px 0px 0px;
    }
    .footerPanel.logo {
        margin: 0px 0px 36px 0px;
    }
}

/* --------------------------------------------------------------------------- */
/* FOOTER - SOCIAL BUTTONS
/* --------------------------------------------------------------------------- */

#footer .socialButtons {
    display: flex;
    margin: 26px 0 0 0;
}
#footer .socialButtons li {
    display: block;
    margin: 0;
    padding: 0;
}
#footer .socialButtons li a {
    display: block;
    width: 47px;
    height: 47px;
    margin: 0 10px 0 0;
    padding: 0;
    font-size: 0;
}

@media only screen and (max-width: 991px) {
    #footer .socialButtons {
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------- */
/* FOOTER - ZESTBRAND
/* --------------------------------------------------------------------------- */

#footerZestbrand {
    margin: 26px 0px 26px 0px;
    width: 100% !important;
    border: none !important;
    text-align: center;
    line-height: 160%;
}
#footerZestbrand a {
    white-space: nowrap;
    font-weight: 600;
    text-decoration: underline;
}

/* --------------------------------------------------------------------------- */
/* FOOTER - FORM PANEL
/* --------------------------------------------------------------------------- */
/*
šablony pro obsah patičky:
templates/footer-panels/footer-panels.css
templates/footer-panels/footer-panels.html
*/

/* --------------------------------------------------------------------------- */
/* FOOTER - BEFORE FOOTER PANEL
/* --------------------------------------------------------------------------- */

#beforeFooterPanel {
    padding: 0 10px;
}

/* --------------------------------------------------------------------------- */
/* HOMEPAGE - LAYOUT
/* --------------------------------------------------------------------------- */

@media (min-width: 1920px) {
    .in-index .content-wrapper.container {
        width: 1787px;
    }
}

/* --------------------------------------------------------------------------- */
/* HOMEPAGE - CAROUSEL
/* --------------------------------------------------------------------------- */

.content-wrapper.before-carousel {
    position: relative;
    z-index: 5;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    border-top-width: 0;
    border-bottom-width: 0;
    background-color: #FFFFFF;
}
.content-wrapper.before-carousel .content-wrapper-in .container {
    position: relative;
    width: 100%;
    max-width: 1787px;
}
#carousel .item img {
    width: 100%;
}
#carousel .carousel-control {
    max-width: 100px;
    max-height: 100%!important;
    height: 100%!important;
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------- */
/* HOMEPAGE - WELCOME
/* --------------------------------------------------------------------------- */

.welcome-wrapper {
    display: none;
}

/* -------------------------------------------------------------------------- */
/* HOMEPAGE - FOOTER BANNERS
/* -------------------------------------------------------------------------- */

/* kontajner bannerů */
.content .footer-banners {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0px !important;
    padding: 0px !important;
}

/* kontajner banneru */
.content .footer-banner,
.content .footer-banner > span {
    display: block;
    width: 100%;
    margin: 0px !important;
    padding: 0px !important;
    box-sizing: border-box;
}
.content .footer-banner a:hover img  {
    -webkit-transform: scale(1.00);
    -ms-transform: scale(1.00);
    -o-transform: scale(1.00);
    transform: scale(1.00);
}

/* -------------------------------------------------------------------------- */
/* HOMEPAGE - HP PANEL
/* -------------------------------------------------------------------------- */

.hpPanel {
    margin: 35px 0px;
}
.welcome > h1,
.hpPanel > h1,
.hpPanel > h2,
.hpPanel > h3 {
    width: 100%;
    color: #000000;
    font-size: 43px;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.86px;
}
.hpPanel > h1 a,
.hpPanel > h2 a,
.hpPanel > h3 a {
    text-decoration: underline;
}

@media only screen and (max-width: 1199px) {
    .welcome > h1,
    .hpPanel > h1,
    .hpPanel > h2,
    .hpPanel > h3,
    .hpPanel .h1,
    .hpPanel .h2,
    .hpPanel .h3 {
        font-size: 40px;
    }
}
@media only screen and (max-width: 991px) {
    .welcome > h1,
    .hpPanel > h1,
    .hpPanel > h2,
    .hpPanel > h3,
    .hpPanel .h1,
    .hpPanel .h2,
    .hpPanel .h3 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .welcome > h1,
    .hpPanel > h1,
    .hpPanel > h2,
    .hpPanel > h3,
    .hpPanel .h1,
    .hpPanel .h2,
    .hpPanel .h3 {
        font-size: 26px;
    }
}
@media only screen and (max-width: 480px) {
    .welcome > h1,
    .hpPanel > h1,
    .hpPanel > h2,
    .hpPanel > h3,
    .hpPanel .h1,
    .hpPanel .h2,
    .hpPanel .h3 {
        font-size: 22px;
    }
}

.hpPanel .moreWrapper {
    margin: 0;
    padding: 40px 0 0 0;
    text-align: center;
}
.hpPanel .moreButton {
    position: relative;
    display: inline-block;
    padding: 20px 50px 20px 30px;
    border: 1px solid var(--color_navy_dark);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    text-decoration: none;
    background-color: var(--color_navy_dark);
    color: #FFFFFF;
}
.hpPanel .moreButton:hover {
    border: 1px solid var(--color_navy_dark);
    background-color: var(--color_navy_dark);
    text-decoration: underline;
    color: #FFFFFF;
}
.hpPanel .moreButton:after {
    content: '';
    position: absolute;
    top: 15px;
    right: 20px;
    display: block;
    width: 14px;
    height: 24px;
    margin: 0;
    padding: 0;
    font-size: 0;
    background-size: 13px auto;
    background-image: url('/user/documents/assets/img/category_icon_arrow.svg');
    background-repeat: no-repeat;
    background-position: right center;
}

.hpPanel .contactList {
    margin: 30px 0 0 0;
    padding: 0;
    list-style-type: none;
}
.hpPanel .contactList li {
    display: flex;
    align-items: center;
    margin: 8px 0 8px 0;
    padding: 0 0 0 65px;
    min-height: 45px;
    background-repeat: no-repeat;
    background-position: left center;
}
.hpPanel .contactList li.email {
    background-image: url('/user/documents/assets/img/category_icon_email.svg');    
}
.hpPanel .contactList li.phone {
    background-image: url('/user/documents/assets/img/category_icon_phone.svg');    
}
.hpPanel .contactList ul li a {
    font-size: 19px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
    text-decoration: none;
}
.hpPanel .contactList ul li a:hover {
    text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/* HOMEPAGE - BENEFIT PANEL
/* -------------------------------------------------------------------------- */

#benefitPanel,
.benefitPanel {
    display: block;
    margin-bottom: 0;
}
.benefitBannersCaption {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 0 20px 0;
}
.benefitBannersCaption h2 {
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 35px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.7px;
}
.benefitBannersCaption p {
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.4px;
}
.benefitBanners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 35px 0 35px 0;
    border-top: 1px solid #D8D8D8;
}
.benefitBanner {
    margin: 0;
    width: 16.6666%;
}
.benefitBanner .benefitContent {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 62px;
    padding: 0 20px 0 82px;
    align-items: center;
}
.benefitBanner:first-child .benefitContent {
    margin-left: 0;
}
.benefitBanner:last-child .benefitContent {
    margin-right: 0;
}
.benefitBanner .icon {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    width: 62px;
    height: 62px;
}
.benefitBanner .icon img {
    width: 100%;
    height: auto;
}
.benefitBanner .label {
    padding: 0;
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 0.02px;
}

@media only screen and (max-width: 1439px) {
    .benefitBanner {
        width: 33.3333%;
        margin: 0 0 25px 0;
    }
}

@media only screen and (max-width: 991px) {
    .benefitBanners {
        border-top: none;
    }
    .benefitBanner {
        width: 50%;
    }
    .benefitBannersCaption {
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 0;
    }
    .benefitBannersCaption h2 {
        margin: 0 0 15px 0;
    }
    .benefitBannersCaption p {
        text-transform: uppercase;
    }
}

@media only screen and (max-width: 639px) {
    .benefitBanner .label {
        font-size: 16px;
    }
}

@media only screen and (max-width: 479px) {
    .benefitBannersCaption h2 {
        font-size: 26px;
    }
    .benefitBannersCaption p {
        font-size: 16px;
    }
    .benefitBanner .label {
        font-size: 15px;
    }
}

@media only screen and (max-width: 425px) {
    .benefitBanner .benefitContent {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 0 15px;
    }
    .benefitBanner .icon {
        position: relative;
        top: unset;
        left: unset;
        padding: 0;
        width: 62px;
        height: 62px;
    }
    .benefitBanner .label {
        padding: 20px 0 0 0;
        text-align: center;
        font-size: 14px;
    }
}

/* -------------------------------------------------------------------------- */
/* HOMEPAGE - CATEGORY PANEL
/* -------------------------------------------------------------------------- */

#categoryPanel {
    display: block;
    margin-top: 10px;
}
.categoryPanel > h2 {
    margin-top: 0;
}
.categoryBanners {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}
.categoryBanner {
    width: calc(33.3333% - 13px);
    margin: 0 0 20px 0;
    padding: 0;
    border-radius: 15px;
    background-color: var(--color_blue_light);
}
.categoryBannerInner {
    display: flex;
    padding: 20px 20px 20px 30px;
}
.categoryBannerInner .desc,
.categoryBannerInner .image {
    width: 50%;
}
.categoryBannerInner .desc {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 20px 0 0;
}
.categoryBannerInner .desc .icon {
    display: none;
}
.categoryBannerInner .desc .icon img {
}
.categoryBannerInner .desc h3 {
    margin: 0;
    padding: 25px 0 0 0;
    font-size: 29px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.29px;
    color: #000000;
}

.categoryBannerInner .categoriesWrapper {
    margin: 0;
    padding: 25px 0 0 0;
}
.categoryBannerInner .categoriesList {
    margin: 0;
    padding: 0 0 30px 0;
    list-style-type: none;
}
.categoryBannerInner .categoriesList li {
    margin: 0;
    padding: 6px 0 0 20px;
    background-image: url('/user/documents/assets/img/category_icon_arrow.svg');
    background-repeat: no-repeat;
    background-position: left 11px;
}
.categoryBannerInner .categoriesList li a {
    font-size: 17px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0px;
    text-decoration: none;
    color: #000000;
}
.categoryBannerInner .categoriesList li a:hover {
    text-decoration: underline;
}
.categoryBannerInner .categoriesLink {
    font-size: 17px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.17px;
    text-decoration: underline;
    color: #000000;
}

.categoryBanner.helpBanner {
    background-color: #113874;
}
.categoryBanner.helpBanner * {
    color: #FFFFFF !important;
}
.categoryBanner.helpBanner .desc {
    width: 100%;
}

@media only screen and (max-width: 1919px) {
    .categoryBanner {
        width: calc(50% - 10px);
    }
}
@media only screen and (max-width: 1199px) {
    .categoryBannerInner .desc {
        width: 100%;
        padding: 0;
    }
    .categoryBannerInner .caption {
        display: flex;
        align-items: center;
    }
    .categoryBannerInner .desc .icon {
        display: block;
        margin: 0 25px 0 0;
        width: 80px;
        flex-shrink: 0;
    }
    .categoryBannerInner .desc .icon img {
        width: 100% !important;
     }   
    .categoryBannerInner .desc h3 {
        display: block;
        padding: 0;
    }
    .categoryBannerInner .image {
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .categoryBannerInner .desc h3 {
        font-size: 24px;
    }
    .categoryBannerInner .desc .icon {
        width: 60px !important;
        margin: 0 20px 0 0;
    }
}
@media only screen and (max-width: 767px) {
    .categoryBannerInner {
        padding: 20px 10px 20px 20px;
    }
    .categoryBannerInner .desc h3 {
        font-size: 20px;
    }
    .categoryBannerInner .categoriesLink {
        font-size: 16px;
    }
}
@media only screen and (max-width: 639px) {
    .categoryBannerInner {
        padding: 20px 15px 20px 15px;
    }
    .categoryBannerInner .desc h3 {
        font-size: 18px;
    }
    .categoryBannerInner .contactList li {
        min-height: unset;
        padding: 36px 0 10px 0;
        background-size: 26px;
        background-position: top center;
        display: flex;
        justify-content: center;
    }
    .categoryBannerInner .desc .icon {
        width: 50px !important;
        margin: 0 15px 0 0;
    }
    .categoryBannerInner .categoriesLink {
        font-size: 15px;
    }

    .categoryBanner.helpBanner .caption {
        text-align: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 539px) {
    .categoryBannerInner .desc h3 {
        font-size: 16px;
    }
    .categoryBannerInner .categoriesList li a {
        font-size: 14px;
    }
    .categoryBannerInner .categoriesLink {
        font-size: 14px;
    }
}
@media only screen and (max-width: 400px) {
    .categoryBanner {
        width: 100%;
    }
    .categoryBannerInner .desc .icon {
        width: 65px !important;
        margin: 0 20px 0 0;
    }
    .categoryBannerInner .desc h3 {
        font-size: 18px;
    }
    .categoryBannerInner .desc {
        padding: 0;
    }
    .categoryBannerInner .categoriesWrapper {
        padding: 10px 0 0 0;
    }
    /*.categoryBannerInner .categoriesList {
        display: flex;
        flex-wrap: wrap;
        padding: 0 0 15px 0;
    }
    .categoryBannerInner .categoriesList li {
        width: 50%;
        padding: 6px 10px 10px 20px;
    }*/
    .categoryBannerInner .categoriesList li a {
        font-size: 16px;
    }
}

/* -------------------------------------------------------------------------- */
/* HOMEPAGE - ABOUT PANEL
/* -------------------------------------------------------------------------- */

#aboutPanel,
.aboutPanel {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.aboutPanelInner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    background-color: var(--color_blue_light);
    border-radius: 15px;
    overflow: hidden;
}
.aboutPanelText {
    display: flex;
    align-items: center;
    width: 32%;
}
.aboutPanelTextInner {
    margin: 0;
    padding: 35px 0 35px 10%;
}
.aboutPanelImage {
    width: 68%;
}
.aboutPanelImage img {
    margin: 0 0 0 auto;
}
.aboutPanelTextInner h2 {
    margin: 0 0 25px 0;
    padding: 0;
    font-size: 43px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.86px;
}
.aboutPanelTextInner h3 {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.48px;
}
.aboutPanelTextInner p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 190%;
    letter-spacing: -0.34px;
}
.aboutPanelTextInner .moreWrapper {
    text-align: left;
    padding: 25px 0 0 0;
}

@media only screen and (max-width: 1439px) {
    .aboutPanelTextInner h3 {
        margin: 0 0 15px 0;
        font-size: 20px;
        line-height: 150%;
    }
    .aboutPanelTextInner p {
        font-size: 15px;
        line-height: 150%;
    }
}

@media only screen and (max-width: 1199px) {
    .aboutPanelImage {
        background: linear-gradient(
            to right,
            var(--color_blue_light) 0,
            var(--color_blue_light) 3px,
            var(--color_navy_dark) 3px,
            var(--color_navy_dark) 100%
        );
    }
}

@media only screen and (max-width: 991px) {
    .aboutPanelInner {
        display: flex;
        flex-direction: column;
    }
    .aboutPanelImage {
        width: 100%;
    }
    .aboutPanelText {
        width: 100%;
    }
    .aboutPanelTextInner {
        margin: 0;
        padding: 35px;
    }
    .aboutPanelImage img.dDesktop {
        display: none;
    }
    .aboutPanelImage img.dMobile {
        display: block;
    }
}

@media only screen and (max-width: 479px) {
    .aboutPanelTextInner h3 {
        font-size: 18px;
    }
    .aboutPanelTextInner p {
        font-size: 15px;
    }
}

/* --------------------------------------------------------------------------- */
/* HOMEPAGE - PARTNER PANEL
/* --------------------------------------------------------------------------- */

#partnerPanel,
.partnerPanel {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.partnerPanel h2 {
    margin: 0 0 25px 0;
    padding: 0;
}
.partnerBanners {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    align-items: center;
}
.partnerBanners .partnerBanner {
    width: 12.5%;
    margin: 0px 0px 20px 0px;
    padding: 10px;
    text-align: center;
}
.partnerBanners .partnerBanner img {
    width: auto;
    max-width: 100%;
}

@media only screen and (min-width: 992px) {
    .partnerPanel h2 {
        font-size: 32px;
    }
}
@media only screen and (max-width: 1199px) {
    .partnerBanners .partnerBanner {
        width: 25%;
        margin: 0px 0px 0px 0px;
        padding: 8px;
    }
}
@media only screen and (max-width: 767px) {
    .partnerPanel {
        margin: 0px -10px;
    }
    .partnerBanners .partnerBanner {
        width: 50%;
    }
    .partnerBanners .partnerBanner img {
        max-width: 80%;
    }
}
@media only screen and (max-width: 479px) {
    .partnerBanners .partnerBanner img {
        max-width: 60%;
    }
}

/* --------------------------------------------------------------------------- */
/* HOMEPAGE - FAQ PANEL
/* --------------------------------------------------------------------------- */

#faqPanel,
.faqPanel {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.faqPanelColumns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;    
}
.faqPanelItems {
    width: calc(50% - 20px);
}
.faqPanelItem {
    position: relative;
    margin: 0 0 25px 0;
    padding: 0 0 25px 0;
    border-bottom: 1px solid #E2E7EE;
}
.faqPanelItem * {
    color: #000000;
}
.faqPanelItemCaption {
    margin: 0;
    padding: 0 60px 0 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    cursor: pointer;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
.faqPanelItem.opened .faqPanelItemCaption {
    margin: 0 0 20px 0;
}
.faqPanelItemContent {
    display: none;
    margin: 0;
    padding: 0 60px 0 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 160%;
}
.faqPanelItem.opened .faqPanelItemContent {
    display: block;
}
.faqPanelItem:before {
    content: '+';
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 29px;
    height: 29px;
    border: 1px solid #000000;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 200;
    pointer-events: none;
}
.faqPanelItem.opened:before {
    content: '-';
} 
.faqPanel .moreWrapper {
    padding: 10px 0 0 0;
}

@media only screen and (max-width: 1199px) {
    .faqPanelItemCaption {
        font-size: 18px;
        line-height: 120%;
    }
    .faqPanelItemContent {
        font-size: 15px;
        line-height: 150%;
    }
}
@media only screen and (max-width: 991px) {
    .faqPanelItemCaption {
        font-size: 17px;
    }
    .faqPanelItemContent {
        font-size: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .faqPanelColumns {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
    }
    .faqPanelItems {
        width: 100%;
        padding: 0 20px;
    }
    .faqPanelItemCaption {
        font-size: 16px;
    }
    .faqPanelItemContent {
        font-size: 14px;
    }
}
@media only screen and (max-width: 479px) {
    .faqPanelItemCaption {
        font-size: 14px;
    }
    .faqPanelItemContent {
        font-size: 14px;
    }
}

/* -------------------------------------------------------------------------- */
/* HOMEPAGE - BANNER PANEL
/* -------------------------------------------------------------------------- */

.bannerPanel {
    display: flex;
    flex-wrap: wrap;
    margin-top: 23px;
    margin-bottom: 23px;
}
.advertBanner img {
    width: 100% !important;
}
.advertBanner .dMobile {
    display: none !important;
}
.advertBanner .dDesktop {
    display: block !important;
}

.advertBanner {
    margin: 12px 0px;
}

.advertBanner.w50 {
    width: 50%;
}
.advertBanner.w50:nth-child(odd) {
    padding-right: 14px;
}
.advertBanner.w50:nth-child(even) {
    padding-left: 14px;
}

.advertBanner.w100 {
    width: 100%;
}

@media (max-width: 767px) {
    .advertBanner.w50 {
        width: 100%;
        padding: 0px !important;
    }
}
@media (max-width: 479px) {
    .advertBanner.w50 .dMobile {
        display: block !important;
    }
    .advertBanner.w50 .dDesktop {
        display: none !important;
    }
    .advertBanner.w100 .dMobile {
        display: block !important;
    }
    .advertBanner.w100 .dDesktop {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------- */
/* HOMEPAGE - BLOG PANEL
/* --------------------------------------------------------------------------- */

.content-wrapper-in .content > .homepage-blog-wrapper.blog-wrapper {
    display: none;
}

#blogPanel {
    margin: 0 auto;
    padding: 35px 0;
    max-width: 1440px;
    background-color: var(--color_blue_light);
}
#blogPanel::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: -9999px;
    right: 0;
    background: var(--color_blue_light);
    border-left: 9999px solid var(--color_blue_light);
    box-shadow: 9999px 0 0 var(--color_blue_light);
}
#blogPanel > h2 {
    position: relative;
    margin: 0 0 35px 0;
    z-index: 1;
}
#blogPanel .homepage-blog-wrapper.blog-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0;
    padding: 0;
}
#blogPanel .news-item {
    display: flex;
    flex-basis: 33.3333%;
    margin: 0 0 20px 0;
    padding: 0 10px;
    text-align: left;
}
#blogPanel .news-item > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 15px;
    background-color: #FFFFFF;
    overflow: hidden;
}
#blogPanel .news-item .image {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
#blogPanel .news-item .image img {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#blogPanel .news-item .text {
    display: flex;
    padding: 30px 6.5% 30px 6.5%;
    justify-content: space-between;
    flex-direction: column;
}
#blogPanel .news-item .text * {
    color: #000000;
}
#blogPanel .news-item .text:hover .title {
    text-decoration: underline;
}
#blogPanel .news-item .title {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 150%;
}
#blogPanel .news-item .description {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
}

@media only screen and (max-width: 991px) {
    #blogPanel .news-item .title {
        font-size: 19px;
    }
    #blogPanel .news-item .description {
        font-size: 16px;
    }
}
@media only screen and (max-width: 767px) {
    #blogPanel .news-item .title {
        font-size: 18px;
    }
    #blogPanel .news-item .description {
        font-size: 15px;
    }
}
@media only screen and (max-width: 639px) {
    #blogPanel .news-item {
        flex-basis: 400px;
    }
    #blogPanel .news-item .title {
        font-size: 17px;
    }
}
@media only screen and (max-width: 539px) {
    #blogPanel .news-item {
        flex-basis: 360px;
    }
}
@media only screen and (max-width: 400px) {
    #blogPanel .news-item {
        flex-basis: 100%;
    }
}

/* -------------------------------------------------------------------------- */
/* HOMEPAGE - CONTACT PANEL
/* -------------------------------------------------------------------------- */

#contacPanel,
.contacPanel {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.contacPanelInner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
.contacBanner {
    width: calc(50% - 10px);
    border-radius: 15px;
}
.contacBannerInner {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 50px 50px 30px 30px;
}
.contacBannerInner .desc {
    height: 100%;
    flex-basis: 63%;
}
.contacBannerInner .desc * {
    color: #000000;
}
.contacBannerInner .captionWrapper h3 {
    margin: 0;
    padding: 0;
    font-size: 31px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.62px;
}
.contacBannerInner .descWrapper p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}
.contacBannerInner .descWrapper small {
    font-size: 18px;
    font-size: 90%;
}
.contacBannerInner .mapLink {
    display: inline-block;
    margin: 0.75em 0;
}
.contacBannerInner .mapLink * {
    font-size: 17px;
    font-size: 85%;
}
.contacBannerInner .contactList {
    font-size: 19px;
    font-weight: 500;
    line-height: 100%;
}
.contacBannerInner .image {
    flex-basis: 37%;
    text-align: right;
}

.contacBanner.contact {
    background-color: #FCF4EA;
}
.contacBanner.contact .desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contacBanner.shop {
    background-color: var(--color_blue_light);
}
.contacBanner.shop .descWrapper {
    margin: 20px 0 0 0;
}

@media only screen and (max-width: 1199px) {
    .contacPanelInner {
        display: flex;
        flex-direction: column;
    }
    .contacBanner {
        width: 600px;
        margin: 0 auto 20px auto;
    }
    .contacBannerInner .desc {
        flex-basis: 70%;
    }
    .contacBannerInner .image {
        flex-basis: 30%;
    }
    .contacBannerInner .captionWrapper h3 {
        font-size: 24px;
        line-height: 130%;
    }
    .contacBannerInner .descWrapper p {
        font-size: 16px;
        line-height: 150%;
    }
    .contacBannerInner .contactList {
        font-size: 16px;
    }
}

@media only screen and (max-width: 639px) {
    .contacBannerInner {
        padding: 30px 25px;
    }
    .contacBanner {
        width: 100%;
        margin: 0 auto 20px auto;
    }
    .contacBannerInner .desc {
        flex-basis: 75%;
    }
    .contacBannerInner .image {
        flex-basis: 25%;
    }
}

@media only screen and (max-width: 400px) {
    .contacBannerInner .desc {
        flex-basis: 100%;
    }
    .contacBannerInner .image {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/* HOMEPAGE - PRODUCTS PANEL
/* -------------------------------------------------------------------------- */

.in-index .content > .homepage-products-heading-1,
.in-index .content > #products-1 {
    display: none;
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - FLAGS
/* --------------------------------------------------------------------------- */

.eg_flag_energeticka_trida_a { --eg_energy_flag_color: #00A651; }
.eg_flag_energeticka_trida_b { --eg_energy_flag_color: #39B54A; }
.eg_flag_energeticka_trida_c { --eg_energy_flag_color: #8DC63F; }
.eg_flag_energeticka_trida_d { --eg_energy_flag_color: #FFF200; }
.eg_flag_energeticka_trida_e { --eg_energy_flag_color: #FBB03B; }
.eg_flag_energeticka_trida_f { --eg_energy_flag_color: #F15A24; }
.eg_flag_energeticka_trida_g { --eg_energy_flag_color: #ED1C24; }

.eg_flag_energeticka_trida {
    position: absolute;
    top: 40px;
    right: 0;
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
    margin: 0;
    padding: 10px 15px 10px 10px;
    background-color: var(--eg_energy_flag_color);
}
.eg_flag_energeticka_trida::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -17px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-right: 17px solid var(--eg_energy_flag_color);
}
.eg_flag_energeticka_trida,
.eg_flag_energeticka_trida::after {
     -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.type-product .eg_flag_energeticka_trida {
    top: 44px;
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    font-size: 22px;
    cursor: pointer;
}
.type-product .eg_flag_energeticka_trida::after {
    left: -22px;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-right: 22px solid var(--eg_energy_flag_color);
}


.flag.flag-darek {
    --eg_param_flag_color: #FFFFFF;
    --eg_param_flag_bgcolor: #877521;
}
.flag.flag-prodlouzena-zaruka {
    --eg_param_flag_color: #FFFFFF;
    --eg_param_flag_bgcolor: #3a7f83;
}
.flag.flag-vip-cena {
    --eg_param_flag_color: #FFFFFF;
    --eg_param_flag_bgcolor: #bf211e;
    display: none !important;
}
.flag.flag-vip-cena.eg_vip_cena_active {
    display: inline-block !important;
}

.eg_flag_has_tooltip {
    cursor: pointer;
    padding-right: 36px !important;
    color: var(--eg_param_flag_color) !important;
    background-color: var(--eg_param_flag_bgcolor) !important;
}
.eg_flag_has_tooltip:before {
    content: "?";
    position: absolute;
    top: 16px;
    right: 10px;
    display: block;
    width: 16px;
    height: 16px;
    padding: 3px 0 0 0;
    border-radius: 50px;
    color: var(--eg_param_flag_bgcolor) !important;
    background-color: var(--eg_param_flag_color) !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
}

.eg_flag_tooltip {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    z-index: 10;
    display: none;
    width: 100vw;
    max-width: 360px;
    padding: 16px 24px;
    border: 2px solid var(--eg_param_flag_bgcolor) !important;
    color: #000000;
    background-color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}
.eg_flag_show_tooltip .eg_flag_tooltip {
    display: block;
}

@media only screen and (max-width: 767px) {
    .eg_flag_has_tooltip:before {
        top: 10px;
    }
    .type-product .eg_flag_energeticka_trida {
        width: 35px;
        height: 35px;
        max-width: 40px;
        max-height: 35px;
        font-size: 16px;
        line-height: 20px;
        padding: 7px 10px 7px 5px;
    }
    .type-product .eg_flag_energeticka_trida::after {
        left: -17px;
        border-top: 17px solid transparent;
        border-bottom: 17px solid transparent;
        border-right: 17px solid var(--eg_energy_flag_color);
    }
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - TILE
/* --------------------------------------------------------------------------- */

.products .product img[src*="/missing_images/"] {
    opacity: 0;
}
.products .product .eg_dummy_img {
    background-size: cover;
    background-image: url('/user/documents/assets/img/dummy750.png');
    background-position: center;
    background-repeat: no-repeat;
}
.products .product .eg_dummy_img img {
    opacity: 0;
}

.products.products-block .product {
    border: none !important;
    border-width: 0 !important;
}
.products.products-block .product .p {
    background-color: #FFFFFF;
    padding: 16px 12px;
    border: 1px solid #1038741C;
    border-radius: 15px;
}
.products.products-block .product .name {
    margin: 0;
    padding: 0;
    height: 85px;
    font-size: 19px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.49px;
    color: #000000;
}
.products.products-block .product .p-desc {
    margin: 0;
    padding: 20px 0 0 0;
    max-height: 95px;
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.32px;
    color: #000000;
}
.products.products-block .product .price-additional {
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    color: #797979;
}
.products.products-block .product .price-final {
    padding: 15px 0 10px 0;
}
.products.products-block .product .price-final strong {
    font-size: 27px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.54px;
    color: #000000;
}
.products.products-block .product .ratings-wrapper {
    display: none;
}
.products.products-block .product .p-bottom {
    padding: 20px 0 0 0;
}
.products.products-block .product .p-bottom > div {
    display: flex;
    align-items: center;
}
.products.products-block .product .flags {
    width: 100%;
}
.products.products-block .product .flags .flag:not(.eg_flag_energeticka_trida) {
    max-width: calc(100% - 55px);
    padding: 8px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    border-radius: 0 !important;
    height:  auto !important;
    width:  auto !important;
}

.products.products-block .product .flags .flag.flag-discount {
    background-color: var(--color_navy_dark) !important;
}
.products.products-block .product .flags .flag.flag-discount * {
    color: #FFFFFF !important; 
    font-weight: bold;
}
.products.products-block .product .flags.flags-extra .price-save {
    display: none !important;
}

/*.products.products-block .product .flags .flag.dkLabFavFlagProduct {
    display: none !important;
}*/
.products.products-block .product .dkLabFavouriteProductDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;    
    border-radius: 50px;
    background-color: #F5F8FC;
}

.products.products-block .product .btn-cart,
.products.products-block .product .add-to-cart-button {
    position: relative;
    padding: 10px 40px 10px 20px;
    border-radius: 50px;
    line-height: 24px;
}
.products.products-block .product .btn-cart:hover,
.products.products-block .product .add-to-cart-button:hover {
    text-decoration: underline;
}
.products.products-block .product .btn-cart *,
.products.products-block .product .add-to-cart-button * {
    font-size: 15px;
    line-height: 100%;
    text-transform: capitalize;
}
.products.products-block .product .btn-cart:before,
.products.products-block .product .add-to-cart-button:before {
    display: none;
}
.products.products-block .product .btn-cart:after,
.products.products-block .product .add-to-cart-button:after {
    content: '';
    position: absolute;
    top: 10px;
    right: 20px;
    display: block;
    width: 14px;
    height: 24px;
    margin: 0;
    padding: 0;
    font-size: 0;
    background-size: 13px auto;
    background-image: url('/user/documents/assets/img/category_icon_arrow.svg');
    background-repeat: no-repeat;
    background-position: right center;
}

@media only screen and (max-width: 1439px) {
    .products.products-block .product .name {
        font-size: 15px;
        height: 90px;
    }
    .products.products-block .product .price-final strong {
        font-size: 23px;
    }
    .products.products-block .product .availability {
        font-size: 13px;
    }
    .products.products-block .p-bottom .p-tools {
        margin-top: 20px;
    }
    .products.products-block .product .p-desc {
        font-size: 13px;
    }
}

@media only screen and (max-width: 479px) {
    .products.products-block .product .flags .flag:not(.eg_flag_energeticka_trida) {
        padding: 6px 8px;
        font-size: 12px;
    }
    .products.products-block .product .price-additional {
        font-size: 15px;
    }
    .products.products-block .product .price-final strong {
        font-size: 18px;
    }
    .products.products-block .product .btn-cart,
    .products.products-block .product .add-to-cart-button {
        padding: 10px 20px 10px 20px;
    }
    .products.products-block .product .btn-cart:after,
    .products.products-block .product .add-to-cart-button:after {
        display: none;
    }
    .products.products-block .product .eg_flag_energeticka_trida {
        position: absolute;
        right: 0;
        width: 28px;
        height: 28px;
        max-width: 28px;
        max-height: 28px;
        margin: 0;
        padding: 7px 10px 7px 5px;
        background-color: var(--eg_energy_flag_color);
    }
    .products.products-block .product .eg_flag_energeticka_trida::after {
        content: "";
        position: absolute;
        top: 50%;
        left: -13px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-right: 14px solid var(--eg_energy_flag_color);
    }
}

@media only screen and (max-width: 400px) {
    .products.products-block .product .flags .flag:not(.eg_flag_energeticka_trida) {
        max-width: 100%;
    }
    .products.products-block .product .price-additional {
        font-size: 14px;
    }
    .products.products-block .product .price-final strong {
        font-size: 16px;
    }
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - LIST breadcrumbs 
/* --------------------------------------------------------------------------- */

.breadcrumbs {
    border: 1px solid #DDDDDD;
    border-radius: 10px;
}

@media only screen and (min-width: 992px) {
    .breadcrumbs > span,
    .breadcrumbs > span > a {
        color: #000000;
    }
    .breadcrumbs > span > a:after,
    .breadcrumbs > span > a:before {
        content: "";
        height: 15%;
        position: absolute;
        right: 0;
        width: 1px;
        background-color: #696969;
    }
    .breadcrumbs > span > a:before {
        top: 38%;
        transform: rotate(-45deg);
    }
    .breadcrumbs > span > a:after {
        bottom: 39%;
        transform: rotate(45deg);
    }
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - LIST sidebar
/* --------------------------------------------------------------------------- */

.sidebar {
    margin: 20px 0 0 0;
    background-color: #FFFFFF;
}
.sidebar .banner {
    border: none;
    margin: 20px 0 0 0;
    padding: 0;
}

@media only screen and (max-width: 767px) {
    .sidebar,
    .sidebar .banner, 
    .sidebar .sidebar-inner {
        display: none;
    }
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - LIST filters
/* --------------------------------------------------------------------------- */

.sidebar .sidebar-inner, 
.sidebar .filter-sections {
    border-radius: 10px;
    background-color: var(--color_blue_light);
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - LIST category 
/* --------------------------------------------------------------------------- */

.category-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 150%;
}

@media only screen and (max-width: 767px) {
    .category-title {
        font-size: 40px;
    }
}
@media only screen and (max-width: 639px) {
    .category-title {
        font-size: 30px;
    }
}
@media only screen and (max-width: 479px) {
    .category-title {
        font-size: 26px;
    }
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - LIST subcategories
/* --------------------------------------------------------------------------- */

.subcategories {
    position: relative;
    margin: 60px 0 30px 0;
    padding: 0 0 10px 0;
}
.subcategories:before {
    position: absolute;
    top: -30px;
    left: 10px;
    display: block;
    content: 'Kategorie produktů';
    width: calc(100% - 20px);
    font-size: 19px;
    font-weight: 600;
    line-height: 19px;
    color: #000000;
}    
.subcategories:after {
    position: absolute;
    top: 100%;
    left: 10px;
    display: block;
    content: '';
    width: calc(100% - 20px);
    border-bottom: 1px solid #E4E9F0;
}
.subcategories li a {
    height: 100px;
    padding: 15px 15px !important;
    background-color: var(--color_blue_light);
    border: 1px solid #E4E9F0;
    border-radius: 10px;
}
.subcategories li a * {
    color: #000000;
}
.subcategories li a:before,
.subcategories li a:after {
    display: none;
}
.subcategories li a .image {
    min-width: 70px;
    min-height: 70px;
}
.subcategories li a .image img {
    object-fit: cover;
    object-position: center;
    width: 70px !important;
    height: 70px !important;
    max-width: 70px;
    max-height: 70px !important;
    mix-blend-mode: multiply;
}
.subcategories li a .text {
    padding: 0 0 0 20px !important;
    width: calc(100% - 70px) !important;
}

.category-header {
    background-color: transparent;
}
.category-header * {
     color: #000000;
}
.category-header .listSorting {
    width: 100%;
}
.category-header .listSorting__controls {
    width: 100%;
    column-gap: 0;
}
.category-header .listSorting__controls li {
    width: 25%;
    margin: 0 0 10px 0;
    padding: 0 10px;
    border: none;
    box-sizing: border-box;
}
.category-header .listSorting__controls li > button {
    width: 100%;
    margin: 0;
    border: 1px solid #11387433;
    border-radius: 5px;
    text-align: center;
}
.category-header .listSorting__control--current {
    color: #FFFFFF;
    border-color: var(--color_navy_dark);
    background-color: var(--color_navy_dark);
}

.category-header .listItemsTotal {
    display: none;
}

@media only screen and (max-width: 767px) {
    .category-header .listSorting__control--current {
        color: #000000;
    }
}
@media only screen and (max-width: 639px) {
    .category-header .listSorting__controls li {
        width: 50%;
    }
}
@media only screen and (max-width: 479px) {
    .subcategories {
        display: flex;
        align-items: stretch;
    }
    .subcategories li {
        display: flex;
        flex-direction: column;
        float: none;
    }
    .subcategories li a {
        display: flex;
        flex-direction: column;
        padding: 10px !important;
        height: 100% !important;
    }
    .subcategories li a .image {
        min-width: 50px;
        min-height: 50px;
        margin: 0 0 15px 0;
    }
    .subcategories li a .image img {
        width: 50px !important;
        height: 50px !important;
        max-width: 50px !important;
        max-height: 50px !important;
    }
    .subcategories li a .text {
        padding: 0 !important;
        width: 100% !important;
        text-align: center !important;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category-header .listSorting__controls li {
        width: 50%;
    }
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - LIST pagination
/* --------------------------------------------------------------------------- */

.btn.loadMore__button,
.pagination .pagination__list .pagination__link,
a.btn.goToTop__button {
    border-radius: 50px;
    background-color: var(--color_navy_dark);
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - LIST
/* --------------------------------------------------------------------------- */

.products.products-block .product {
    border: none;
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - DETAIL
/* --------------------------------------------------------------------------- */

/* FLAGS */

.type-product .p-detail-info .flags,
.type-product .p-image .flags.flags-extra,
.type-product .p-detail-info .flags + div:before {
    display: none;
}

.type-product .p-image-wrapper {
    position: relative;
}
.type-product .p-image-wrapper .flags {
    position: absolute;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
}
.type-product .p-image-wrapper .flags .flag:not(.eg_flag_energeticka_trida) {
    position: relative;
    max-width: calc(100% - 55px);
    padding: 16px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

/* HEADING */

.type-product .p-detail-inner-header h1 {
    display: block;
    width: 100%;
    font-size: 35px;
    font-weight: 600;
    line-height: 130%;
}

@media only screen and (max-width: 767px) {
    .type-product .p-detail-inner-header h1 {
        font-size: 30px;
    }
    .type-product .p-image-wrapper .flags {
        left: 10px;
        width: calc(100% - 20px);
    }
    .type-product .p-image-wrapper .flags .flag:not(.eg_flag_energeticka_trida) {
        padding: 10px 14px;
    }
}
@media only screen and (max-width: 639px) {
    .type-product .p-detail-inner-header h1 {
        font-size: 25px;
    }
}
@media only screen and (max-width: 479px) {
    .type-product .p-detail-inner-header h1 {
        font-size: 20px;
    }
}

/* IMAGE */

.type-product .p-image .p-main-image[href*='/missing_images/'] {
    opacity: 0;
}

.type-product .p-image {
    margin: 0 0 15px 0;
    padding: 0;
    border: 1px solid #10387426;
    border-radius: 15px;
    overflow: hidden;
}
.type-product .p-thumbnails .p-thumbnail {
    padding: 5px;
}
.type-product .p-thumbnails .p-thumbnail:before {
    display: none;
}
.type-product .p-thumbnails .p-thumbnail img {
    padding: 0 5px;
    border: 1px solid #10387426;
    border-radius: 10px;
}
.eg_image_energy_sticker {
    display: none !important;
}
.p-image.eg_show_energy_sticker img.eg_image_energy_sticker {
    display: block !important;
}
.p-image.eg_show_energy_sticker img:not(.eg_image_energy_sticker) {
    display: none !important;
}

/* SOCIAL BUTTONS */

.type-product .social-buttons-wrapper {
    opacity: 0;
}
.type-product .social-buttons-wrapper.hasEdit {
    opacity: 1;
}
.type-product .social-buttons-wrapper .link-icon.chat,
.type-product .social-buttons-wrapper .link-icon.share,
.type-product .social-buttons-wrapper .link-icon.print {
    display: none;
}
.type-product .social-buttons-wrapper .link-icon {
    margin: 0;
    padding: 10px 20px 10px 56px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #000000;
    text-transform: capitalize;
    background-size: 36px 36px;
    background-repeat: no-repeat;
    background-position: 10px center;
}
.type-product .social-buttons-wrapper .link-icon:before {
    display: none;
}
.type-product .social-buttons-wrapper .link-icon.watchdog {
    background-image: url(/user/documents/assets/img/watchdog_panel_icon.svg);
}

@media only screen and (max-width: 539px) {
    .type-product .social-buttons-wrapper .link-icon {
        padding: 10px 10px 10px 45px;
        background-size: 30px 30px;
        background-position: 5px center;
    }
}   

/* FAVORITES */

#dkLabFavouriteDiv {
    margin: 0 0 15px 0;
    opacity: 0;
}
#dkLabFavouriteDiv.hasEdit {
    opacity: 1;
}
#dkLabFavouriteDiv .dkLabFavDetailSpan:before {
    top: 3px;
    font-size: 20px;
    margin: 0 10px 0 0;
}
#dkLabFavouriteDiv .dkLabFavDetailSpan span {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #000000;
}

/* PRICE */

.type-product .p-final-price-wrapper {
    margin: 0 0 0 0;
    opacity: 0;
}
.type-product .p-final-price-wrapper.hasEdit {
    opacity: 1;
}
.type-product .price-save {
    display: none;
}
.type-product .price-final {
    margin: 0 0 10px 0;
}
.type-product .price-final-holder {
    margin: 0 0 20px 0;
    font-size: 41px;
    font-weight: 500;
    line-height: 100%;
    color: #000000;
}
.type-product .price-additional {
    margin: 10px 0 0 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 100%;
    color: #868686;
}

/* PROMOTION VALIDITY */

.type-product .eg_promotion_validity_label {
    margin: 15px 0 0 0;
    font-weight: 400;
    color: #000000;
}

/* AVAILABILITY */

.type-product .availability-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}
.eg_availability_label {
    font-size: 85%;
    text-transform: lowercase;
}
.eg_availability_label:before {
    content: ' (';
}
.eg_availability_label:after {
    content: ')';
}

/* ADD TO CART */

.type-product .add-to-cart {
    margin: 0 0 30px 0;
}
.type-product .add-to-cart .quantity {
    border: 1px solid #DBE1EA;
    border-radius: 10px;
    background-color: #F5F8FC;
    overflow: hidden;
}
.type-product .add-to-cart .quantity input {
    width: 80px;
    height: 55px;
    color: #868686;
    font-size: 19px;
    text-align: center;
}
.type-product .add-to-cart .increase,
.type-product .add-to-cart .decrease {
    width: 27px;
    height: 27px;
    border: none;
    background-color: #F5F8FC;
}
.type-product .add-to-cart .increase:before,
.type-product .add-to-cart .decrease:before {
    font-size: 14px;
    line-height: 28px;
    color: #000000;
}
.type-product .add-to-cart .increase {
    top: 0;
}
.type-product .add-to-cart .decrease {
    top: 28px;
}
.type-product .add-to-cart-button {
    margin: 0 0 0 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--color_navy_dark);
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}
.type-product .add-to-cart-button:before {
    display: none;
}

/* SHORT DESCRIPTION */

.type-product p[data-testid="productCardDescr"] {
    display: none;
}

.type-product .p-short-description {
    opacity: 0;
}
.type-product .p-short-description.hasEdit {
    opacity: 1;
}

.eg_info_panel {
    margin: 0 0 10px 0;
    padding: 15px 30px 15px 60px;
    border: 1px solid #DBE1EA;
    border-radius: 10px;
    background-color: #F5F8FC;
    background-size: 36px 36px;
    background-repeat: no-repeat;
    background-position: 15px center;
}
.eg_info_panel * {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #000000;
}
.eg_info_panel_inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.eg_info_panel_image a {
    margin: 0;
}
.eg_info_panel_image img {
    mix-blend-mode: multiply;
}

.eg_warranty_panel {
    background-image: url(/user/documents/assets/img/warranty_panel_icon.svg?v1);
}
.eg_distribution_panel {
    background-image: url(/user/documents/assets/img/distribution_panel_icon.svg?v1);
}
.eg_distribution_panel .eg_manufacturer_logo img {
    width: auto;
    max-width: 140px;
    max-height: 33px;
}

.eg_review_panel {
    background-image: url(/user/documents/assets/img/review_panel_icon.svg?v1);
}
.eg_review_panel .eg_info_panel_image {
    display: flex;
    align-items: center;
    row-gap: 10px;
    column-gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.eg_social_panel {
    padding-left: 5px;
}

.eg_help_panel {
    padding-left: 5px;
    border-color: var(--color_navy_dark);
    background-color: var(--color_navy_dark);
}
.eg_help_panel .eg_info_panel_inner {
    flex-direction: column;
    align-items: flex-start;    
}
.eg_help_panel * {
    color: #FFFFFF;
}
.eg_help_panel h3 {
    display: flex;
    margin: 0;
    padding: 0 0 0 56px;
    min-height: 36px;
    font-weight: 600;
    line-height: 150%;
    background-size: 36px 36px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-image: url(/user/documents/assets/img/help_panel_icon.svg?v1);
    align-items: center;
}
.eg_help_panel .contactList {
    display: flex;
    list-style-type: none;
    margin: 15px 0 0 0;
    padding: 0;
}
.eg_help_panel .contactList li {
    line-height: 18px;
    margin: 0 15px 0 15px;
    padding: 0 0 0 35px;
    background-repeat: no-repeat;
    background-position: left center;
}
.eg_help_panel .contactList li a {
    text-decoration: none;
}
.eg_help_panel .contactList li a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}
.eg_help_panel .contactList li.email {
    background-image: url('/user/documents/assets/img/help_mail_icon.svg');    
}
.eg_help_panel .contactList li.phone {
    background-image: url('/user/documents/assets/img/help_phone_icon.svg');    
}

@media only screen and (max-width: 539px) {
    .eg_info_panel {
        padding: 10px 10px 10px 45px;
        background-size: 30px 30px;
        background-position: 5px center;
    }
    .eg_info_panel * {
        font-size: 14px;
    }

    .eg_help_panel {
        padding-left: 5px;
    }
    .eg_help_panel h3 {
        padding: 0 0 0 50px;
        background-size: 28px 28px;
        background-position: 5px center;
    }
    .eg_help_panel .contactList {
        flex-direction: column;
        margin: 0;
    }
    .eg_help_panel .contactList li {
        margin: 10px 0 0 10px;
        padding: 0 0 0 40px;
    }
    .eg_social_panel {
        padding-left: 5px;
    }
}

/* DESCRIPTION */

.type-product .basic-description > h3,
.type-product .extended-description > h3 {
    margin: 0 0 30px 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.66px;
    color: #000000;
}
.type-product .shp-tabs-holder {
    display: none;
}

@media only screen and (max-width: 767px) {
    .type-product .basic-description > h3,
    .type-product .extended-description > h3 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 639px) {
    .type-product .basic-description > h3,
    .type-product .extended-description > h3 {
        font-size: 25px;
    }
}
@media only screen and (max-width: 479px) {
    .type-product .basic-description > h3,
    .type-product .extended-description > h3 {
        font-size: 20px;
    }
}

/* BASIC DESCRIPTION */

.type-product .basic-description {
    padding: 15px 0 0 0;
}

/* EXTENDED DESCRIPTION */

.type-product .extended-description {
    opacity: 0;
    padding: 15px 15px 25px 15px;
    border: 1px solid #F0F0F0;
    border-radius: 15px;
    background-color: #F6F8FC;
}
.type-product .extended-description.hasEdit {
    opacity: 1;
}
.type-product .extended-description .detail-parameters {
    width: 100% !important;
}
.type-product .extended-description .detail-parameters * {
    font-size: 14px;
    color: #000000;
}
.type-product .extended-description .detail-parameters tr {
    border-bottom: 1px solid #DBE1EA;
}
.type-product .extended-description .detail-parameters tr:last-child {
    border-bottom: none;
}
.type-product .extended-description .detail-parameters th,
.type-product .extended-description .detail-parameters td {
    padding: 10px 0;
}
.type-product .extended-description .detail-parameters th {
    padding-right: 10px;
    font-weight: 600;
}
.type-product .extended-description .detail-parameters td {
    padding-left: 10px;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    .type-product .extended-description {
        margin: 35px 0 0 0;
        flex-basis: 100%;
    }
}

/* DOWNLOAD FILES */

.eg_files_wrapper {
    margin: 50px 0 ;
}
.eg_files_wrapper h3 {
    margin: 0 0 30px 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.66px;
    color: #000000;
}
.eg_files_table * {
    font-size: 16px;
    line-height: 150%;
}
.eg_files_table td {
    padding: 5px 20px;
}
.eg_files_table td:first-child {
    padding-left: 0;
    color: #000000;
}
.eg_files_table td:first-child {
    padding-right: 0;
}

@media only screen and (max-width: 767px) {
    .eg_files_wrapper {
        padding: 0 20px;
    }
    .eg_files_wrapper h3 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 639px) {
    .eg_files_wrapper h3 {
        font-size: 25px;
    }
}
@media only screen and (max-width: 479px) {
    .eg_files_wrapper h3 {
        font-size: 20px;
    }
}

/* MANUFACTURER DESCRIPTION */

.eg_manufacturer_wrapper {
    display: block;
    margin: 55px 0;
}
.eg_manufacturer_tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 20px;
    margin: 0 0 50px 0;
}
.eg_manufacturer_tab {
    display: inline-block;
    width: 180px;
    margin: 0;
    padding: 15px 40px 15px 25px;
    border: 1px solid var(--color_navy_dark);
    border-radius: 24px;
    color: var(--color_navy_dark);
    background-color: #FFFFFF;
    background-size: 14px auto;
    background-image: url(/user/documents/assets/img/category_icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: 145px center;
    text-align: center;
    cursor: pointer;
}
.eg_manufacturer_tab.active,
.eg_manufacturer_tab:hover {
    color: #FFFFFF;
    background-color: var(--color_navy_dark);
    white-space: nowrap !important;
    
}
.eg_manufacturer_contents {
    display: block;
    margin: 50px 0 0 0;
}
.eg_manufacturer_content {
    display: none;
}
.eg_manufacturer_content.active {
    display: block;
}
.eg_manufacturer_content table {
    width: 100% !important;
    margin: 30px auto;
}
.eg_manufacturer_content th,
.eg_manufacturer_content td {
    padding: 5px 10px;
    text-align: center !important;
}
.eg_manufacturer_content .eg_manufacturer_logo {
    margin: 0 0 50px 0;
}
.eg_manufacturer_content .eg_manufacturer_logo img {
    display: block;
    margin: 0 auto;
    max-width: 260px;
    max-height: 260px;
}

@media only screen and (max-width: 1199px) {
    .eg_manufacturer_content .eg_manufacturer_logo img {
        max-width: 200px;
        max-height: 200px;
    }
}
@media only screen and (max-width: 991px) {
    .eg_manufacturer_content .eg_manufacturer_logo img {
        max-width: 160px;
        max-height: 160px;
    }
}
@media only screen and (max-width: 767px) {
    .eg_manufacturer_wrapper {
        padding: 0 20px;
    }
    .eg_manufacturer_tab {
        width: 140px;
        padding: 15px;
        background-image: none;
    }
    .eg_manufacturer_content .eg_manufacturer_logo img {
        max-width: 140px;
        max-height: 140px;
    }
}

/* RELATED + ALTERNATIVE PRODUCTS */

.p-detail-inner + .products-related-header,
.p-detail-inner + .products-block.products-related,
.p-detail-inner + .p-detail .products-block.products-related + .browse-p {
    display: none;
}
.products-related-header {
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.66px;
}
.eg_related_products_wrapper,
.eg_alternative_products_wrapper {
    margin: 35px 0 0 0 ;
}

/* --------------------------------------------------------------------------- */
/* PRODUCT - CAROUSEL
/* --------------------------------------------------------------------------- */

/* CAROUSEL - WRAPPER */

.productsCarouselWrapper {
    position: relative;
    width: 100%;
}

/* CAROUSEL - NAVIGATION */

.productsCarouselNavigation {
    position: absolute;
    top: calc(50% - 1px);
    width: 100%;
    z-index: 20;
}
.productsCarouselNavigation .slick-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    color: #FFFFFF;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #1038741C;
}
.productsCarouselNavigation .slick-arrow.slick-prev {
    left: -25px;
}
.productsCarouselNavigation .slick-arrow.slick-next {
    right: -25px;
}
.productsCarouselNavigation .slick-arrow.slick-prev.slick-disabled,
.productsCarouselNavigation .slick-arrow.slick-next.slick-disabled {
    display: none !important;
}
.productsCarouselNavigation .slick-arrow.slick-prev::before,
.productsCarouselNavigation .slick-arrow.slick-next::before {
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    font-family: shoptet;
    font-size: 20px !important;
    line-height: 50px !important;
    color: rgba(0, 0, 0, 0.25);
    /* font-size: 0px !important; */
    /* line-height: 0px !important; */
    /* background-size: contain; */
    /* background-position: center center; */
}
.productsCarouselNavigation .slick-arrow.slick-prev::before {
    /* background-image: url('../img/arrow-prev.svg'); */
    content: "\e90f" !important;
}
.productsCarouselNavigation .slick-arrow.slick-next::before {
    /* background-image: url('../img/arrow-next.svg');  */
    content: "\e910" !important;
}

/* CAROUSEL - DOTS */

.productsCarouselWrapper .slick-dots {
    top: 100%;
    bottom: unset;
}
.productsCarouselWrapper .slick-dots li button:before {
    content: '';
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border: 1px solid #707070;
    border-radius: 50%;
    background-color: #FFFFFF;
    opacity: 1;
}
.productsCarouselWrapper .slick-dots li.slick-active button:before {
    background-color: var(--color_navy_mid);
}

/* CAROUSEL - SLIDER */

.productsCarouselSlider {
    display: block;
    width: 100%;
    /*overflow: hidden;*/
}
.productsCarouselSlider,
.productsCarouselSlider * {
    box-sizing: border-box;
}
.productsCarouselSlider .slick-list {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 10px!important;
    border: none !important;
}
.productsCarouselSlider .slick-track {
    display: flex !important;
    align-items: stretch !important;
}
.productsCarouselSlider .slick-track .product {
    display: block !important;
    /*width: 340px !important;*/
    height: auto !important;
    margin: 0 !important;
    padding: 20px 10px !important;
}
.productsCarouselSlider .slick-track .product .p {
    display: flex !important;
    height: 100% !important;
}

@media only screen and (max-width: 767px) {
    .productsCarouselNavigation .slick-arrow.slick-prev,
    .productsCarouselNavigation .slick-arrow.slick-next {
        display: none !important;
    }
}
@media only screen and (max-width: 320px) {
    .productsCarouselSlider .slick-track .product {
        /*width: 300px !important;*/
    }
}

/* --------------------------------------------------------------------------- */
/* CONTENT - COMMON
/* --------------------------------------------------------------------------- */

:is(.type-manufacturers-listing,
    .type-manufacturer-detail,
    .type-posts-listing,
    .type-post,
    .type-page) :is(h1) {
        font-size: 35px;
        font-weight: 600;
        line-height: 130%;
}
 
@media only screen and (max-width: 767px) {
    :is(.type-manufacturers-listing,
    .type-manufacturer-detail,
    .type-posts-listing,
    .type-post,
    .type-page) :is(h1) {
        font-size: 30px;
    }
}
@media only screen and (max-width: 639px) {
    :is(.type-manufacturers-listing,
    .type-manufacturer-detail,
    .type-posts-listing,
    .type-post,
    .type-page) :is(h1) {
        font-size: 25px;
    }
}
@media only screen and (max-width: 479px) {
    :is(.type-manufacturers-listing,
    .type-manufacturer-detail,
    .type-posts-listing,
    .type-post,
    .type-page) :is(h1) {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) {
    .type-page .content-inner,
    .type-post .content-inner,
    .type-posts-listing #content-wrapper {
        width: 100%;
        max-width: 1200px;
    }
}

/* --------------------------------------------------------------------------- */
/* CONTENT - ARTICLES
/* --------------------------------------------------------------------------- */

.news-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 35px 0;
}
.news-item .text .title {
    font-weight: 600;
}
.news-item .text .description {
    color: #000000;
    font-size: 16px;
}
.news-item .image {
    display: flex;
    justify-content: center;
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    max-height: 160px;
    margin: 0 0 25px 0;
    /* aspect-ratio: 4 / 3;
    overflow: hidden; */
}
.news-item .image img {
    width: auto !important;
    height: auto !important;
    max-width: 300px !important;
    max-height: 160px !important;
    /* object-fit: cover;
    display: block; */
}
.news-item-detail .eg_article_perex {
    display: none !important;
}

@media (min-width: 640px) {
    .news-item {
        display: flex;
        flex-direction: row;
    }
    .news-item .image {
        max-width: 260px;
        margin: 0 25px 0 0;
    }
}
@media only screen and (min-width: 768px) {
    .type-posts-listing #content-wrapper {
        width: 100%;
        max-width: 1787px;
        max-width: 1200px;
    }
    .type-posts-listing #content-wrapper .content-inner {
        max-width: 100%;
    }
}

/* --------------------------------------------------------------------------- */
/* CONTENT - MANUFACTURER
/* --------------------------------------------------------------------------- */

.manufacturerDetail .eg_manufacturer_service {
    display: none;
}

/* --------------------------------------------------------------------------- */
/* CONTENT - PEREX
/* --------------------------------------------------------------------------- */

.eg_perex_content_wrapper {
    position: relative;
    max-height: 5em;
    overflow: hidden;
}
.eg_perex_content_wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2em;
    background: linear-gradient(to bottom,rgba(255, 255, 255, 0), #FFFFFF);
    pointer-events: none;
}
.eg_perex_content_wrapper.opened {
    max-height: unset;
}
.eg_perex_content_wrapper.opened::after {
    display: none;
}

.eg_perex_more_wrapper {
    margin: 30px 0;
    text-align: left;
}
.eg_perex_more_button {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    text-decoration: underline;
}

.category-perex,
.type-manufacturer-detail .eg_manufacturer_description {
    display: none;
}
.category-perex.eg_perex_content_wrapper,
.type-manufacturer-detail .eg_manufacturer_description.eg_perex_content_wrapper {
    display: block;
}


/* --------------------------------------------------------------------------- */
/* CONTENT - DESCRIPTION
/* --------------------------------------------------------------------------- */

.eg_description_text h2,
.eg_description_text h3 {
    font-weight: 600;
}
.eg_description_text,
.eg_description_text a,
.eg_description_text p,
.eg_description_text ul,
.eg_description_text li,
.eg_description_text span,
.eg_description_text table,
.eg_description_text tr,
.eg_description_text th,
.eg_description_text td {
    color: #000000;
    font-size: 16px;
    line-height: 150%;
}
.eg_description_text a,
.eg_description_text a * {
    font-weight: 600;
    color: var(--color_navy_dark) !important;
    text-decoration: underline !important;
}
.eg_description_text a:hover {
    color: var(--color_navy_dark) !important;
    text-decoration: underline !important;
}

.eg_description_text table {
    width: 100% !important;
    margin: 0 auto 30px auto;
}
.eg_description_text th,
.eg_description_text td {
    padding: 5px 10px;
    text-align: center !important;
}

/* --------------------------------------------------------------------------- */

:is(.category-perex, .news-item-detail, .pageArticleDetail),
:is(.category-perex, .news-item-detail, .pageArticleDetail) :is(a, p, ul, li, span, table, tr, th, td) {
    color: #000000;
    font-size: 16px;
    line-height: 150%;
}

:is(.category-perex, .news-item-detail, .pageArticleDetail) a,
:is(.category-perex, .news-item-detail, .pageArticleDetail) a * {
    font-weight: 600;
    color: var(--color_navy_dark) !important;
    text-decoration: underline !important;
}

:is(.category-perex, .news-item-detail, .pageArticleDetail) a:hover {
    color: var(--color_navy_dark) !important;
    text-decoration: underline !important;
}

:is(.category-perex, .news-item-detail, .pageArticleDetail) table {
    width: 100% !important;
    margin: 0 auto 30px auto;
}

:is(.category-perex, .news-item-detail, .pageArticleDetail) :is(th, td) {
    padding: 5px 10px;
    text-align: center !important;
}

/* --------------------------------------------------------------------------- */
/* CONTENT - FAQ
/* --------------------------------------------------------------------------- */

.eg_faq_wrapper {
    padding: 0 10px;
}
.eg_faq_wrapper_inner {
    max-width: 1440px;
    margin: 35px auto 0 auto;    
    padding: 35px;
    border-radius: 15px;
    background-color: #F5F8FC;
}
.eg_faq_wrapper .faqPanel {
    margin: 0
}
.eg_faq_wrapper .faqPanel h2 {
    margin-top: 0;
}

@media only screen and (max-width: 767px) {
    .eg_faq_wrapper .faqPanelItems {
        padding: 0;
    }
}
@media only screen and (max-width: 539px) {
    .eg_faq_wrapper_inner {
        padding: 35px 25px;
    }
}
@media only screen and (max-width: 479px) {
    .eg_faq_wrapper_inner {
        padding: 35px 20px;
    }
}

/* -------------------------------------------------------------------------- */
/* CONTENT - GRID
/* -------------------------------------------------------------------------- */

.contentGrid,
.contentGrid * {
    box-sizing: border-box;
}
.contentGrid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.contentGrid.col2 .gridItem {
    width: 50.00%;
    margin: 0;
    padding: 0 16px 0 16px;
}
.contentGrid.col2 .gridItem:nth-child(even) {
    margin-right: 0;
    padding-right: 0;
}
.contentGrid.col2 .gridItem:nth-child(odd) {
    margin-left: 0;
    padding-left: 0;
}

.contentGrid.col3 .gridItem {
    width: 33.33%;
}

.contentGrid.col4 .gridItem {
    width: 25.00%;
}

@media only screen and (max-width: 991px) {
    .contentGrid.col2 .gridItem,
    .contentGrid.col3 .gridItem,
    .contentGrid.col4 .gridItem {
        width: 100%;
        padding: 0;
    }
    .contentGrid.col2 .gridItem.galleryItem,
    .contentGrid.col3 .gridItem.galleryItem,
    .contentGrid.col4 .gridItem.galleryItem {
        width: 50%;
        padding: 0;
    }
}
@media only screen and (max-width: 400px) {
    .contentGrid.col2 .gridItem.galleryItem,
    .contentGrid.col3 .gridItem.galleryItem,
    .contentGrid.col4 .gridItem.galleryItem {
        width: 100%;
        padding: 0;
    }
}

/* --------------------------------------------------------------------------- */
/* CONTENT - GALLERY
/* --------------------------------------------------------------------------- */

.galleryPanel {
    margin: 2em -6px;
}
.galleryItem {
}
.galleryImage {
    display: inline-block;
    padding: 6px;
}

/* --------------------------------------------------------------------------- */
/* CONTENT - PAGES
/* --------------------------------------------------------------------------- */

.contactPanel {
    margin: 0px 0 30px 0;
}
.contactPanel :first-child {
    margin-top: 0;
}
.contactPanel :last-child {
    margin-bottom: 0;
}

.contactPanel.textPanel * {
    line-height: 180%;
}

.contactPanel.galleryPanel {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
    justify-content: space-between;
}
.contactPanel.galleryPanel a {
    width: 100%;
    max-width: calc(33.3333% - 8px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}
.contactPanel.galleryPanel a img {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contactPanel.contactsPanel {
    margin: 0px 0 30px 0;
    padding: 20px;
    border-radius: 15px;
    background-color: #113874;
    color: #FFFFFF !important;
}
.contactPanel.contactsPanel *,
.contactPanel.contactsPanel *:hover {
    color: #FFFFFF !important;
}

.contactPanel.addressPanel, 
.contactPanel.formPanel {
    margin: 0px 0 30px 0;
    padding: 20px;
    border-radius: 15px;
    background-color: var(--color_blue_light);
}

@media only screen and (max-width: 479px) {
    .contactPanel p,
    .contactPanel p *,
    .contactPanel li,
    .contactPanel li * {
        font-size: 15px;
    }
}
@media only screen and (max-width: 400px) {
    .contactPanel p,
    .contactPanel p *,
    .contactPanel li,
    .contactPanel li * {
        font-size: 14px;
    }
    .contactPanel.galleryPanel a {
        max-width: 100%;
    }
}

/* --------------------------------------------------------------------------- */
/* CONTENT - MODAL
/* --------------------------------------------------------------------------- */

#cboxOverlay {
    background-color: rgba(0, 0, 0, 0.5);
}
#cboxContent {
    overflow: hidden;
    border-radius: 10px !important;
}
#cboxClose {
    background-color: transparent !important;
}

.eg_modal_content_wrapper {
    padding: 25px;
    background-color: var(--color_blue_light);
}
.eg_modal_content_body * {
    color: #000000;
}
.eg_modal_content_body h3 {
    font-weight: 600;
}
.eg_modal_content_buttons {
    padding: 20px 0 0 0;
    border-top: 1px solid rgba(17, 56, 116, 0.1);
}
.eg_modal_content_button {
    display: inline-block;
    margin: 0 15px 0 0;
    padding: 15px 20px;
    border: 1px solid var(--color_navy_dark);
    border-radius: 10px;
    background-color: var(--color_navy_dark);
    color: #FFFFFF;
}
.eg_modal_content_button:hover {
    background-color: #FFFFFF;
    color: var(--color_navy_dark);
}

/* --------------------------------------------------------------------------- */
/* FONTS
/* --------------------------------------------------------------------------- */

/*
*/

/* --------------------------------------------------------------------------- */
/* MEDIA - MIN WIDTH
/* --------------------------------------------------------------------------- */

/* mobile */
/*
@media only screen and (min-width: 480px) {
}
@media only screen and (min-width: 640px) {
}
@media only screen and (min-width: 768px) {
}
*/

/* desktop */
/*
@media only screen and (min-width: 992px) {
}
@media only screen and (min-width: 1200px) {
}
@media only screen and (min-width: 1440px) {
}
*/

/* --------------------------------------------------------------------------- */
/* MEDIA - MAX WIDTH
/* --------------------------------------------------------------------------- */

/* desktop */
/*
@media only screen and (max-width: 1439px) {
}
@media only screen and (max-width: 1199px) {
}
@media only screen and (max-width: 991px) {
}
*/

/* mobile */
/*
@media only screen and (max-width: 767px) {
}
@media only screen and (max-width: 639px) {
}
@media only screen and (max-width: 479px) {
}
*/

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
