/* // BLOCKS ///////////////////////////////// */
.f {
    font-family: "Cabin Sketch";
}

.block {
    position: relative;
    background-color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.02);
}

.block_top {
    font-weight: 500;
    color: var(--head);
    line-height: 50px;
    padding: 0 25px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.block_main {
    padding: 25px;
}

.block_main p {
    color: var(--text);
    font-size: 0.875em;
    line-height: 22px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.block_main p:first-child {
    margin-top: unset;
}

.block_main p:last-child {
    margin-bottom: unset;
}

/* /////////////////////////////////////////// */

/* // FRONT ////////////////////////////////// */
.front {
    position: absolute;
    width: 100%;
    height: 83%;
    background-color: var(--smoke);
    /*display: flex;*/
    overflow: hidden;
}

.front_side {
    position: relative;
    height: 100%;
    width: 200px;
}

.front_center {
    position: relative;
    width: 100%;
    height: 100%;
}

.front_content {
    height: calc(100% - 70px);
    overflow: auto;
    padding-top: 20px;
}

/* //////////////////////////////////////////// */

/* // SIDE MENU  ////////////////////////////// */
.front_side_wrapper {
    width: inherit;
}

.side_logo {
    display: flex;
    height: 50px;
    align-items: flex-end;
    padding-left: 30px;
    margin-bottom: 40px;
}

.side_logo label {
    width: 50px;
    height: 42px;
    background-image: url(/assets/img/main/logo.svg);
    background-repeat: no-repeat;
}

.side_logo span {
    font-family: 'Raleway', sans-serif;
    font-size: 1.125em;
    font-weight: 700;
    margin-left: 10px;
    white-space: nowrap;
    color: var(--text);
}

nav ul {
    padding-left: 30px;
}

.side_menu_item {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    --menu-color: var(--gray);
    position: relative;
    color: var(--menu-color);
    font-size: 0.875em;
    margin-bottom: 25px;
    white-space: nowrap;
}

.side_menu_item a {
    color: inherit;
    display: inline-flex;
    align-items: center;
}

.side_menu_item i {
    position: relative;
    background: var(--menu-color);
    --size: 15px;
    margin-right: 15px;
}

.active_menu_item {
    --menu-color: var(--blue);
}

/* /////////////////////////////////////////// */

/* // TOP BAR //////////////////////////////// */
.top_bar {
    position: relative;
    z-index: 5;
}

.top_bar_wrapper {
    display: flex;
    justify-content: space-between;
    height: 70px;
    width: inherit;
}

.top_bar_pos {
    display: flex;
    align-items: center;
}

.top_bar_expand {
    display: none;
}

.top_bar_expand i {
    --size: 17px;
    background: var(--head);
    vertical-align: text-top;
    pointer-events: none;
    margin: 10px 20px 10px 0;
}

.top_bar_title {
    font-size: 1.50em;
    font-weight: 500;
    color: var(--head);
}

.top_bar_user {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: inherit;
}

.top_bar_avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.top_bar_username {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875em;
    font-weight: 500;
    color: var(--gray);
    margin-right: 20px;
    pointer-events: none;
}

.top_bar_dropmenu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100%;
    background-color: var(--white);
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.02);
    display: none;
    z-index: 10;
}

.top_bar_dropmenu li {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.750em;
    cursor: pointer;
}

.top_bar_dropmenu li:hover {
    background-color: var(--smoke);
}

.top_bar_dropmenu li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    color: var(--gray);
}

.top_bar_dropmenu i {
    --size: 13px;
    background: var(--gray);
    margin-right: 20px;
}

.top_bar_dropmenu li:hover i {
    background: var(--accent);
}

.top_bar_user:hover .top_bar_dropmenu {
    display: block;
}

/* /////////////////////////////////////////// */

/* // HOME /////////////////////////////////// */
.daily__block {
    position: relative;
    margin-bottom: 20px;
}

.daily__rotation {
    display: inline-flex;
    width: 100%;
}

.daily__events {
    position: relative;
    margin: 0;
    width: 50%;
    background-color: var(--white);
    padding: 20px;
    color: var(--gray);
    display: flex;
    flex-flow: column;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.02);
}

