
body * {
    font-family: "Geist", sans-serif;
}

/* -------------------------------------------------------------------------- */
/* 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 only screen and (min-width: 768px) {
    .dMobile { display: none; }
    .dDesktop { display: block; }
}


/* ---------------------------------------------------------------------------------------------- */
/* HEADER */
/* ---------------------------------------------------------------------------------------------- */

.headerWrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 22px 15px;
}

.headerWrapper .logo {
    width: auto;
}
.headerWrapper .logo-lg {
    display: block;
}
.headerWrapper .logo-lg img {
    display: block;
    width: auto;
    height: 100%;
    max-height: 55px;
}

/* LOGIN BUTTON */

.userMenu,
.userMenu .loginButton,
.userMenu .loginButton * {
    line-height: 16px  !important;
}
.userMenu .loginButton {
    padding: 15px 25px;
    border-radius: 10px;
    background-color: #000000;
    white-space: nowrap;
}
.userMenu .loginButton * {
    color: #FCE406;
    font-size: 16px;
    font-weight: 300;
}
.userMenu .loginButton .label-login {
    display: block;
    min-height: 16px;
}
.userMenu .loginButton .fa-user {
    display: none;
}
.userMenu .loginButton,
.userMenu .loginButton:hover,
.userMenu .loginButton:active,
.userMenu .loginButton:focus,
.userMenu.open .loginButton,
.userMenu.open .loginButton:hover,
.userMenu.open .loginButton:active,
.userMenu.open .loginButton:focus
{
    background-color: #000000 !important;
}
.userMenu.open .loginButton {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.userMenu .loginDropdown {
    padding: 15px 25px;
    border: 1px solid #000000 !important;
    border-radius: 10px !important;
    border-top-right-radius: 0 !important;
}
.userMenu .loginDropdown  > li > a {
    margin: 0 !important;
    padding: 0 !important;
    color: #000000 !important;
}

.userMenu .loginDropdown  > li > a:hover,
.userMenu .loginDropdown  > li > a:active,
.userMenu .loginDropdown  > li > a:focus
{
    color: #000000 !important;
    background-color: #FFFFFF !important;
}

/* BASKET BUTTON */

.basketMenu .basketButton {
    height: 46px !important;
    margin: 0 20px 0 0 !important;
    padding: 15px 30px 15px 25px !important;
    line-height: 16px;
}
.basketMenu .basketButton,
.basketMenu .basketButton:hover,
.basketMenu .basketButton:active,
.basketMenu .basketButton:focus
{
    line-height: 16px;
    background-size: 22px 20px;
    background-image: url('../../img/gui/icon_basket.svg');
    background-repeat: no-repeat;
    background-position: right 14px;
}
.basketMenu .basketButton * {
    line-height: 16px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}
.basketMenu .basketButton .label-success {
    top: 8px !important;
    right: 4px !important;
    color: #FFFFFF !important;
    background-color: #FF0098 !important;
}

@media only screen and (max-width: 991px) {
    .headerWrapper .navbarWrapper {
        margin: 0;
        padding: 0 50px 0 0;
    }
    .userMenu .loginDropdown {
        top: unset !important;
        right: 50px !important;
    }
}

@media only screen and (max-width: 767px) {
    .userMenu .loginButton {
        padding: 15px 20px !important;
    }
    .userMenu .loginButton .fa-user {
        display: block;
    }
    .userMenu .loginButton .label-login {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .headerWrapper .logo-lg img {
        max-width: 100px;
    }
    .headerWrapper .navbarWrapper {
        margin: 0;
        padding: 8px 40px 0 0;
    }
    .userMenu .loginButton {
        padding: 10px 15px !important;
    }
    .userMenu .loginDropdown {
        top: unset !important;
        right: 40px !important;
    }
    .basketMenu .basketButton {
        margin: 0 15px 0 0 !important;
        padding: 10px 30px 10px 15px !important;
    }
    .basketMenu .basketButton,
    .basketMenu .basketButton:hover,
    .basketMenu .basketButton:active,
    .basketMenu .basketButton:focus {
        background-position: right 9px;
    }
    .basketMenu .basketButton .label-basket {
        display: none;
    }
    .basketMenu .basketButton .label-success {
        top: 3px !important;
    }
}

@media only screen and (max-width: 375px) {
    .headerWrapper .logo-lg img {
        max-width: 80px;
    }
}

/* ---------------------------------------------------------------------------------------------- */
/* NAVIGATION
/* ---------------------------------------------------------------------------------------------- */

#topMenu {
    position: absolute;
    z-index: 9999;
    top: 22px;
    left: 160px;
    width: calc(100% - 360px);
}

#navigation {
    margin: 0 auto;
    padding: 2px 0 0 0;
}

