/* =====================================================
   HOMEPAGE – ANIMOVANÝ BANNER
===================================================== */

.hp-velky-banner {
    position: relative;

    width: calc(100% - 3rem) !important;
    max-width: calc(100% - 3rem) !important;

    margin: 3rem auto;

    border-radius: 3rem;
    overflow: hidden;
}

/* =====================================================
   OBRÁZKY
===================================================== */

.hp-velky-banner .hp-banner-img {
    display: block;

    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 3rem;
}


/* první obrázek drží výšku banneru */

.hp-velky-banner .hp-banner-img-1 {
    position: relative;

    animation: hp-banner-1 1s steps(1, end) infinite;
}


/* druhý obrázek leží přes první */

.hp-velky-banner .hp-banner-img-2 {
    position: absolute;

    top: 0;
    left: 0;

    animation: hp-banner-2 1s steps(1, end) infinite;
}


/* =====================================================
   PŘEPÍNÁNÍ PO 0,5 SEKUNDĚ
===================================================== */

@keyframes hp-banner-1 {

    0%,
    49.999% {
        visibility: visible;
    }

    50%,
    100% {
        visibility: hidden;
    }

}


@keyframes hp-banner-2 {

    0%,
    49.999% {
        visibility: hidden;
    }

    50%,
    100% {
        visibility: visible;
    }

}

.homepage-group-title.h4 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* =====================================================
   HOMEPAGE BLOG
===================================================== */

.homepage-blog-wrapper {
    position: relative;
    left: auto !important;

    width: calc(100% - 4rem) !important;
    max-width: 1600px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .homepage-blog-wrapper {
        width: calc(100% - 3rem) !important;

        margin-left: auto !important;
        margin-right: auto !important;

        justify-content: center !important;
        justify-items: center !important;
    }

    .homepage-blog-wrapper .news-item {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

}

/* =====================================================
   HOMEPAGE WELCOME – ODSAZENÍ OD KRAJŮ
===================================================== */

.welcome-wrapper {
    width: calc(100% - 4rem) !important;
    max-width: 1600px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    box-sizing: border-box !important;
}


.welcome {
    width: 100% !important;
    max-width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;
}


/* =====================================================
   NADPIS
===================================================== */

.welcome .h1[data-testid="eshopHeader"] {
    width: 100% !important;

    text-align: center !important;

    padding-top: 0 !important;
    margin-top: 0 !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .welcome-wrapper {
        width: calc(100% - 3rem) !important;
        max-width: calc(100% - 3rem) !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

    .welcome {
        width: 100% !important;
        max-width: 100% !important;
    }

}

.close.js-close-information-msg {
    display: none !important;
}

.site-msg {
    background-color: #ff3342;
    opacity: 1 !important;
}