.daily__events:first-child {
    margin-right: 20px;
}

.daily__events-title {
    font-size: 1.25em;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--head);
}

.daily__events-type {
    font-size: 0.875em;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.daily__events-desc {
    font-size: 0.875em;
    line-height: 20px;
    margin-bottom: 30px;
}

.daily__events-push {
    margin-top: auto;
}

.daily__events-progress {
    position: relative;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.daily__events-progress:before {
    position: absolute;
    content: '';
    width: 100%;
    background-color: var(--silver);
    height: inherit;
    border-radius: inherit;
}

.daily__events-status {
    position: relative;
    font-size: 0.750em;
    font-weight: 700;
    color: var(--gray);
    margin-top: -17px;
    text-align: right;
}

.daily__events-progressline {
    height: 5px;
    margin-top: 4px;
    border-radius: 3px;
}

.daily__events-tags {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.daily__events-timer {
    padding: 6px 10px;
    font-weight: 500;
    font-size: 0.750em;
    color: var(--gray);
    border-radius: 3px;
    background-color: var(--silver);
    transition: .5s;
}

.daily__events-timer i {
    --size: 13px;
    background: var(--gray);
    vertical-align: text-top;
    margin-right: 5px;
}

.daily__events-timer-yellow {
    color: var(--gold);
    background-color: rgba(255,240,224,1);
}

.daily__events-timer-yellow i {background: var(--gold); }

.daily__events-timer-red {
    color: var(--red);
    background-color: rgba(255,235,235,1);
}

.daily__events-timer-red i {background: var(--red); }

.daily__events-prize {
    font-weight: 700;
    font-size: 1em;
    color: var(--head);
    display: flex;
    align-items: center;
}

.daily__events-prize .score-badge {
    width: 16px;
    height: 26px;
    background-image: url(/assets/img/main/points.svg);
    background-repeat: no-repeat;
    margin-left: 10px;
}

.daily__block-nav {
    display: none;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.daily__block-nav li {
    width: 6px;
    height: 6px;
    background-color: var(--silver);
    margin: 0 4px;
    border-radius: 50%;
    transition: .2s ease-in;
}

.daily__block-nav-active {
    transform: scale(1.4);
    background-color: var(--blue)!important;
}

/* Р‘Р»РѕРє - РЎРїРёСЃРѕРє Р»РёРґРµСЂРѕРІ */
.leaderboards__block {
    position: relative;
    margin-bottom: 20px;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 2%);
}

.leaderboards__bar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.leaderboards__bar span {
    font-size: 0.875em;
    font-weight: 500;
    color: var(--text);
}

.leaderboards__bar ul {
    display: flex;
    align-items: center;
}

.leaderboards__bar li {
    text-align: center;
    color: var(--text);
    padding: 10px 16px;
    font-size: 0.750em;
    font-weight: 500;
    cursor: pointer;
    margin-left: 10px;
    border-bottom: 2px solid transparent;
}

.leaderboards__bar-active {
    border-color: var(--blue)!important;
    cursor: default!important;
}

.leaderboards__list {
    overflow-x: auto;
}

.leaderboards__list table {
    min-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-spacing: unset;
    color: var(--gray);
    text-align: left;
}

.leaderboards__list table tr span:before {
    display: inline-block;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 1px 10px 1px 0;
}

.leaderboards__list table tr:nth-child(2) span:before {
    background-color: gold;
}

.leaderboards__list table tr:nth-child(3) span:before {
    background-color: silver;
}

.leaderboards__list table tr:nth-child(4) span:before {
    background-color: darkorange;
}

.leaderboards__list table th {
    min-width: 100px;
    padding: 8px 10px;
    font-size: 0.750em;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.leaderboards__list table th:first-child {
    min-width: 50px;
}

.leaderboards__list table th:nth-child(2) {
    width: 100%;
}

.leaderboards__list table th:nth-child(3) {
    padding-left: 20px;
}

.leaderboards__list table th:last-child {
    text-align: right;
}

.leaderboards__list table td {
    padding: 6px 10px;
    font-size: 0.875em;
}

.leaderboards__list table td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--text);
}

.leaderboards__list table img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 15px;
}

.leaderboards__list .level-badge {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 20px;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-image: var(--link);
    mask-image: var(--link);
}

.leaderboards__list .score-badge {
    display: inline-block;
    width: 12px;
    height: 20px;
    vertical-align: middle;
    background-image: url(/assets/img/main/points.svg);
    background-repeat: no-repeat;
    margin-left: 7px;
}

/* Р‘Р»РѕРє - РџРѕРґРґРµСЂР¶Р°С‚СЊ */
.donate__block {
    position: relative;
    background-color: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 2%);
}