#navButton {
    position: absolute;
    display: none;
    top: 12px;
    right: -175px;
    width: 26px;
    height: 26px;
    cursor: pointer;
}
#navButton:after,
#navButton:before,
#navButton div {
    background-color: #000000;
    content: '';
    display: block;
    height: 2px;
    margin: 5px 0;
}
#navButton.active:before {
    -webkit-transform: translateY(7px) rotate(135deg);
    -moz-transform: translateY(7px) rotate(135deg);
    transform: translateY(7px) rotate(135deg);
}
#navButton.active:after {
    -webkit-transform: translateY(-7px) rotate(-135deg);
    -moz-transform: translateY(-7px) rotate(-135deg);
    transform: translateY(-7px) rotate(-135deg);
}
#navButton.active div {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
}

ul.mainMenu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}
ul.mainMenu li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none none;
}
ul.mainMenu li {
    display: inline-block;
}

ul.mainMenu li a {
    display: block;
    margin: 0;
    padding: 15px 25px 15px 25px;
    color: #222222;
    font-size: 17px;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    text-transform: uppercase;
}

ul.mainMenu li:hover a::after,
ul.mainMenu li.selected a::after {
    width: 100%;
}

@media only screen and (max-width: 991px) {
    #topMenu {
        left: 0;
        width: 100%;
    }
    #navButton {
        right: 15px;
    }
    #navigation {
        position: absolute;
        top: 60px;
        right: 0px;
        margin: 0;
        width: 320px;
        height: 0;
        opacity: 0;
        background-color: #F8F8F8;
        overflow: hidden;
        box-shadow: 0 10px 10px 0 rgb(0 0 0 / 25%);
    }
    #navigation.opened {
        min-height: 250px;
        height: 100vh;
        opacity: 1;
    }
    #navButton,
    ul.mainMenu,
    ul.mainMenu li {
        display: block;
    }
    ul.mainMenu li {
        text-align: left;
    }
    ul.mainMenu li:hover a::after,
    ul.mainMenu li.selected a::after {
        width: 50%;
    }
}

@media only screen and (max-width: 480px) {
    #navigation {
        width: 100vw;
    }
}

/* ---------------------------------------------------------------------------------------------- */
/* FOOTER */
/* ---------------------------------------------------------------------------------------------- */

.footerWrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #000000;
}
.footerWrapper * {
    color: #ffffff;
}
.footerWrapper a:active,
.footerWrapper a:visited {
    color: #ffffff;
}
.footerWrapper a:hover,
.footerWrapper a:hover * {
    color: #FF0098;
    text-decoration: underline;
}

.footerWrapperInner {
    margin: 0 auto;
    padding: 75px 0;
    width: 100%;
    max-width: 1280px;
}

.footerPanels {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 8% 55px 8%;
    font-size: 15px;
    font-weight: 300;
}
.footerPanelInner {
    padding-right: 8%;
}

.footerPanel:nth-child(1) {
    width: 40%;
}
.footerPanel:nth-child(2) {
    width: 60%;
}
.footerPanel h3 {
    margin: 0 0 30px 0;
    font-size: 19px;
    font-weight: 400;
}

.footerSubpanels {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.footerSubpanel {
    width: 50%;
}

.footerLinks {
    list-style: none;
    margin: 1em 0 0 0;
    padding: 0;
}

.footerCopyright {
    text-align: center;
    font-size: 13px;
}
.footerAdmin {
    padding: 35px 8% 0 8%;
    text-align: center;
}
.footerAdmin a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 991px) {
    .footerPanel {
        width: 100% !important;
    }
    .footerPanel:not(:last-child) {
        padding-bottom: 55px;
    }
    .footerPanelInner {
        padding-right: 0;
    }
}
@media only screen and (max-width: 639px) {
    .footerSubpanel {
        width: 100%;
    }
}

