/* Széchenyi 2020 Logo frontend */

#szechenyi_2020_logo {
    box-sizing: border-box;
    z-index: 888888;
    transition: width 180ms ease, padding 180ms ease, background-color 180ms ease;
}

#szechenyi_2020_logo *,
#szechenyi_2020_logo *::before,
#szechenyi_2020_logo *::after {
    box-sizing: border-box;
}

#szechenyi_2020_logo .szechenyi_2020_content {
    max-height: 800px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 220ms ease, opacity 160ms ease;
}

#szechenyi_2020_logo .szechenyi_2020_content > a {
    display: block;
    line-height: 0;
}

#szechenyi_2020_logo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
}

#szechenyi_2020_logo .szechenyi_2020_toggle {
    position: absolute;
    top: -36px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    color: #0067b1;
    background: #fff;
    border: 1px solid rgba(0, 78, 137, 0.2);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -3px 12px rgba(0, 48, 84, 0.16);
    cursor: pointer;
    appearance: none;
    transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

#szechenyi_2020_logo.szechenyi-align-left .szechenyi_2020_toggle {
    right: auto;
    left: 0;
}

#szechenyi_2020_logo .szechenyi_2020_toggle:hover,
#szechenyi_2020_logo .szechenyi_2020_toggle:focus-visible {
    color: #fff;
    background: #0067b1;
    outline: none;
}

#szechenyi_2020_logo .szechenyi_2020_toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 103, 177, 0.28);
}

#szechenyi_2020_logo .szechenyi_2020_arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(2px) rotate(225deg);
    transition: transform 180ms ease;
}

#szechenyi_2020_logo.is-collapsed {
    width: 36px !important;
    min-height: 0;
    padding: 0 !important;
    background: transparent !important;
    border-width: 0 !important;
}

#szechenyi_2020_logo.is-collapsed .szechenyi_2020_content {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

#szechenyi_2020_logo.is-collapsed .szechenyi_2020_arrow {
    transform: translateY(-2px) rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
    #szechenyi_2020_logo,
    #szechenyi_2020_logo .szechenyi_2020_content,
    #szechenyi_2020_logo .szechenyi_2020_arrow {
        transition: none;
    }
}

.szechenyi-2020-block-logo {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
