@charset "utf-8";

:root {
    --color-primary: #E94A44;
    --color-primary-active: #BA3B36;
    --color-primary-half: rgba(233, 74, 68, 0.5);
    --color-secondary: #1FAE2D;
    --color-secondary-active: #198B24;
    --color-black: #01010c;
    --color-black-half: rgba(1, 1, 12, 0.5);
    --color-black-quarter: rgba(1, 1, 12, 0.25);
    --color-black-hover: #364753;
    --color-yellow: #FFC500;
    --color-blue: #49B3FF;
    --color-blue-darker: #0082E0;
    --color-blue-dark: #0076CC;
    --color-blue-active: #0094FF;
    --color-blue-active-half: rgba(0, 148, 255, 0.5);
    --color-white: #fff;
    --color-white-half: rgba(255,255,255,0.5);
    --color-grey: #d9d9d9;
    --color-grey-light: #f0f0f0;
    --color-grey-light-active: #DDDDDD;
    --color-grey-dark: #999;
    --color-grey-mid: #a1a1a1;
    --color-grey-mid2: #A0AAB6;
    --color-grey-mid3: #727E87;
    --color-grey-blue: #DAE2EC;
    
    
    --color-dark-hover: rgba(158, 170, 178, 0.24);
    
    --icons: "olg-icons";

    --font-primary: "Inter";
}

*,
*:before,
*:after {
    box-sizing: border-box;
}
html, body {
    min-width: 320px;
}
body {
    font-family: 'Inter';
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    min-height: 100%;
    background: var(--color-white);
    cursor: crosshair;
}
@media screen and (max-width: 767px) {
    body.body_overflow_mobile {
        overflow: hidden;
    }
}
@media screen and (min-width: 768px) {
    body.body_overflow_desktop {
        overflow: hidden;
    }
}

#page-frame {
    flex: 1 1 auto;
    display: flex;
    flex-flow: column nowrap;
    min-height: 100vh;
    width: 100%;
    position: relative;
}
#page-frame__wrapper {
    display: flex;
}
#page-frame__content {
    flex: 1 1 auto;
    transition: transform 0.5s ease;
    position: relative;
}

#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    min-width: 320px;
    /*background: var(--color-black);*/
}

.header-main__inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.meteorite-block {
    padding: 4px;
    background-color: var(--color-white-half);
    border-radius: 4px;
    cursor: pointer;
}
.meteorite-icon {
    display: block;
    width: 32px;
    height: 32px;
    background: url(../images/meteorite.png) no-repeat center center;
}

.settings-main {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #f2f2f2;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}
.settings-main__inner {
    max-height: 100%;
    overflow-y: auto;
}
.settings-main__link {
    display: block;
    padding: 15px 20px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
}
.settings-main__link:hover {
    color: var(--color-black);
}
.settings-main__item:not(:first-child) .settings-main__link {
    border-top: 1px solid #eee;
}
.settings-main__toggle {
    position: absolute;
    width: 28px;
    height: 28px;
    padding: 0 2px;
    z-index: 10;
    cursor: pointer;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.settings-main__toggle__line {
    width: 100%;
    height: 3px;
    background: var(--color-white-half);
    position: relative;
    border-radius: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.settings-main__toggle__line + .settings-main__toggle__line {
    margin-top: 5px;
}
.settings-main__toggle_active .settings-main__toggle__line:first-child {
    transform: rotate(45deg);
    top: 8px;
}
.settings-main__toggle_active .settings-main__toggle__line:last-child {
    transform: rotate(-45deg);
    top: -8px;
}
.settings-main__toggle_active .settings-main__toggle__line:nth-child(2) {
    opacity: 0;
    transition: opacity 0s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 992px) {
    .settings-main__item {
        margin: 0 0 0 32px;
    }
    .settings-main__link {
        font-size: 16px;
    }
}


main {
    position: relative;
    height: 100vh;
    background-color: var(--color-black);
    overflow: hidden
}
@media screen and (min-width: 768px) {

}