.donate__block a {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    width: 100%;
    text-align: center;
    font-size: 0.875em;
    font-weight: 500;
    background-color: #FFDB4D;
    color: var(--text);
    padding: 12px 20px;
}

/* /////////////////////////////////////////// */

/* // TRAINERS /////////////////////////////// */
.game-card {
    padding: 20px;
    background-color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.02);
}

.game-card__header {
    display: flex;
    align-items: center;
}

.game-card__logo {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    margin-right: 15px;
}

.game-card__type {
    font-size: 1.125em;
    color: var(--text);
    font-weight: 500;
}

.game-card__info {
    font-size: 0.875em;
    color: var(--gray);
}

.game-card__desc {
    font-size: 0.875em;
    color: var(--gray);
    margin: 15px 0;
    line-height: 20px;
}

.game-card__push {
    margin-top: auto;
}

.game-card a {
    display: inline-block;
    background-color: var(--silver);
    color: var(--text);
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.750em;
    border-radius: 3px;
}

.game-card a:hover {
    background-color: var(--bgcolor);
    color: var(--color);
}

/* /////////////////////////////////////////// */

/* // ARTICLES /////////////////////////////// */
.blogpost {
    margin-bottom: 30px;
    padding-bottom: 25px;
}

.blogpost__img {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-bottom: 15px;
}

.blogpost__tags {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.blogpost__tags a {
    display: inline-block;
    background-color: var(--text);
    font-size: 0.750em;
    padding: 4px 10px;
    border-radius: 3px;
    color: var(--white);
    margin-right: 10px;
    transition: .2s;
}

.blogpost__tags a:hover {
    background-color: var(--blue);
}

.blogpost__readtime {
    display: flex;
    align-items: center;
    font-size: 0.875em;
    font-weight: 500;
    color: var(--head);
}

.blogpost__readtime i {
    --size: 13px;
    margin-right: 6px;
    background: var(--head);
}

.blogpost__title {
    font-size: 1.25em;
    color: var(--head);
    font-weight: 500;
    margin-bottom: 10px;
}

.blogpost__text {
    font-size: 0.875em;
    color: var(--gray);
    line-height: 20px;
    margin-bottom: 10px;
}

.blogpost__read a {
    font-size: 0.875em;
}

.sidebar {
    padding: 0 0 20px 20px;
}

.sidebox {
    margin-bottom: 25px;
}

.sidebox:last-child {
    margin-bottom: 0;
}

.sidebox__header {
    font-size: 1.125em;
    margin-bottom: 20px;
    color: var(--head);
}

.sidebox__header:after {
    content: "";
    display: block;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--blue);
    margin-top: 15px;
}

.sidebox__category {
    position: relative;
}

.sidebox__category li {
    color: var(--gray);
    font-size: 0.875em;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.sidebox__category li:last-child {
    margin-bottom: unset;
    padding-bottom: unset;
    border-bottom: unset;
}

.sidebox__category-active {
    color: var(--blue)!important;
}

.sidebox__posts-element {
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: var(--blue);
}

.sidebox__posts-element:last-child {
    margin-bottom: unset;
    padding-bottom: unset;
    border-bottom: unset;
}

.sidebox__posts-element div {
    position: relative;
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    border-radius: 3px;
}

.sidebox__posts-element a {
    display: block;
    font-weight: 500;
    color: var(--head);
    font-size: 1em;
    line-height: 22px;
    transition: .2s;
}

.sidebox__posts-element a:hover {
    color: var(--accent);
}
/* /////////////////////////////////////////// */

/* // ARTICLES LOADING /////////////////////// */
.blogpost-load {
    margin-bottom: 30px;
    -webkit-animation: 3s animTheoryLoad infinite linear;
    animation: 3s animTheoryLoad infinite linear;
}

.blogpost-load__round {
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--silver);
    border-radius: 6px;
    margin-bottom: 15px;
}