/* ---------------------------------------------------------------------------------------------- */
/* HP */
/* ---------------------------------------------------------------------------------------------- */

.page-default .content-header {
    display: none;
}

/* ---------------------------------------------------------------------------------------------- */
/* HP HEADER BANNER */
/* ---------------------------------------------------------------------------------------------- */

.hpHeaderBannerItems {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
.hpHeaderBannerItems * {
    text-align: center;
    color: #000000;
}
.hpHeaderBannerItems > div {
    display: flex;
    flex-direction: row;
    width: 33.333333%;
    padding: 0 12px 0 12px;
}
.hpHeaderBannerItems > div > div {
    width: 100%;
}
.hpHeaderBannerItems .textBanner h3 {
    font-size: 48px;
    font-weight: 500;
    line-height: 125%;
}
.hpHeaderBannerItems .imgBanner {
    position: relative;
}
.hpHeaderBannerItems .imgBanner h4 {
    position: absolute;
    bottom: 20px;
    margin: 0;
    padding: 0;
    font-size: 25px;
    font-weight: 500;
    line-height: 100%;
}
.hpHeaderBannerItems .hasBg {
    display: flex;
    margin: 0 0 24px 0;
    border-radius: 20px;
    background-color: #E7E7E7;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
.hpHeaderBannerItems img {
    width: 100%;
    height: auto;
}
@media only screen and (max-width: 1199px) {
    .hpHeaderBannerItems .textBanner h3 {
        font-size: 4vw;
    }
}
@media only screen and (max-width: 991px) {
    .hpHeaderBannerItems .imgBanner h4 {
        font-size: 20px;
        bottom: 10px;
    }
}
@media only screen and (max-width: 767px) {
    .hpHeaderBannerItems .imgBanner h4 {
        font-size: 18px;
    }
}
@media only screen and (max-width: 639px) {
    .hpHeaderBannerItems > div {
        width: 50%;
    }
    .hpHeaderBannerItems > div.b1 {
        width: 100%;
    }
}
@media only screen and (max-width: 425px) {
    .hpHeaderBannerItems > div {
        width: 90% !important;
    }
    .hpHeaderBannerItems .textBanner h3 {
        font-size: 16px;
    }
    .hpHeaderBannerItems .imgBanner h4 {
        font-size: 16px;
    }
}

/* ---------------------------------------------------------------------------------------------- */
/* HP PANEL */
/* ---------------------------------------------------------------------------------------------- */

.hpPanel {
    margin: 65px auto;
    text-align: center;
}
.hpPanel * {
    color: #000000;
}
.hpPanelCaption h3 {
    margin: 0;
    padding: 0;
    font-size: 38px;
    font-weight: 400;
}
.hpPanelCaption p {
    margin: 30px 0 0 0;
    padding: 0;
    font-size: 18px;
    font-weight: 300;
}
.hpPanelItems {
    display: flex;
    flex-wrap: wrap;
}
.hpPanelItems > div {
    width: 100%;
}
.hpPanelItems > div > div {
    width: 100%;
}
.hpPanel .panelIcon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70px;
}
.hpPanel .panelIcon img {
    width: auto;
    height: auto;
    max-height: 100%;
}
.hpPanel .buttonMore {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #000000;
    border-radius: 5px;
    color: #000000;
    background: #FFFFFF;
    font-size: 15px;
    white-space: nowrap;
    line-height: 100%;
}
.hpPanel .buttonMore:hover {
    color: #FFFFFF;
    background: #000000;
    text-decoration: underline;
}
.hpPanelBottom {
    padding: 35px 0 0 0;
}
.hpPanelBottom .buttonMore {
    color: #FFFFFF;
    background: #000000;
}

@media only screen and (max-width: 767px) {
    .hpPanelCaption h3 {
        font-size: 32px;
    }
}
@media only screen and (max-width: 639px) {
    .hpPanelCaption h3 {
        font-size: 28px;
    }
}
@media only screen and (max-width: 480px) {
    .hpPanelCaption h3 {
        font-size: 24px;
    }
}
@media only screen and (min-width: 768px) {
    .hpPanelItems > div {
        width: 33.33333333%;
    }
}

/* ---------------------------------------------------------------------------------------------- */
/* PRODUCTS PANEL */
/* ---------------------------------------------------------------------------------------------- */

.productsPanel .hpPanelCaption h3 {
    margin: 0 0 45px 0;
    color: #1C1C1C;
    font-size: 46px;
    font-weight: 500;
}

.productsPanelTabs {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    margin: 0 0 25px 0;
}
.productsPanelTab {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 25px;
    margin: 0 6px 12px 6px;
    border: 1px solid #000000;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
}
.productsPanelTab.hasIcon {
    padding: 15px 25px 15px 80px;
    background-repeat: no-repeat;
    background-position: left+25px center;
}
.productsPanelTab.sheet_printing {
    background-image: url('../../img/hp_products_panel/icon_archovy_tisk.svg');
}
.productsPanelTab.large_format_printing {
    background-image: url('../../img/hp_products_panel/icon_velkoformatovy_tisk.svg');
}
.productsPanelTab.selected {
    background-color: #FFFFFF;
}

.productsPanelItems {
    display: flex;
    flex-wrap: wrap;
}
.productsPanelItems > div {
    display: flex;
    width: 25%;
}
.productsPanelItems > div > div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 12px 12px 12px 12px;
    padding: 0;
    border-radius: 15px;
    width: 100%;
}
.productsPanelItems > div > div:before,
.productsPanelItems > div > div:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    border-radius: 15px;
    background-color: #FFFFFF;
}
.productsPanelItems > div > div:before {
    width: calc(100% - 64px);
    height: 100%;
}
.productsPanelItems > div > div:after {
    width: 100%;
    height: calc(100% - 38px);
}
.productsPanelItems .panelFlags {
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 38px;
    padding: 6px 0 0 0;
    background-size: 30px 30px;
    background-image: url('../../img/hp_products_panel/products_panel_bg.svg');
    background-repeat: no-repeat;
    background-position: left bottom;
    text-align: right;
}
.productsPanelItems .panelTop {
    position: relative;
    padding: 30px 10% 20px 10%;
    z-index: 1;
}
.productsPanelItems .panelBottom {
    padding: 0 10% 25px 10%;
    z-index: 1
}
.productsPanelItems > div > div h4 {
    font-size: 21px;
    font-weight: 700;
    margin: 20px 0 15px 0;
}
.productsPanelItems > div > div p {
    font-size: 16px;
    font-weight: 400;
    margin: 15px 0 0 0;
}
.productsPanelItems .buttonMore {
    padding: 10px 16px;
    font-size: 14px;
}

