/* Fonts */
@font-face {
    font-family: 'MagistralBlackC';
    src: url('/fonts/MagistralBlackC.woff2') format('woff2'),
    url('/fonts/MagistralBlackC.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

/* Reset */
*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    box-sizing: border-box;
}

a {
    text-decoration-skip-ink: none;
}

a,
a:hover {
    text-decoration: none;
}

button {
    cursor: pointer;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 54px;
    color: #fff;
    background: #000;
    z-index: 1000;
}

.navbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar__content-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 35%;
}

.navbar__content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.navbar__content-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 35%;
}

.navbar__source-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin: 0 15px 0 0;
    color: #000;
    background: #fff;
    border-radius: 50%;
}

.navbar__source-btn svg {
    display: block;
    width: 16px;
    height: 16px;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.navbar__logo-img {
    max-width: 100%;
    height: auto;
}

.navbar__logo-img--full {
    display: block;
    width: 115px;
}

.navbar__logo-img--compact {
    display: none;
    width: 46px;
}

.navbar__dropdown-toggle {
    display: block;
    width: 3em;
    height: 2em;
    font-size: 10px;
}

.navbar__dropdown-toggle span {
    display: block;
    width: 100%;
    height: 0.4em;
    background: currentColor;
}

.navbar__dropdown-toggle span + span {
    margin-top: 0.4em;
}

.navbar__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 54px);
    color: #fff;
    background: #000;
    overflow: auto;
}

.navbar__dropdown-items {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar__dropdown-item {
    padding: 25px 0;
    font: normal 400 14px/1 Arial, sans-serif;
    text-align: center;
    border-top: 1px solid #fff;
    transition: all 0.3s;
}

.navbar__dropdown-item:hover {
    color: #ca0f0a
}

.navbar__share-button {
    color: inherit;
    background: none;
    border: none;
}

.navbar__date {
    font-size: 10px;
    margin-left: 10px;
}

.navbar__share-button svg {
    display: block;
    fill: currentColor;
}

@media (max-width: 640px) {
    .navbar__logo-img--full {
        display: none;
    }

    .navbar__logo-img--compact {
        display: block;
    }
}

@media (max-width: 320px) {
    .navbar__dropdown-toggle {
        font-size: 8px;
    }
}