.blogpost-load__round:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    border: 5px solid transparent;
    border-right: 5px solid var(--gray);
    border-bottom: 5px solid var(--gray);
    border-radius: 50%;
    -webkit-animation: 3s animTheoryRotate infinite linear;
    animation: 3s animTheoryRotate infinite linear;
}

.blogpost-load__cat {
    background-color: var(--silver);
    height: 20px;
    width: 25%;
    border-radius: 3px;
    margin-bottom: 10px;

}

.blogpost-load__title {
    background-color: var(--silver);
    height: 30px;
    width: 50%;
    border-radius: 3px;
    margin-bottom: 10px;
}

.blogpost-load__text li {
    background-color: var(--silver);
    height: 10px;
    width: 100%;
    border-radius: 3px;
    margin: 10px 0;
}

@-webkit-keyframes animTheoryLoad {
    from { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes animTheoryLoad {
    from { opacity: 1; }
    50% { opacity: 0; }
}

@-webkit-keyframes animTheoryRotate {
    from { transform: rotate3d(0,0,1, 0deg); }
    to { transform: rotate3d(0,0,1, 360deg); }
}

@keyframes animTheoryRotate {
    from { transform: rotate3d(0,0,1, 0deg); }
    to { transform: rotate3d(0,0,1, 360deg); }
}

/* /////////////////////////////////////////// */

/* // APP SIGN /////////////////////////////// */
.auth__header {
    color: var(--head);
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 20px;
}

.auth__desc {
    color: var(--gray);
    font-size: 0.875em;
    margin-bottom: 40px;
    line-height: 22px;
}

/* inputs */
.auth__form {
    position: relative;
}

.auth__form label {
    display: block;
    color: var(--text);
    font-size: 0.750em;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth__form-input {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 12px 15px;
    background-color: var(--white);
    color: var(--text);
    margin-bottom: 20px;
    font-size: 0.875em;
    border-radius: 3px;
}

.auth__form-submit {
    width: 100%;
    padding: 12px 30px;
    background-color: var(--blue);
    color: var(--white);
    font-size: 0.875em;
    font-weight: 400;
    cursor: pointer;
    border-radius: 3px;
    border: unset;
    transition: .5s;
    margin-top: 20px;
}

.auth__form-submit:hover {
    background-color: var(--accent);
}

.auth__form-checkbox {
    -webkit-appearance: auto;
    margin-right: 8px;
    vertical-align: top;
}

.auth__extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--blue);
    margin-bottom: 20px;
}

.auth__extra label {
    margin-bottom: unset;
    font-weight: unset;
    font-size: 0.850em;
}

.auth__extra a {
    font-size: 0.850em;
}

.form_error {
    color: var(--red);
    font-size: 0.750em;
    font-weight: 500;
    margin: -10px 0 20px 0;
}

.auth_more {
    margin: 20px 0;
    text-align: center;
}

.auth_more p {
    line-height: unset;
    margin: unset;
}

.auth_more a {
    color: var(--blue);
}
/* /////////////////////////////////////////// */

/* // PROFILE PAGE /////////////////////////// */
.profile__welcome {
    font-weight: 500;
    color: var(--head);
    font-size: 1.75em;
    margin-bottom: 40px;
}

.profile__welcome span {
    display: block;
    color: var(--gray);
    font-weight: 400;
    font-size: 0.6em;
    margin-top: 5px;
}

.profile__block {
    position: relative;
    background-color: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.02);
}

.profile__block-header {
    font-size: 0.875em;
    font-weight: 500;
    color: var(--head);
    margin-bottom: 20px;
}

.profile__block-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* РђРІР°С‚Р°СЂ */
.profile__avatar {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 3px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.02);
}