.productsPanelItems .helpItem > div:before,
.productsPanelItems .helpItem > div:after {
    background-color: transparent;
}
.productsPanelItems .helpItem .panelTop {
    padding: 25% 0 20px 15%;
    text-align: left;
}
.productsPanelItems .helpItem .panelTop p {
    position: relative;
    padding: 0 0 0 33px;
    font-size: 15px;
}
.productsPanelItems .helpItem .panelTop p img {
    position: absolute;
    top: 0;
    left: 0;
}
.productsPanelItems .helpItem .buttonMore {
    background-color: transparent;
}
.productsPanelItems .helpItem .buttonMore:hover {
    background-color: #000000;
}

@media only screen and (max-width: 991px) {
    .productsPanelItems > div {
        width: 33.3333%;
    }
}
@media only screen and (max-width: 767px) {
    .productsPanelTab {
        font-size: 16px;
    }
}
@media only screen and (max-width: 639px) {
    .productsPanelItems > div {
        width: 50%;
    }
    .productsPanel .hpPanelCaption h3 {
        font-size: 36px;
    }
}
@media only screen and (max-width: 480px) {
    .productsPanel .hpPanelCaption h3 {
        font-size: 28px;
    }
    .productsPanelTab {
        font-size: 14px;
    }
}
@media only screen and (max-width: 375px) {
    .productsPanelItems > div {
        width: 100%;
    }
    .productsPanel .hpPanelCaption h3 {
        font-size: 24px;
    }
    .productsPanelTab {
        font-size: 12px;
    }
}

