@font-face {
    font-family: 'gillsans';
    src: url('../fonts/gillsansc.eot');
    src: url('../fonts/gillsansc.eot') format('embedded-opentype'),
        url('../fonts/gillsansc.woff2') format('woff2'),
        url('../fonts/gillsansc.woff') format('woff'),
        url('../fonts/gillsansc.ttf') format('truetype'),
        url('../fonts/gillsansc.svg#gillsansc') format('svg');
    font-weight: 400;
}

@font-face {
    font-family: 'GillSans';
    src: url('../fonts/gillsanscbold.eot');
    src: url('../fonts/gillsanscbold.eot') format('embedded-opentype'),
        url('../fonts/gillsanscbold.woff2') format('woff2'),
        url('../fonts/gillsanscbold.woff') format('woff'),
        url('../fonts/gillsanscbold.ttf') format('truetype'),
        url('../fonts/gillsanscbold.svg#gillsanscbold') format('svg');
    font-weight: bold;
}

body, html {
    margin: 0;
    min-height: 100%;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

* {
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    background: #f9f9f9 url(../img/bg.png) no-repeat 0 0;
    background-size: cover;
}

@media (max-width: 767px) {
    body {
        background: #f9f9f9 url(../img/bg-m.png) no-repeat 0 0;
        background-size: cover;
    }
}

a {
    transition: 0.2s;
}

svg {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.header {
    width: 100%;
    background: #fff;
    border-bottom: 4px solid #929292;
}

.header__inner {
    max-width: 1040px;
    padding: 32px 40px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.header__inner.media {
    max-width: 1040px;
}

@media (max-width: 767px) {
    .header__inner {
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 32px;
        padding-bottom: 12px;
    }
}

.header__inner .logo {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header__inner .logo {
        max-width: 30%;
    }

    .header__inner.media .logo {
        max-width: 30%;
    }
}

.logo img,
.logo svg {
    display: block;
    max-width: 100%;
}

.header__title {
    font-family: 'GillSans', sans-serif;
    font-weight: bold;
    font-size: 26px;
    color: #1A1A18;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
    .header__title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .header__title {
        font-size: 12px;
        margin-left: 25px;
    }

    .header__inner.media .header__title {
        margin-left: 0;
    }

    .header__title {
        top: auto;
        bottom: 25px;
        transform: translateX(-50%);
    }

}

@media (max-width: 576px) {
    .header__title {
        margin-left: 10px;
    }
}

.header-nav {
    width: 185px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


@media (max-width: 767px) {
    .header-nav {
        width: auto;
    }
}

.header-nav__hashtags p {
    margin: 0;
    margin-right: 18px;
    font-family: 'GillSans';
    font-size: 20px;
    font-weight: 700;
    color: #D60524;
}

.header-nav__hashtags p:first-child {
    margin-bottom: 5px;
    color: #1A1A18;
}

@media (max-width: 1024px) {

    .header-nav__hashtags p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .header-nav__hashtags p {
        font-size: 12px;
        margin-right: 0;
    }

    .header-nav__hashtags p:first-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .header-nav__hashtags p {
        font-size: 10px;
    }
}

.header-nav__btns {
    display: flex;
    align-items: flex-end;
}

.header-nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    height: 48px;
    font-size: 16px;
    font-family: 'GillSans', sans-serif;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 767px) {
    .header-nav__btn {
        font-size: 12px;
        height: 25px;
        padding: 2px 8px 0;
        margin-left: 4px;
    }
}

.exit {
    margin-left: 18px;
    width: 120px;
    background: #D60524;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .exit {
        width: auto;
        margin-left: 4px;
    }
}

.lang {
    width: 67px;
    background: #CBD1D7;
    color: #1A1A18;
}

@media (max-width: 767px) {
    .lang {
        width: auto;
        margin-left: 10px;
    }
}

.page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
}

.page__main {
    display: flex !important;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    position: relative;
}

#exit {
    cursor: pointer;
}

.disable {
    display: none !important;
}

.MuiCircularProgress-root {
    color: #D60524 !important;
}

.CircularContainer svg circle {
    stroke: #D60524;
}