/* РљРЅРѕРїРєРё */
.profile__button {
    margin-bottom: 20px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.02);
}

.profile__button a {
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 0.875em;
    font-weight: 500;
    background-color: var(--text);
    color: var(--white);
    padding: 12px 10px;
    border-radius: 3px;
    transition: .2s;
}

.profile__button a:hover {
    background-color: var(--blue);
}

.profile__button i {
    --size: 14px;
    background: var(--white);
    margin-right: 10px;
}

/* Р‘Р»РѕРє - Р¦РµР»СЊ */
.profile__target-side {
    margin-bottom: 20px;
}

.profile__target-side ul {
    text-align: center;
}

.profile__target-side li:first-child {
    font-size: 1.750em;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.profile__target-side li {
    font-size: 0.875em;
    font-weight: 500;
    color: var(--gray);
}

.profile__target-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile__target-buttons button {
    cursor: pointer;
    padding: 0;
    margin: 0 5px;
    background: unset;
    border: unset;
}

.profile__target-buttons i {
    --size: 14px;
    background: var(--gray);
}

.profile__target-buttons i:hover {
    background: var(--accent);
}

/* Р‘Р»РѕРє - РћР±С‰РёР№ СЃС‡С‘С‚ */
.profile__score {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile__score-points {
    color: var(--text);
    font-size: 2.5em;
    font-weight: 700;
}

.profile__score .score-badge {
    display: inline-block;
    width: 32px;
    height: 50px;
    background-image: url(/assets/img/main/points.svg);
    background-repeat: no-repeat;
    margin-right: 15px;
}

.profile__score-header {
    font-size: 0.875em;
    font-weight: 500;
    color: var(--head);
    margin-bottom: 10px;
}

.profile__score-history li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.875em;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.profile__score-history li:last-child {
    border-bottom: unset;
    padding-bottom: unset;
}

.profile__score-history span {
    font-weight: 500;
}

.profile__score-history span:after {
    display: inline-block;
    content: '';
    width: 12px;
    height: 20px;
    vertical-align: middle;
    background-image: url(/assets/img/main/points.svg);
    background-repeat: no-repeat;
    margin-left: 7px;
}

/* Р‘Р»РѕРє - РЎС‚Р°С‚РёСЃС‚РёРєР° */
.profile__stats-type {
    color: var(--head);
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.profile__stats-logo {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    margin-right: 15px;
}

.profile__stats ul {
    margin-bottom: 20px;
}

.profile__stats ul:last-child {
    margin-bottom: unset;
}

.profile__stats li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.875em;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.profile__stats li:last-child {
    border-bottom: unset;
}

.profile__stats li span {
    font-weight: 500;
}

.profile__stats .score-badge {
    display: inline-block;
    width: 12px;
    height: 20px;
    vertical-align: middle;
    background-image: url(/assets/img/main/points.svg);
    background-repeat: no-repeat;
    margin-left: 7px;
}

/* Р‘Р»РѕРє - РЈСЂРѕРІРµРЅСЊ */
.profile__level-badge {
    position: relative;
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.profile__level-badge label {
    position: absolute;
    width: 200px;
    height: 100px;
    -webkit-mask-size: cover;
    mask-size  : cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-image: var(--link);
    mask-image: var(--link);
}

.profile__level-badge span {
    position: relative;
    color: var(--silver);
    font-size: 2em;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(41, 41, 41, 0.5);
}

.profile__level-exp {
    position: relative;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background-color: var(--silver);
    margin-bottom: 10px;
}

.profile__level-exp span {
    position: relative;
    display: block;
    height: inherit;
    border-radius: inherit;
    background-color: var(--green);
    width: var(--progress);
}

.profile__level-next {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.750em;
    color: var(--gray);
}

.profile__level-next span {
    font-weight: 700;
    color: var(--text);
}

.profile__level-next span:after {
    display: inline-block;
    content: '';
    width: 12px;
    height: 20px;
    vertical-align: middle;
    background-image: url(/assets/img/main/points.svg);
    background-repeat: no-repeat;
    margin-left: 7px;
}

/* Р РµР№С‚РёРЅРі */
.profile__rating-pos {
    display: block;
    color: var(--head);
    font-size: 1.750em;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile__rating-pos span {
    color: var(--blue);
    font-size: 0.535715em;
    font-weight: 500;
    margin-bottom: 5px;
    margin-left: 10px;
}

.profile__rating-type {
    font-size: 0.875em;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 20px;
}

.profile__rating-type:last-child {
    margin-bottom: unset;
}

/* edit */
.edit__profile-avatar {
    position: relative;
    width: 84px;
    height: 84px;
    background-color: var(--white);
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.edit__profile-reset {
    color: var(--gray);
    font-size: 0.875em;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edit__profile-reset:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.edit__profile-reset button {
    background-color: var(--white);
    color: var(--text);
    padding: 5px 25px;
    font-weight: 500;
    font-size: 0.875em;
    text-align: center;
    cursor: pointer;
    border: 1px solid var(--gray);
}

.edit__profile-reset button:hover {
    color: var(--red);
    border: 1px solid var(--red);
}

.edit__form-submit {
    padding: 10px 20px;
    background-color: var(--blue);
    color: var(--white);
    font-size: 0.750em;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
    border: unset;
    transition: .2s;
}

.edit__form-submit:hover {
    background-color: var(--accent);
}

/* /////////////////////////////////////////// */

/* // ABOUT PAGE ///////////////////////////// */

/* about */
.app_about {
    color: var(--blue);
    font-size: 0.875em;
    font-weight: 500;
    line-height: 22px;
    margin-top: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
}

.app_about:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0 0 0 0;
}

.app_about span {
    color: var(--text);
    display: block;
    font-weight: 400;
}

/* /////////////////////////////////////////// */

/* // Google reCAPTCHA /////////////////////// */

.grecaptcha-badge {
    visibility: hidden;
}

.reCaptcha {
    font-size: 0.750em;
    color: var(--gray);
    line-height: 16px;
}

.reCaptcha a {
    color: var(--blue);
}

/* /////////////////////////////////////////// */

/* // ALERTS ///////////////////////////////// */
.alerts {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.875em;
    border-radius: 6px;
    margin-bottom: 15px;
}

.alerts i {
    background: var(--icon-bg);
    --size: 16px;
    margin-right: 10px;
}

.alerts__notify {
    --icon-bg: var(--blue);
    background-color: rgba(0,150,255,.05);
    color: var(--blue);
}

/* /////////////////////////////////////////// */

/* // GRADIENTS ////////////////////////////// */
.gradient__level-0 {
    background: #A5A5A5;
    background: linear-gradient(0deg, #EAEAEA, #A5A5A5);
}

.gradient__level-1 {
    background: #54D169;
    background: linear-gradient(45deg, #AFF57A, #54D169);
}

.gradient__level-2 {
    background: #2CBFC7;
    background: linear-gradient(0deg, #46EEAA, #2CBFC7);
}

.gradient__level-3 {
    background: #029CF5;
    background: linear-gradient(0deg, #15EDED, #029CF5);
}

.gradient__level-4 {
    background: #00F3FF;
    background: linear-gradient(0deg, #CC00ff, #00F3FF);
}

.gradient__level-5 {
    background: #8739E5;
    background: linear-gradient(0deg, #5496FF, #8739E5);
}

.gradient__level-6 {
    background: #B122E5;
    background: linear-gradient(0deg, #FF63DE, #B122E5);
}

.gradient__level-7 {
    background: #F5317F;
    background: linear-gradient(0deg, #FF7C6E, #F5317F);
}

.gradient__level-8 {
    background: #FF5359;
    background: linear-gradient(0deg, #FFDF40, #FF5359);
}

.gradient__level-9 {
    background: #F09819;
    background: linear-gradient(0deg, #f9df01, #F09819);
}

/* /////////////////////////////////////////// */

/* // ACTIONS //////////////////////////////// */

.hidden {
    display: none!important;
}

.nav-toggle {
    transform: translate(-100vw, 0);
    width: 0px;
}
/* /////////////////////////////////////////// */
