@charset "utf-8";


html,
button,
input,
select,
textarea {
    color: var(--text-color);
}

body {
    line-height: 1.4;
    font-family: var(--sans-font);
    font-size: 16px;
    background-color: var(--bg-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01rem;
    text-rendering: optimizeSpeed;
    min-width: 320px;
}

html {}

::-moz-selection {
    background: #b3d4fc;
}

::selection {
    background: #b3d4fc;
}

audio,
canvas,
img,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

ul,
li {
    padding: 0;
    margin: 0;
}

a {
    color: var(--link-color);
}

a:hover {
    color: var(--link-hover-color);
    transition: color 0.1s;
}

.clearfix {
    display: block;
    width: 100%;
    clear: both;
}

.clearfix10 {
    display: block;
    width: 100%;
    height: 10px;
    clear: both;
}

.clearfix20 {
    display: block;
    width: 100%;
    height: 20px;
    clear: both;
}

.clearfix50 {
    display: block;
    width: 100%;
    height: 50px;
    clear: both;
}

.clearfix100 {
    display: block;
    width: 100%;
    height: 100px;
    clear: both;
}

.clearfix200 {
    display: block;
    width: 100%;
    height: 200px;
    clear: both;
}

pre {
    margin: 0;
    margin-bottom: 2em;
}

/* --------------------------- */

.header {
    position: relative;
    z-index: 9999;
    width: 100%;
    min-width: 320px;
    font-size: 17px;
    height: 50px;
    margin: 0 auto;
    background: var(--hero-bg-color);
}

.menu {
    position: relative;
    display: block;
    width: 100%;
    min-width: 320px;
    height: 50px;
    margin: 0 auto;
    padding-left: 10px;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1002;
}

.menu-item {
    margin: 0;
    position: relative;
    list-style-type: none;
    height: 50px;
    margin-left: 2%;
    line-height: 43px;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    font-style: normal;
}

.menu-item__search,
.menu-item__dark {
    margin-top: 1px;
    color: var(--opposite-text-color);
}

.menu-item__right {
    float: right;
}

.menu-item__login {
    float: right;
    background-color: var(--opposite-bg-color);
    max-width: 300px;
    min-width: 50px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.menu-link:hover,
.menu-item_active_yes {
    opacity: 0.5;
    -webkit-transition: opacity 0.2s ease-in;
    -moz-transition: opacity 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in;
    -ms-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
}

.menu-link {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    color: var(--opposite-text-color);
    text-decoration: none;
    padding: 0 10px;
    outline-offset: -0.22222em;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: opacity .2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: opacity .2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: opacity .2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-img {
    position: relative;
    top: -2px;
    padding: 0 10px;
    width: 32px;
    height: 32px;
}

.menu-logo {
    font-size: 18px;
}

.menu-logo:hover {
    opacity: 1 !important;
}

.menu-search {
    display: none;
    position: absolute;
    top: 0;
    float: right;
    width: 50%;
    margin-top: 9px;
    z-index: 2000;
    margin-left: 170px;
}

.menu-search__input {
    box-sizing: border-box;
    width: 100%;
    outline: none;
    border: var(--input-border);
    border-radius: var(--button-border-radius);
    background-color: var(--block-bg-color);
    color: var(--text-color);
    font-size: 18px;
    padding: 5px;
    padding-left: 25px;
}

.menu-search__icon {
    position: absolute;
    top: 6px;
    left: 5px;
    color: var(--muted-text-color);
}

.top-sponsor {
    position: relative;
    display: block;
    background-color: var(--badge-color);
    width: 100%;
    text-align: center;
    line-height: 1.5em;
    padding: 8px 10px;
    box-sizing: border-box;
    font-size: 95%;
    color: var(--text-color) !important;
}

.top-sponsor-text {
    margin: 0 auto;
}

.top-sponsor a {
    text-decoration: none;
}

.show-on-mobile {
    display: none;
}

.h-tag {
    position: relative;
    top: -3px;
    display: inline-block;
    padding: 5px 10px;
    font-size: 16px;
    color: #FFF;
    font-weight: normal;
    line-height: 1.3em;
    background-color: rgba(219, 112, 147, 0.7);
    border-radius: 3px;
}

.contacts-row {
    width: 100%;
    box-sizing: border-box;
    font-size: 20px;
    padding: 10px 0 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}

.contacts-row a,
.contacts-row span {
    color: #333;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    margin: 10px 25px 10px 15px;
}

.contacts-row img {
    width: 32px;
    height: 32px;
}

.contacts-row-mobile {
    display: none;
    margin-top: 20px;
}

.contacts-row-footer {
    margin-top: 100px;
}

.footer {
    display: block;
    margin: 20px auto 100px;
    max-width: 700px;
    padding: 0 15px;
    text-align: center;
    font-size: 90%;
}

.footer-notes {
    text-align: center;
    padding: 10px 0 30px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    max-width: 90%;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 20px;
    background-color: #333;
    border: solid 2px #333;
    color: #FFF;
    text-align: center;
}

.button:hover {
    color: #333;
    background-color: #FFF;
}

.button-big {
    padding: 15px 30px;
    font-size: 160%;
    font-weight: bold;
    margin: 50px auto 0;
}

.button-huuuuge {
    padding: 20px 45px;
    font-size: 200%;
    font-weight: bold;
    margin: 50px auto 0;
}

.button-white {
    background-color: #FFF;
    color: #333;
    border-color: #333;
}

.button-white:hover {
    background-color: #000;
    color: #FFF;
}

.button-black {
    background-color: #000;
    color: #FFF;
    border-color: #FFF;
}

.button-black:hover {
    background-color: #FFF;
    color: #333;
}

.button-red {
    background-color: #fb0021;
    border: solid 2px #fb0021;
}

.button-red:hover {
    background-color: #FFF;
    color: #fb0021;
}

.big-grey-button {
    display: inline-block;
    max-width: 90%;
    box-sizing: border-box;
    padding: 15px 30px;
    background-color: #666;
    border: solid 2px #555;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    font-size: 160%;
    font-weight: bold;
    border-radius: 20px;
    margin: 50px auto 0;
}

.big-grey-button:hover {
    background-color: #FFF;
    color: #666;
}

.index-projects {
    overflow: hidden;
    margin: 50px auto 0;
    width: 100%;
    font-size: 16px;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.project {
    display: block;
    overflow: hidden;
    position: relative;
    max-width: 300px;
    min-height: 320px;
    margin: 15px 30px;
    font-size: 20px;
    text-decoration: none;
    box-sizing: border-box;
    color: #333;
    text-align: center;

    box-shadow: 10px 10px 30px #CCC;
    transition: all 0.5s;
    transform: translateZ(0);
    border-radius: 30px;
}

.project:hover {
    transform: scale(1.02);
    transition: all 0.2s;
}

.project-image {
    display: block;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.project-title {
    display: block;
    font-size: 140%;
    font-weight: 700;
    padding: 20px 10px 0;
}

.project-description {
    display: block;
    opacity: 0.8;
    font-size: 90%;
    padding: 10px 10px 20px;
}

@media only screen and (max-width : 500px) {
    .projects-description {
        margin-top: 0;
    }
}

/* Зум фоток по клику */

img[data-action="zoom"] {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
}

.zoom-img,
.zoom-img-wrap {
    position: relative;
    z-index: 666;
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
}

img.zoom-img {
    cursor: pointer;
    cursor: -webkit-zoom-out;
    cursor: -moz-zoom-out;
}


/* Donates */

.donate {
    font-size: 18px;
    margin-bottom: 200px;
}

.donate-title {
    display: block;
    width: 95%;
    clear: both;
    text-align: center;
    font-size: 240%;
    font-weight: 500;
    margin: 0 auto;
    padding: 70px 0 30px;
    box-sizing: border-box;
}

.donate-description {
    font-size: 18px;
    width: 95%;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 0 70px;
    box-sizing: border-box;
}

.donate-selector {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 95%;
    max-width: 800px;
    overflow: hidden;
    font-size: 24px;
    margin: 0 auto;
    box-sizing: border-box;
}

.donate-selector__service {
    font-size: 18px;
}

.donate-selector__item {
    box-sizing: border-box;
    padding: 10px 20px;
    line-height: 1em;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    min-width: 80px;
}

.donate-selector__item_6 {
    min-width: 80px;
}

.donate-selector__item_active {
    background-color: #666;
    color: #FFF;
}

.donate-amount {
    display: none;
    width: 95%;
    max-width: 600px;
    margin: 40px auto 120px;
    font-size: 18px;
    background-color: #FFF;
    padding: 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.donate-amount strong {
    display: inline-block;
    font-size: 140%;
    clear: both;
    padding-bottom: 10px;
}

.donate-amount img {
    float: left;
    margin-right: 30px;
    width: 150px;
}


.donate-service {
    width: 95%;
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    margin: 120px auto;
    font-size: 18px;
    box-sizing: border-box;
}

.donate-service__description {
    float: left;
    min-width: 400px;
    max-width: 500px;
    box-sizing: border-box;
    padding-right: 20px;
}

.donate-service__description strong {
    display: inline-block;
    font-size: 140%;
    clear: both;
    margin-bottom: 15px;
}

.donate-service__button {
    float: left;
    width: 200px;
    text-align: right;
}

.donate-service__button img {
    width: 140px;
    margin-top: 20px;
}

.donate-service__button a {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    background-color: #333;
    color: #FFF;
    text-decoration: none;
    margin-top: 20px;
}

.donate-service-mono {
    display: inline-block;
    font-family: monospace;
    font-weight: 700;
}


@media only screen and (max-width : 570px) {
    .donate {
        font-size: 14px;
    }

    .donate-amount img {
        float: none;
        margin: 0 auto 40px;
        display: block;
    }
}

.post-donate {
    width: 100%;
    max-width: 800px;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    padding-bottom: 10px;
}

.post-donate__header {
    font-size: 36px;
    color: #FFF;
    text-align: center;
    padding: 30px 0;
}

.post-donate .donate-selector {
    color: #FFF;
}

.post-donate .donate-selector__item_active {
    background-color: #999;
    color: #FFF;
}

.profile,
.profile-benefits {
    width: 90%;
    max-width: 600px;
    margin: 0 auto 40px;
    background: #FFF;
    border-radius: 30px;
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
    font-size: 18px;
}

.profile-title {
    margin: 20px auto;
    text-align: center;
    font-size: 130%;
    opacity: 0.6;
}

.profile-avatar {
    margin: 20px auto;
    text-align: center;
}

.profile-avatar-image,
.profile-avatar-none {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    line-height: 200px;
    background-color: #000000;
    background-size: cover;
    background-position: 50% 50%;
    font-size: 70px;
    text-align: center;
    color: #FFF;
}

.profile-username {
    margin: 20px auto 10px;
    font-size: 180%;
    text-align: center;
}

.profile-info {
    margin: 0 auto;
    text-align: center;
}

.profile-info a {
    color: #333;
}

.profile-info-row {
    font-size: 120%;
    padding: 0 0 10px;
}

.profile-info-row-small {
    font-size: 100%;
}

.profile-support {
    margin: 20px auto;
    text-align: center;
    color: #e8b923;
    font-size: 270%;
}

.profile-membership-days {
    margin: 0 auto;
    text-align: center;
    font-size: 90%;
    opacity: 0.6;
}

.profile-logout {
    margin: 100px auto;
    display: block;
    padding: 10px 20px;
    max-width: 140px;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #FFF;
}

.profile-edit-button {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 30px auto 0;
    text-align: center;
}

.profile-edit {
    margin: 50px auto 0;
    text-align: center;
}

.profile-edit p {
    margin: 0 0 30px;
}

.profile-edit label {
    display: block;
    padding: 10px 0 5px;
}

.profile-edit input,
.profile-edit textarea {
    display: block;
    border: solid 2px #333;
    width: 100%;
    padding: 10px 20px;
    border-radius: 20px;
    outline: none;
    text-align: center;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 120%;
}

.profile-benefits-title {
    text-align: center;
    margin: 0 auto 30px;
    font-size: 140%;
}

.profile-benefits-list {
    text-align: center;
    list-style: none;
}

.profile-benefits li {
    margin-bottom: 30px;
}

.profile-extra-block-example {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #FFE9EC;
}

.club {
    width: 100%;
    overflow: hidden;
}

.club-block {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
}

.club-title {
    display: block;
    position: absolute;
    top: 25%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 110%;
}

.club-title h1 {
    font-size: 6vw;
    color: #FFF;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #ff0e28, 0 0 10px #ff0e28, 0 0 40px #ff0e28, 0 0 20px #ff0e28, 0 0 20px #ff0e28;
    margin: 0 10px 5px;
}

.club-title h1:hover {
    color: #FFF;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 20px #ff0e28, 0 0 30px #ff0e28, 0 0 40px #ff0e28, 0 0 50px #ff0e28, 0 0 50px #ff0e28;
}

.club-title a {
    text-decoration: none;
    color: #FFF !important;
}

.club-buttons {
    display: block;
    position: absolute;
    top: 65%;
    width: 100%;
    text-align: center;
}

.club-buttons .button {
    font-size: 130%;
    margin: 0 20px 20px;
}

.club-description {
    display: block;
    margin: 50px auto;
    width: 100%;
    max-width: 800px;
    font-size: 120%;
    padding: 40px;
    box-sizing: border-box;
}

.club-description h2 {
    font-size: 40px;
    text-align: center;
}

.club-description p {
    margin: 30px 0;
    font-size: 120%;
}

.club-to-patreon {
    font-size: 80%;
    margin-left: 5px;
    opacity: 0.7;
}

.world-stats {
    box-sizing: border-box;
    font-size: 120%;
    line-height: 1.7em;
    padding: 0 20px;
}

.world-stats__big {
    font-size: 170%;
    line-height: 160%;
}

.world-stats hr {
    width: 100%;
    visibility: hidden;
    height: 50px;
}

.world-stats img {
    max-width: 100%;
}

.world-stats a {
    color: #222;
}

.world-stats li {
    font-size: 110%;
    margin-bottom: 10px;
}
