body {
    font-family: 'Abel', sans-serif;
    background: var(--main-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.notextdirect {
    text-decoration: none;
    color: #000;
}

.notextdirect:hover {
    text-decoration: none;

}

:root {
    --imgtheme: url('/resource/img/settings.svg');
    --main-bg: linear-gradient(180deg, rgba(245, 245, 245, 0) 1.04%, #F5F5F5 100%);
    --text: #000;
    --placeholder: #acacac;
    --header-bg: #63B563;
    --submenu: #eee;
    --promo-table: #fff;
    --news-bg: #fff;
    --news-text: #8C8C8C;
    --services-bg: #fff;
    --services-desc: #8C8C8C;
    --mods-bg: #fff;
    --support-bg: #fff;
    --button: #63B563;
    --button-login: #fff;
    --button-login-text: #595959;
    --footer-bg: #63BD63;
    --input: #fff;
    --faq-bg: #C4C4C4;
    --faq-text: #8C8C8C;
    --profile-bg: #fff;
    --strip: #C4C4C4;
    --settings-bg: #fff;
    --tmpl-bg: #fff;
    --games-bg: #fff;
    --political_bg: #fff;
}

:root[data-theme='dark'] {
    --imgtheme: url('/resource/img/settings_dark.svg');
    --main-bg: #3d3939;
    --text: #fff;
    --placeholder: #c7c6c6;
    --header-bg: #438643;
    --submenu: #242424;
    --promo-table: #242424;
    --news-bg: #242424;
    --news-text: #d3d3d3;
    --services-bg: #242424;
    --services-desc: #d3d3d3;
    --mods-bg: #242424;
    --support-bg: #242424;
    --button: #438643;
    --button-login: #464545;
    --button-login-text: #fff;
    --footer-bg: #438643;
    --input: #4c4c4c;
    --faq-bg: #8f8f8f;
    --faq-text: #d3d3d3;
    --profile-bg: #242424;
    --strip: #8f8f8f;
    --settings-bg: #242424;
    --tmpl-bg: #242424;
    --games-bg: #242424;
    --political_bg: #242424;
}

/* Ошибки */
.MessageBlock {border: 1px solid #A83B2D; background: #D44B38; padding: 10px; color: #fff}


/* Выпадающее меню */
.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown_label {
    padding: 1em 1.5em;
    cursor: pointer;
}

.dropdown_menu {
    display: none;
    position: absolute;
    left: 0;
    top: 4.5em;
    min-width: 100%;
    border-radius: 200px;
}

.dropdown:hover .dropdown_menu {
    display: block;
}

.submenu {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.submenu>li {
    display: flex;
    padding: 0.4em 1.5em;
    background-color: var(--submenu);
    color: var(--text);
    text-decoration: none;
    padding: 15px 20px;
    text-align: center;
}

.submenu>li>a {
    display: block;
    background-color: var(--submenu);
    color: var(--text);
    text-decoration: none;
    padding: 5px 10px;
    text-align: center;
}

.submenu>li>img:hover {
    color: #21781A;
}

.submenu>li>a:hover {
    color: #21781A;
}

.toggle-theme {
    border: none;
    background: var(--submenu);
    color: var(--text);
    width: 102px;
}

.toggle-theme:hover {
    color: #21781A;
}

/* Анимация */
.hover {
    width: 392px;
    height: 258px;
    background: #63BD63;
}

/* Шапка */
.header {
    color: #fff;
    background: rgba(0, 0, 0, 0.49);
    position: absolute;
    width: 100%;
    top: 0;
}

.header_active {
    color: #fff;
    background: var(--header-bg);
    position: fixed;
    width: 100%;
}

.header_activeb {
    color: #fff;
    background: var(--header-bg);
    width: 100%;
}

.header_text {
    text-decoration: none;
    color: #fff;
    font-weight: normal;
    font-size: 22px;
    line-height: 24px;
    cursor: pointer;
}

.balance {
    cursor: default;
}

.header_button_green .header_text:hover {
    border-bottom: none;
}

.header_text:hover {
    border-bottom: 3px solid #00AD5D;
	color: #fff;
	text-decoration: none;
}

.header_text_black {
    text-decoration: none;
    color: var(--button-login-text);
    font-weight: normal;
    font-size: 21px;
    line-height: 24px;
}

.header_text_black:hover {
    color: var(--button-login-text);
	text-decoration: none;
}

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

.header_items {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.header_item {
    margin-right: 28px;
}

.wrapper {
    max-width: 1200px;
    margin: auto;
}

.header_button_green {
    background: var(--button);
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.0015);
    border-radius: 2px;
}

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

.header_button {
    display: flex;
    align-items: center;
    padding: 8px 9px;
    background: var(--button-login);
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.0015);
    border-radius: 2px;
    color: var(--button-login-text);
}

.header_button_green {
    background: var(--button);
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.0015);
    border-radius: 2px;
}

.header_img {
    margin-right: 4px;
}

/* Добро пожаловать */
.welcome {
    width: 100%;
    height: 100vh;
    background: url(/resource/settings/background/1.png);
    background-size: cover;
    display: flex;
}

.welcome_table {
    display: flex;
    background: rgba(0, 0, 0, 0.64);
    mix-blend-mode: normal;
    border-radius: 22px;
    padding: 20px 20px;
    flex-direction: column;
    justify-content: center;
}

.welcome_text {
    color: #fff;
    font-weight: normal;
    font-size: 29px;
    line-height: 24px;
    width: 356px;
    padding-bottom: 27px;
    text-align: center;
}

/* Фон */
.main {
    background: var(--main-bg);
    flex-grow: 1;
}

/* Промо */
.promo {
    display: flex;
}

.promo_table {
    background: var(--promo-table);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 565px;
    margin-top: 30px;
}

.promo_text_game {
    color: var(--text);
    font-size: 36px;
    line-height: 30px;
    text-align: center;
}

.promo_text {
    color: var(--text);
    font-size: 32px;
    line-height: 34px;
    font-weight: bold;
}

.left {
    display: flex;
    flex-direction: column;
    padding-left: 25px;
    text-align: center;
}

.promo_button {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.promo_button_text {
    background: var(--button);
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.0015);
    border-radius: 2px;
    width: 250px;
    text-decoration: none;
    color: #fff;
    padding: 8px;
    border-radius: 20px;
}

.promo_button_text:hover {
    color: #fff;
	text-decoration: none;
}

.promo_img {
    width: 186px;
    margin: 15px 0;
}

/* Новости */
.news {
    display: flex;
    margin-top: 20px;
}

.news_title {
    color: var(--text);
    display: flex;
    justify-content: center;
}

.news_items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.news_item {
    background: var(--news-bg);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    flex-basis: 31%;
    text-decoration: none;
    border-radius: 7px;
}

.news_description {
    color: var(--news-text);
    display: flex;
    justify-content: center;
    padding: 15px 15px 15px 15px;
    width: 336px;
}

.news_img {
    width: 392px;
    border-radius: none;
    height: 250px;
    object-fit: cover;
    border-radius: 7px;
}

.news_button {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.news_button_text {
    background: var(--button);
    border-radius: 500px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 8px 40px;
    display: flex;
}

.news_button_text:hover {
	text-decoration: none;
    color: #fff;
}

.news_link {
    text-decoration: none;
}

.Page_Selector {
    margin: 10px;
}

.SwitchItemCur, .SwitchItem {
    padding: 2px 15px;
    background: #D44B38;

}

.SwitchItemCur {
    background: #35886e;
}

/* Подвал */

.footer {
    font-family: 'Roboto', sans-serif;
    background: var(--footer-bg);
    padding: 25px 0;
    flex-grow: 0;
}

.footer_link:active{
    text-decoration: none;
}

.footer_link:visited{
    text-decoration: none;
}

.footer_block {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer_link {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
}

.footer_link:not(:last-child) {
    margin-right: 5px;
}

.footer_link:hover {
	color:#fff;
	text-decoration: none;
}

.copyright {
    margin-top: 20px;
    display: flex;
}

.footer_text {
    color: #fff;
    font-size: 17px;
}

.footer_blocks {
    display: flex;
    justify-content: flex-start;
}

.soc_links {
    display: flex;
    margin-top: 10px;
}


/* страница  Политика конфиденциальности */
.political {
    display: flex;
    width: 100%;
    padding-bottom: 50px;
}

.political_title {
    color: var(--text);
    display: flex;
    justify-content: center;
}

.political_table {
    color: var(--text);
    width: 100%;
    display: flex;
    padding: 20px 20px;
    background: var(--political_bg);
    padding: 20px 50px 40px;
    border: 1px solid silver;
}

.political_headlines {
    font-size: 20px;
}
 /* страница юридической информации */
.info_headlines {
    font-size: 20px;
    text-transform: uppercase;
}

/* страница лицензионное соглашение */
.license_headlines {
    font-size: 20px;
    text-transform: uppercase;
}
 

/* //////////////////////////////////////// */
/* страница РЕГИСТРАЦИЯ и АВТОРИЗАЦИЯ */
/* //////////////////////////////////////// */
/* контент */
.reg_logo {
    display: flex;
    justify-content: center;
    margin: auto;
    width: 354px;
    height: 253px;
    margin-top: 40px;
}

.reg_title {
    text-align: left;
    font-size: 24px;
    line-height: 24px;
    margin-top: 0px;
    margin-bottom: 15px;
}

.reg_description {
    text-align: left;
    display: flex;
    justify-content: left;
    margin-bottom: 10px;
}

.reg_form {
    justify-content: center;
    margin: auto;
    text-align: center;
    width: 80%;
    padding: 30px 0px;
}

.green {
    color: #21781A;
    text-decoration: none;
}

.green:hover {
    color: #21781A;
    text-decoration: none;
}


.wrapper_form {
    max-width: 567px;
    margin: auto;
    background-color: #fff;
}

.input_user {
    width: 100%;
    height: 30px;
    margin-bottom: 12px;
}

.buttons_reg {
    display: flex;
    justify-content: space-between;
}

.reg_button_green {
    background: #63BD63;
    padding: 16px;
    box-sizing: border-box;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.0015);
    border-radius: 2px;
}

.reg_button {
    padding: 10px 8px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.0015);
    border-radius: 2px;
}

.reg_text {
    color: #fff;
    text-decoration: none;
	font-size: 18px;
	border: none
}

.agree {
    display: flex;
    justify-content: flex-start;
    margin: 12px 0px;
}

.agree_w {
    color: #000;
    margin: 0;
    text-decoration: underline;
}

.country_text {
	width: 100%;
	margin-bottom: 10px;
}

.reg_footer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 20vh;
}

.button-left {
    display: flex;
    align-items: center;
}

.green_pass {
    color: #21781A;
    font-size: 19px;
    line-height: 24px;
    text-transform: uppercase;
    margin-left: 10px;
}

.green_pass:hover {
	color: #21781A;
	text-decoration: none;
}
	

.log_footer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 35vh;
}

/* страница НОВОСТИ */
/* .news_active {

} */

.news_title_active {
    color: var(--text);
    font-size: 30px;
    text-align: center;
    font-weight: normal;
    margin-bottom: 25px;
}

.news_desc_active {
    color: var(--text);
    font-size: 30px;
    text-align: center;
    font-weight: normal;
}

.news_number {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

}

.news_number_text {
    background: #63BD63;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-left: 10px;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* страница 404 */
.error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    flex-direction: column;
}

.error_404 {
    font-size: 144px;
    color: #63BD63;
    display: flex;
    justify-content: center;
}

.error_desc {
    font-size: 30px;
    width: 40%;
    text-align: center;
}

/* страница ИГРЫ */
.games {
    display: flex;
    margin-top: 1%;
}

.games_title {
    color: var(--text);
    display: flex;
    justify-content: center;
}

.games_items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.game_item {
    background: var(--games-bg);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    flex-basis: 31%;
    text-decoration: none;
    border-radius: 7px;
    margin-right: 2%;
}

.game_title {
    text-align: center;
    color: var(--text);
    display: flex;
    justify-content: center;
    padding: 0px 15px 8px 15px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.game_img {
    width: 100%;
    border-radius: none;
    height: 250px;
    object-fit: cover;
    border-radius: 7px;
}

.game_button {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
}

.game_button_text {
    color: var(--text);
    text-decoration: none;
    display: flex;
    justify-content: center;
    margin-left: 2px;
}

.game_button_text:hover {
    color: var(--text);
}

/* страница СЕРВИСЫ */
.services {
    display: flex;
}

.services_title {
    color: var(--text);
    display: flex;
    justify-content: center;
    text-align: center;
}

.services_items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 1300px;
}

.service_item {
    background: var(--services-bg);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    text-decoration: none;
    border-radius: 7px;
    margin-right: 2%;
}

.service_img {
    width: 392px;
    height: 258px;
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.service_img:hover {
    width: 392px;
    height: 258px;
    opacity: 0.5;
}

.service_title {
    color: var(--text);
    display: flex;
    justify-content: center;
    padding: 0px 15px 8px 15px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.service_desc {
    font-size: 16px;
    color: var(--services-desc);
    display: flex;
    padding: 0px 15px 15px 15px;
    width: 360px;
}

.red {
    color: #D62C2C;
}

/* страницы МОДЫ и ИГР */
.games_mods {
    display: flex;
    margin-top: 20px;
}

.games_mods_title {
    color: var(--text);
    text-align: center;
}

.games_mods_items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 1300px;
}

.games_mods_item {
    background: var(--mods-bg);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    text-decoration: none;
    border-radius: 7px;
    margin-right: 2%;
}

.game_mods_title {
    display: flex;
    justify-content: center;
    padding: 0px 15px 15px 15px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: var(--text);
}

.mods_img {
    width: 392px;
    height: 258px;
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.mods_img:hover {
    width: 392px;
    height: 258px;
    opacity: 0.5;
}

.game_mods_web {
    text-decoration: none;
}

/* страница СЛУЖБА ПОДДЕРЖКА */
.support {
    margin-top: 2%;
}

.support_title {
    color: var(--text);
    text-align: center;
}

.support_frame {
    background: var(--support-bg);
    margin-bottom: 50px;
}

.support_logod {
    display: flex;
    justify-content: center;
}

.support_logo {
    margin-top: 12px;
    margin-bottom: 13px;
    display: flex;
    width: 168px;
    height: 138px;
    justify-content: center;
}

.support_form {
    display: flex;
    justify-content: center;
    width: 1200px;
}

.support_user {
    color: var(--text);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.support_label {
    color: var(--text);
    display: flex;
    align-items: center;
}

.support_input {
    background: var(--input);
    display: flex;
    margin-left: 10px;
    width: 350px;
    height: 18px;
    align-items: center;
    resize: vertical;
}

.support_button {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 35px;
}

.support_button_green {
    border-radius: 20px;
    width: 120px;
    height: 40px;
    background: #63B563;
    border: 1px solid #63B563;
}

.faq {
    margin-left: 60px;
}

.faq_title {
    color: var(--text);
    padding-bottom: 30px;
}

.faq_items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.faq_item {
    display: flex;
    background: var(--faq-bg);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    text-decoration: none;
    border-radius: 7px;
    margin-right: 2%;
    width: 264px;
    height: 221px;
}

.faq_text {
    color: var(--faq-text);
    width: 245px;
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 24px;
    text-decoration: none;
}

.faq_link {
    color: #6E6E6E;
    text-decoration: none;
}

/* страница ПРОФИЛЯ */
.profile {
    margin-top: 6%;
}

.profile_nav {
    color: var(--text);
    display: flex;
    margin-top: 5%;
    font-size: 24px;
    background: var(--profile-bg);
    width: 250px;
    justify-content: space-around;
}

.profile_nav a {
    text-decoration: none;
    color: var(--text);
    border-bottom: 2px solid transparent;
}

.profile_nav a:hover {
    color: var(--text);
    border-bottom: 2px solid #63B563;
    text-decoration: none;
}

.profile_home {
    display: flex;
    justify-content: center;
    padding: 5px 15px;
    text-decoration: none;
    cursor: default;
}

.strip {
    background: var(--strip);
    width: 1px;
    display: flex;
    justify-content: center;
}

.profile_library {
    background: var(--profile-bg);
    display: flex;
    justify-content: center;
    padding: 5px 15px;
}

.profile_frame {
    background: var(--profile-bg);
    display: flex;
}

.profile_avatar {
    padding: 20px 0px 24px 40px;
}

.online {
    font-size: 18px;
    color: #1feb11;
    text-transform: uppercase;
}

.offline {
    font-size: 18px;
    color: var(--text);
    text-transform: uppercase;
}

.avatarView {
    border-radius: 20px;
    width: 256px;
}

.profile_info {
    color: var(--text);
    margin-left: 45px;
    margin-bottom: 30px;
}

profileText {
    color: var(--text);
}

.profile_info span {
    display: block;
    padding-top: 7px;
}

.profile_name {
    font-size: 36px;
    display: block;
    margin: 20px 0px;
}

.profile_desc {
    color: var(--text);
}

/* страница ПРОФИЛЬ БИБЛИОТЕК */
.profile_game_frame {
    background: var(--profile-bg);
    display: flex;
    margin-bottom: 50px;
}

.profile_game_title {
    color: var(--text);
    padding: 20px 0px 24px 40px;
}

.profile_games {
    margin-left: 10px;
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
    width: 1130px;
    justify-content: left;
}

.profile_game {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-left: 3%;
}

.profile_game span {
    color: var(--text);
    margin: 10px 0px;
    text-align: center;
    text-transform: uppercase;
}

.profile_library {
    cursor: default;
}

/* страница НАСТРОЙКИ */
.settings_frame {
    background: var(--settings-bg);
    display: flex;
    margin-bottom: 50px;
}

.settings_form {
    display: flex;
    justify-content: center;
    width: 1200px;
    margin-top: 30px;
}

.settings_user {
    color: var(--text);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.settings_label {
    color: var(--text);
    display: flex;
    align-items: center;
    font-size: 20px;
    text-transform: uppercase;
}

.settings_reg {
    color: var(--text);
    display: flex;
    margin-left: 10px;
    width: 455px;
    height: 18px;
    font-size: 20px;
}

.settings_input {
    background: var(--input);
    color: var(--text);
    display: flex;
    margin-left: 10px;
    width: 452px;
    height: 30px;
    align-items: center;
    resize: vertical;
}

.settings_input::placeholder {
    background: var(--input);
    color: var(--placeholder);
}
.settings_input::-moz-placeholder {
    background: var(--input);
    color: var(--placeholder);
    opacity: 1;
}
.settings_input:-moz-placeholder {
    background: var(--input);
    color: var(--placeholder);
    opacity: 1;
}
.settings_input::-webkit-input-placeholder {
    background: var(--input);
    color: var(--placeholder);
}

.confirm {
    margin-top: -13px;
}

.confirm a {
    color: inherit;
}

.settings_input_change {
    display: flex;
    margin-left: 10px;
    width: 350px;
    height: 18px;
    align-items: center;
}

.settings_change {
    display: inherit;
    align-items: center;
}

.settings_country {
    color: var(--text);
    background: var(--input);
    width: 452px;
    justify-content: flex-start;
    display: flex;
}

.settings_input_date {
    color: var(--text);
    background: var(--input);
    display: flex;
    width: 452px;
    align-items: center;
    justify-content: flex-end;
}

.change {
    display: flex;
    margin-left: 50px;
}

.settings_change {
    margin-left: 30px;
}

.settings_button {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 35px;
}

.settings_button_green {
    border-radius: 20px;
    height: 40px;
    background: #63B563;
    border: 1px solid #63B563;
    font-size: 16px;
    padding: 0px 15px;
}


/* страница Аватарки */
.ava_frame {
    display: flex;
    justify-content: space-between;
    background: var(--settings-bg);
    margin-bottom: 50px;
}

.ava_text {
    color: var(--text);
    text-transform: uppercase;
    font-size: 24px;
    width: 430px;
    display: flex;
    flex-wrap: wrap;
}

.ava_left {
    display: flex;
    margin-top: 30px;
    margin-left: 40px;
    justify-content: flex-start;
}

.ava_center {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    margin-top: 30px;
    margin-right: 40px;
    margin-bottom: 100px;
}

.ava_you {
    color: var(--text);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 24px;
}

.ava_required {
    color: var(--text);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 16px;
}

.ava {
    width: initial;
    height: 346px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.ava_button_green {
    background: #63B563;
    color: #fff;
    width: 300px;
    height: 50px;
    border: none;
    cursor: pointer;
    margin: 0 auto;
    text-transform: uppercase;
    border-radius: 20px;
}

.ava_agree {
    display: flex;
    align-items: flex-end;
    margin-top: 100px;
    margin-bottom: 30px;
    margin-right: 40px;
}

.input_file {
    color: var(--text);
    border-radius: 5px;
}

/* ШАБЛОНИЗАТОР ИГРЫ */
.tmpl_game {
    margin-top: 3%;
}

.tmpl_frame {
    background: var(--tmpl-bg);
    padding-left: 40px;
    padding-top: 40px;
    padding-right: 40px;
    margin-bottom: 40px
}

.tmpl_img {
    width: 350px;
    height: 220px;
}

.tmpl_content {
    display: flex;
}

.tmpl_left {
    display: flex;
    justify-content: flex-start;
}

.tmpl_right {
    display: flex;
    flex-direction: column;
}

.game_title {
    color: var(--text);
    font-size: 25px;
    margin-bottom: 7px;
}

.game_info {
    color: var(--text);
    margin-bottom: 5px;
    margin-left: 15px;
}

.buy {
    margin-left: 15px;
    margin-top: 5px;
}

.game_button_green {
    background: #63B563;
    color: #fff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-decoration: none;
    border-radius: 20px;
}

.game_desc {
    color: var(--text);
    margin-top: 15px;
    padding-bottom: 20px;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}

.game_req {
    color: var(--text);
    margin-top: 15px;
    padding-bottom: 20px;
    font-size: 18px;
    line-height: 25px;
}

.game_trailer {
    color: var(--text);
    padding-bottom: 70px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

.product_description.active {
    display: block;
}

.product_description {
    display: none;
}

.tab_button {
    display: inline-block;
    cursor: pointer;
    background: #63BD63;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #63BD63;
    margin-top: 20px;
}

.tab_button.active {
    background: #427D42;
    border: 2px solid #63BD63;
}

.tab_button:hover {
    background: #fff;
    color: #000
}

.reqs {
    display: flex;
    justify-content: space-between;
}

.min_req{
    color: var(--text);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 500px;
}

.max_req{
    color: var(--text);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 500px;
}

.trailer {
    display: flex;
    justify-content: center;
    align-content: center;
}

.trailer_text {
    display: flex;
    justify-content: center;
}

.trailer_iframe {
    margin-top: 20px;
}

/* ШАБЛОНИЗАТОР НОВОСТЕЙ */
.tmpl_news {
    margin-top: 1%;
}

.tmpl_news_title {
    text-align: center;
    color: var(--text);
}

.tmpl_news_img {
    display: flex;
    justify-content: center;
}

.tmpl_news_png {
    height: 427px;
}

.tmpl_news_content {
    padding-bottom: 10px;
    color: var(--text);
}

.tmpl_news_text {
    color: var(--news-text);
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 30px auto;
    flex-direction: column;
}

.date {
    color: var(--news-text);
    display: block;
    color: #8C8C8C;
    margin-bottom: 20px;
    margin: 20px auto;
}

.soc_links a {
    color: #ACBAC1;
    word-wrap: break-word;
    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}

.soc_links a:hover,
.soc_links a:focus {
    color: #4F92AF;
    text-decoration: none;
    outline: 0;
}

.soc_links a:before,
.soc_links a:after {
    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}

/* Поиск людей */
.searchfriends_form {
    margin-top: 3%;
    display: flex;
    justify-content: center;

}
.searchfriends_input {
    display: block;
    width: 500px;
    border-radius: 20px;
    color: var(--text);
    background: var(--support-bg);
    margin-right: 10px;
}

.searchfriends_text {
    margin-top: 5%;
    color: var(--text);
    text-align: center;
    font-size: 20px;
}

/* Результат поиска */
.searchfriends {
    display: flex;
}
.resultfriends_item {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 5%;
    margin-bottom: 3%;
}
.resultfriends_link {
    color: var(--text);
}

.resultfriends_table {
    display: flex;
    color: var(--text);
    background: var(--news-bg);
    width: 400px;
    height: 150px;
    flex-basis: 40%;
    margin-left: 30px;
    margin-bottom: 30px;
}

.resultfriends_right {
    margin-left: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.resultfriends_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-left: 5%;
}

.resultfriends_img {
    width: 100px;
    border-radius: 50%;
}

.searchfriends_form_all {
    display: flex;
    justify-content: center;
}

.search_button_green {
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    background: var(--button);
    border: none;
    margin-top: 2%;
}