.content-container {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 1500px) {
    .content-container {
        flex: 0 0 auto;
        width: 930px;
    }
}

#akce-category h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--g-color-1);
    margin-bottom: 30px;
}

#akce-category {

    & {
        padding-bottom: 150px;
    }

    #pobocky-list {
        & {
            list-style: none;      /* removes bullets */
            padding-left: 0;       /* removes default left padding */
            margin: 0;
        }

        a {
            font-size: 18px;
            color: black;
        }

        a:hover {
            color: var(--g-color-1);
        }

        li {
            position: relative;
            color: var(--g-color-3);
            padding-left: 16px;
            padding-bottom: 6px;
        }

        li::before {
            content: "";
            position: absolute;
            left: 0;
            top: calc(50% - 4px);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--g-color-3);
        }
    }

    .footer-speed-dial.speed-dial {

        & {
            margin: 5px 0 45px 5px;
            padding-left: 5px;
            max-width: 284px;
        }

        @media (min-width: 768px) {
            & {
                margin: 5px 0 50px 5px;
                padding-left: 5px;
                max-width: 335px;
            }
        }

        .title {
            z-index: 999;
            font-size: 16px;
            white-space: nowrap;
            text-decoration: none;
            position: relative;
            padding: 5px 0px 0px 3px;
            -webkit-transition: 0.3s color ease;
            -o-transition: 0.3s color ease;
            transition: 0.3s color ease;
            text-transform: uppercase;
            font-weight: 900;
            color: var(--g-color-1);
        }

        @media (min-width: 768px) {
            .title {
                font-size: 20px;
                padding: 4px 6px 3px 6px;
            }
        }

        &:hover .title {
            color: var(--g-color-1);
        }

        .svgContainer {
            width: 22px;
            height: 22px;
        }

        @media (min-width: 768px) {
            .svgContainer {
                width: 28px;
                height: 28px;
            }

        }

        .title svg {
            transition: 0.3s color ease;
            color: var(--g-color-1);
            padding-bottom: 4px;
        }

        &:hover .title svg {
            color: var(--g-color-1);
        }

        .speed-dial-deco {
            position: absolute;
            width: calc(50% + 20px);
            top: -12px;
            overflow: hidden;
        }

        .speed-dial-deco svg {
            width: 420px;
        }

        .speed-dial-deco.left-border {
            left: -20px;
        }

        .speed-dial-deco.right-border {
            right: -20px;
        }

        .speed-dial-deco.right-border svg {
            left: calc(100% - 434px);
            position: relative;
        }

        .speed-dial-deco .to_include_speed-dial {
            color: var(--g-color-3);
        }

        .speed-dial-deco svg path {
            fill: var(--g-color-3);
            transition: fill 0.3s ease-in-out;
        }

        &:hover .speed-dial-deco svg path {
            fill: white;
        }
    }

    .contact-info {
        padding-bottom: 20px;
        font-size: 16px;
        display: flex;
        gap: 16px;
    }
    @media (min-width: 768px) {
        .contact-info {
            font-size: 18px;
            gap: 28px;
        }
    }
}