/* ---------------------------------------------------------------------------------------------- */
/* CONTACT PANEL */
/* ---------------------------------------------------------------------------------------------- */

.contactPanel {
    margin: 0 12px;
    padding: 50px 8% 45px 8%;
    border-radius: 15px;
    background-color: #000000;
}
.contactPanel .hpPanelCaption * {
    color: #FFFFFF;
}
.contactPanel .contactButton {
    display: inline-block;
    margin: 30px 0 0 0;
    padding: 15px 30px;
    border: 1px solid #FF0098;
    border-radius: 5px;
    color: #FFFFFF;
    background-color: #000000;
    font-size: 15px;
}
.contactPanel .contactButton:hover {
    color: #000000;
    background-color: #FF0098;
    text-decoration: underline;
}
.contactPanel.opened .contactButton {
    display: none;
}
.contactPanelForm {
    display: none;
    padding: 30px 0 0 0;
}
.contactPanel.opened .contactPanelForm {
    display: block;
}
.contactPanelForm .form-group,
.contactPanelForm .box-footer {
    background-color: inherit !important;
}
.contactPanelForm .btn-primary {
    padding: 15px 30px;
    border: 1px solid #FF0098;
    border-radius: 5px;
    color: #FFFFFF;
    background-color: #000000;
    font-size: 15px;
}
.contactPanelForm .btn-primary:hover {
    color: #000000;
    background-color: #FF0098;
    text-decoration: underline;
}
.contactPanelForm .form-control {
    border-color: #FFFFFF;
    background-color: #FFFFFF;
    border-radius: 4px;
}
.contactPanelForm .control-label * {
    color: #FFFFFF;
}
.contactPanelForm .form-group.has-error label,
.contactPanelForm .form-group.has-error .help-block {
    color: #FF0098;
}
.contactPanelForm .form-group.has-error .form-control,
.contactPanelForm .form-group.has-error .input-group-addon {
    border-color: #FF0098;
}
.contactPanelForm .box-footer {
    border: none;
}
.contactPanelForm .box-footer .control-label {
    display: none;
}
.contactPanelForm .box-footer .form-group > div:not(.control-label) {
    width: 100%;
}

.contactPanelForm .form-recaptcha .control-label {
    opacity: 0;
}
.contactPanelForm .form-recaptcha .form-control.g-recaptcha {
    padding: 0;
    min-height: 80px;
    border: transparent;
    background: transparent;
}

/* ---------------------------------------------------------------------------------------------- */
/* ADVICE PANEL */
/* ---------------------------------------------------------------------------------------------- */

.advicePanel {
    margin: 35px auto 65px auto;
}
.advicePanelItems > div {
    display: flex;
    margin: 35px 0 0 0;
    padding: 0;
}
.advicePanelItems > div > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 12px;
    padding: 0;
    border-radius: 15px;
    background-color: #FFFFFF;
}
.advicePanelItems .panelTop {
    padding: 35px 20% 30px 20%;
}
.advicePanelItems .panelBottom {
    padding: 0 20% 30px 20%;
}
.advicePanelItems > div > div h4 {
    font-size: 25px;
    font-weight: 700;
    margin: 38px 0 20px 0;
}
.advicePanelItems > div > div p {
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0 0 0;
}

/* ---------------------------------------------------------------------------------------------- */
/* BENEFIT PANEL */
/* ---------------------------------------------------------------------------------------------- */

.benefitPanel {
    margin: 65px auto 0 auto;
}
.benefitPanelItems > div {
    padding: 0;
    margin: 50px 0 0 0;
}
.benefitPanelItems > div > div {
    padding: 0 20%;
}
.benefitPanelItems > div > div h4 {
    font-size: 25px;
    font-weight: 700;
    margin: 38px 0 20px 0;
}
.benefitPanelItems > div > div p {
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0 0 0;
}

/* ---------------------------------------------------------------------------------------------- */
/* MISC */
/* ---------------------------------------------------------------------------------------------- */

#topList {
    position: absolute;
    left: -10000px;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ---------------------------------------------------------------------------------------------- */
