.section__header-menu__desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem .5rem;
    gap: .5rem;
}

.section__header-menu__mobile {
    display: none;
}

.section_header-navbar-language {
    background: linear-gradient(90deg, #151749 25.5%, #004BAA 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0px 3rem;
}

.section_header-navbar-language__date {
    font-weight: 500;
    font-size: 14px;
    line-height: auto;
    color: #FFFFFF;
}

.section_header-navbar-language__flag {
    display: flex;
    align-items: start;
    gap: .6rem;
}

.header-outside-content__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.section_header-navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.section_header-navbar-nav .navbar-brand {
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: auto !important;
    color: #1A1A25 !important;
}

.section_header-navbar-nav .nav-item .nav-link {
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: auto !important;
    color: #1A1A25 !important;
}

.section_header-navbar-nav .nav-item.nav-item-with-dot {
    position: relative !important;
}

.section_header-navbar-nav .nav-item.nav-item-with-dot .nav-link {
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: auto !important;
    color: #FFFFFF !important;
    background-color: #15184B !important;
    border-radius: 10px !important;
    padding: 2px 10px 5px 10px !important;
}

.section_header-navbar-nav .nav-item.nav-item-with-dot span {
    background-color: red !important;
    top: -5px !important;
    left: -10px !important;
}

.section_header-navbar-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 321px;
    padding: 0 !important;
    margin: 0 !important;
}

.section_header-navbar-search form {
    width: 100% !important;
}

.section_header-navbar-search form .form-group {
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
}

.section_header-navbar-search form .form-group .form-control {
    height: 100% !important;
    font-size: 16px !important;
    padding: 6px 4px 6px 44px !important;
    margin: 0 !important;
    border: 1px solid #B7B7B7 !important;
    border-radius: 16px !important;
}

.section_header-navbar-search form .form-group a.btn {
    position: absolute !important;
    top: 2.5px !important;
    left: 5px !important;
}

.section__header-burger__mobile {
    display: none;
}

.section__header-burger-overlay__mobile {
    display: none;
}

.section__header-search__mobile {
    display: none;
}

.section__header-search-overlay__mobile {
    display: none;
}

@media (min-width: 0px) and (max-width: 1200px) {
    .section__header-menu__desktop {
        display: none;
    }

    .section__header-menu__mobile {
        display: flex;
        flex-direction: column;
        padding: .5rem;
        gap: .5rem;
    }

    .section_header-navbar-language {
        display: none;
    }

    .section__header-burger__mobile {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 277px;
        transition: left 0.3s ease;
        z-index: 1030;
        color: #fff;
        overflow-y: auto;
        background: linear-gradient(180deg, #151749 0%, #004BAA 100%);
    }

    .section__header-burger__mobile.active {
        left: 0;
    }

    .section__header-burger-container__mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        width: 100%;
        padding: 5rem 0;
    }

    .section__header-burger-logo__mobile {
        display: flex;
        justify-content: center;
        margin-bottom: 3rem;
    }

    .section__header-burger-nav__mobile {
        text-align: center;
        padding: .5rem;
    }

    .section__header-burger-nav-link__mobile {
        padding: 0;
        margin: 0;
        text-decoration: none;
        font-weight: 500;
        font-size: 20px;
        line-height: auto;
        color: #FFFFFF
    }

    .section__header-burger-nav-link-live-tv__mobile {
        padding: 0;
        margin: 0;
        text-decoration: none;
        font-weight: 700;
        font-size: 20px;
        line-height: auto;
        color: #151749;
        background-color: #FFFFFF;
        border-radius: 10px;
        padding: .1rem 1rem;
    }

    .section__header-burger-nav-link-publisher__mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        text-decoration: none;
        font-weight: 500;
        font-size: 20px;
        line-height: auto;
        color: #FFFFFF;
        gap: .5rem;
    }

    .section__header-burger-nav-flag__mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .section__header-burger-overlay__mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1029;
        display: none;
    }

    .section__header-burger-overlay__mobile.active {
        display: block;
    }

    .section__header-search__mobile {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%;
        transition: left 0.3s ease;
        z-index: 1030;
        overflow-y: auto;
        background: #FFFFFF;
    }

    .section__header-search__mobile.active {
        left: 0;
    }

    .section__header-search-container__mobile {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        padding: .5rem;
        gap: 1rem;
    }

    .section__header-search-overlay__mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1029;
        display: none;
    }

    .section__header-search-overlay__mobile.active {
        display: block;
    }
}
