/* Стили для контейнера слайдера, который также является вашим sortion_block_head */
.photo-slider {
    position: relative;
    /* Необходимо для абсолютного позиционирования дочерних элементов (слайдов, кнопок) */
    overflow: hidden;
    /* Скрывает части слайдов, которые выходят за пределы контейнера */
    /*
       Убедитесь, что у блока есть определенная высота.
       Это может быть задано через другие стили для .sortion_block_head
       или вы можете добавить сюда, например:
       min-height: 400px;
       height: 50vh;
       aspect-ratio: 16 / 9;
    */
}

/* Стили для каждого слайда */
.photo-slider .slide {
    position: absolute;
    /* Позиционируются относительно .photo-slider */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* По умолчанию все слайды невидимы */
    visibility: hidden;
    /* Скрываем для улучшения доступности и производительности */
    transition: opacity 0.7s ease-in-out, visibility 0s linear 0.7s;
    /* Плавный переход для opacity */
    background-color: #eee;
    /* Фоновый цвет на случай, если изображение не загрузится */
}

/* Стили для активного (видимого) слайда */
.photo-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    /* Активный слайд должен быть поверх других */
    transition: opacity 0.7s ease-in-out, visibility 0s linear 0s;
}

/* Стили для изображений внутри слайдов */
.photo-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Изображение будет покрывать всю область слайда, сохраняя пропорции (может обрезаться) */
    display: block;
    /* Убирает возможное небольшое пространство под изображением */
}

/* Стили для кнопок навигации */
.photo-slider .slider-arrow {
    position: absolute;
    top: 50%;
    /* Располагаем по центру вертикали */
    transform: translateY(-50%);
    /* Точная центровка по вертикали */
    z-index: 2;
    /* Кнопки должны быть поверх слайдов */
    background-color: rgba(0, 0, 0, 0.4);
    /* Полупрозрачный фон */
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
    /* Предотвращает выделение текста на кнопке */
    transition: background-color 0.3s ease;
}

.photo-slider .slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.photo-slider .slider-arrow.prev {
    left: 20px;
    /* Отступ слева для кнопки "назад" */
}

.photo-slider .slider-arrow.next {
    right: 20px;
    /* Отступ справа для кнопки "вперед" */
}

.flex_online_servers {
    display: flex;
    flex-direction: column;
    line-height: 13px
}

.right-side_flex {
    width: 77%;
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between
}

.thank_str {
    color: #7f7f7f;
    font-weight: 600
}

.text_operation_h1 {
    font-size: 13px;
    color: #fff
}

.text_operation_h2 {
    font-size: 10.5px
}

.text_operation_h11 {
    font-size: 13px;
    color: #f38181
}

.text_operation_h22 {
    font-size: 10.5px
}

.flex_operation_text {
    display: flex;
    gap: 5px;
    font-weight: 700;
    flex-direction: column
}

.flex_input_merchant {
    display: flex;
    gap: 7px;
    margin-bottom: 15px;
    align-items: center
}

.flex_mini_user {
    display: flex;
    gap: 7px
}

.discount_purse_block {
    border-radius: 16px;
    transition: .2s all;
    background: linear-gradient(1deg, #222222 30%, #2d2d2d 100%);
    gap: 11px;
    padding: 17px;
    box-shadow: 0 5px 10px #13151a00;
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
    margin-top: 20px
}

.discount_purse {
    background: #3d3d3d;
    padding: 8px 9px;
    border-radius: 12px;
    transition: .2s all;
    gap: 9px;
    display: flex;
    align-items: center
}

.discount_purse i {
    width: 35px;
    transition: all 0.2s;
    height: 35px;
    font-size: 17px;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    display: flex;
    color: #fff;
    border-radius: 10px;
    align-items: center;
    justify-content: center
}

.discount_purse span {
    font-weight: 700;
    font-size: 13px;
    display: flex;
    gap: 6px;
    align-items: center
}

.flex_my_stores {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    line-height: 17px
}

.my_stores_mini_btn {
    display: flex;
    border-radius: 13px;
    gap: 11px;
    margin-bottom: 15px;
    padding: 16px;
    background: linear-gradient(180deg, #da925617 10%, #da925642 100%) !important;
}

.my_stores_mini_btn i {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    font-size: 16px;
    color: #fff
}

.my_stores_mini_text {
    color: #ffff;
    font-size: 12px
}

.my_stores_mini_info {
    font-size: 10.5px;
    color: #ebb88d;
    font-weight: 600;
    border-bottom: dashed 1px #ebb88d;
}

.my_stores_mini_info:hover {
    color: #fff;
    border-bottom: dashed 1px #ffffffad
}

.mp_btn {
    background: #494949;
    display: flex;
    color: #979797;
    min-width: 43px;
    height: 43px;
    font-size: 18px;
    transition: 0.2s;
    align-items: center;
    border-radius: 10px;
    justify-content: center
}

.mp_btn:hover {
    background: #545454;
    color: #fff
}

.mp_btn_profile {
    display: flex;
    color: #fff;
    background: linear-gradient(354deg, #444444 30%, #515151 100%) !important;
    border-top: solid 1px #636363db;
    height: 43px;
    width: 100%;
    font-size: 11px;
    transition: 0.2s;
    align-items: center;
    border-radius: 9px;
    justify-content: center
}

.mp_btn_profile:hover {
    opacity: .7;
    color: #ffff
}

.mini_profile_menu {
    margin: 0 15px 0 15px;
    display: flex;
    gap: 6px;
    flex-direction: column
}



.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    background: #222222;
    transition: opacity 1s, visibility 0s 0s
}

.preloader_hidden {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s, visibility 0s 1s
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    margin: -65px 0 0 -65px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #db9b66;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #db9b66;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #db9b66;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.setting-privileges {
    border: none;
    transition: .2s all;
    background: #2c3a59;
    color: #536285;
    width: 36px;
    float: right;
    margin-right: 10px;
    margin-top: 7px;
    border-radius: 10px;
    display: flex;
    font-size: 17px;
    height: 36px;
    align-items: center;
    justify-content: center
}

.setting-privileges:hover {
    border: none;
    transition: .2s all;
    background: #354364;
    color: #fff;
    width: 36px;
    border-radius: 10px;
    display: flex;
    font-size: 17px;
    height: 36px;
    align-items: center;
    justify-content: center
}

.user_online_block {
    display: flex;
    border-radius: 50px;
    align-items: center;
    max-width: 85px;
    overflow: visible;
}

.user_online_block .users_chat_online {
    display: none
}

.user_online_top i {
    border-radius: 50px;
    width: 15px;
    height: 15px;
    display: flex;
    font-size: 12px;
    padding: 0;
    color: #9397b7;
    background: #555876;
    align-items: center;
    justify-content: center
}

.user_online_img {
    width: 33px;
    height: 33px;
    margin-right: -5px;
    border: solid 3px #3f3f3f;
    border-radius: 50%
}

.social_auth {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-top: 15px
}

.double-profile {
    background: #1e263800;
    border-radius: 13px;
    display: flex;
    justify-content: space-between;
    flex-direction: row
}

.number_player {
    background: #364462;
    width: 25px;
    border-radius: 6px;
    height: 25px;
    margin-right: 15px;
    font-size: 10px;
    font-weight: 600;
    margin-left: -5px;
    display: flex;
    align-items: center;
    justify-content: center
}

.status_block i {
    color: #898989;
}

.text-success-priv {
    z-index: 3;
    right: 6px;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    width: 115px;
    border: none;
    height: 42px;
    font-size: 10.5px;
    display: flex;
    top: 7px;
    color: #fff;
    position: absolute;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.2s;
    align-items: center;
    justify-content: center
}

.text-warning-priv {
    z-index: 3;
    right: 6px;
    background: linear-gradient(0deg, #d06262 30%, #ff7e7e 100%);
    width: 115px;
    border: none;
    height: 42px;
    font-size: 10.5px;
    display: flex;
    top: 7px;
    color: #fff;
    position: absolute;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.2s;
    align-items: center;
    justify-content: center
}

.answer_forum {
    color: #fff;
    border: none;
    background: linear-gradient(1deg, #464646a8 30%, #464646 100%);
    transition: .2s all;
    font-weight: 600;
    height: 45px;
    display: flex;
    font-size: 11px;
    position: relative;
    width: 100%;
    border-radius: 50px;
    align-items: center;
    justify-content: center
}

.answer_forum:hover {
    opacity: .7
}

.like_forum {
    color: #fff;
    background: #f66;
    transition: .2s all;
    border: none;
    height: 36px;
    font-size: 16px;
    width: 36px;
    display: flex;
    cursor: pointer;
    border-radius: 9px;
    align-items: center;
    justify-content: center
}

.like_forum:hover {
    color: #fff;
    background: #cd5151
}

.like_forum:hover .bx-heart {
    -webkit-animation: 1.3s ease-in-out 0s normal none infinite running trambling-animation;
    -moz-animation: 1.3s ease-in-out 0s normal none infinite running trambling-animation;
    -o-animation: 1.3s ease-in-out 0s normal none infinite running trambling-animation;
    animation: 1.3s ease-in-out 0s normal none infinite running trambling-animation
}

@keyframes trambling-animation {

    0%,
    50%,
    100% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg)
    }

    10%,
    30% {
        transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg)
    }

    20%,
    40% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg)
    }
}

.forum_next {
    overflow: hidden;
    border-radius: 11px;
    margin-bottom: 0;
    font-size: 12px;
    width: 100%;
    display: flex;
    color: #80849a;
    font-weight: 600;
    list-style: none;
    padding: 17px 0 17px 15px
}

.forum_next li {
    margin-right: 10px;
    color: #ffff;
    padding-right: 10px;
    display: flex;
    height: 18px;
    border-right: solid 1px #80808061;
    align-items: center
}

.forum_next li.active {
    color: #ffffff !important;
    border-right: none
}

.forum_next li a {
    color: #808080;
}

.forum_next li a:hover {
    color: #fff
}

.forum_delete {
    background: #474748;
    color: #818181;
    font-size: 9px;
    border: none;
    display: flex;
    height: 23px;
    margin-left: 6px;
    width: 23px;
    position: relative;
    float: right;
    transition: .2s all;
    border-radius: 50px;
    align-items: center;
    justify-content: center
}

.forum_delete:hover {
    background: #565656;
    color: #fff
}

.block_back {
    display: flex;
    border-radius: 13px;
    background: linear-gradient(1deg, #42424287 30%, #424242 100%);
    padding: 7px 13px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between
}

.back_forum {
    color: #fff;
    font-size: 13px;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    height: 40px;
    display: flex;
    width: 40px;
    transition: .2s all;
    border-radius: 10px;
    align-items: center;
    justify-content: center
}

.back_forum:hover {
    opacity: .7;
    color: #fff
}

.head-forum {
    background: #272f4200;
    border-radius: 12px;
    display: flex;
    margin-top: -8px;
    margin-bottom: -7px;
    padding: 0 15px
}

.forum-setting {
    background: #272f42;
    border-radius: 10px;
    padding: 11px 35px;
    font-size: 10.5px;
    color: #fff;
    margin-bottom: 10px
}

.forum-setting:hover {
    background: #2d354a;
    border-radius: 10px;
    padding: 11px 35px;
    font-size: 10.5px;
    color: #fff;
    margin-bottom: 10px
}

/*.last_online {
    width: 33px;
    height: 33px;
    border-radius: 50px;
    z-index: 1;
}*/

.last_online {
    width: 33px;
    height: 33px;
    border-radius: 7px;
    position: relative;
    z-index: 1;
}

.login_visit {
    font-weight: 600;
    font-size: 11px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.visit_users_online1 {
    padding: 15px;
    color: #fff;
    display: flex;
    text-align: center;
    gap: 3px;
    position: relative;
    margin-left: -2px;
    margin-bottom: 3px;
    width: 80px;
    background: linear-gradient(360deg, #3a3a3a 0%, #434343 55%);
    border-radius: 13px;
    transition: .2s all;
    flex-direction: column;
}

.visit_users_online1:hover {
    opacity: 0.7;
}

.flex_user_visits {
    display: flex;
    justify-content: center;
    margin-top: 6px;
    margin-left: 2px;
    width: 100%;
}

.gp_visit {
    color: #7d839c;
    font-weight: 600;
    font-size: 10.5px
}

.visit_users_online {
    padding: 7px 11px;
    color: #fff;
    background: linear-gradient(89deg, #40435700 0%, #404357 55%);
    display: flex;
    border-radius: 10px;
    transition: .2s all;
    margin-bottom: 7px;
    align-items: center;
    justify-content: space-between
}

.visit_users_online1 i {
    color: #dfdfdf;
    transition: 0.2s;
    background: #656565;
    opacity: 0.7;
    width: 14px;
    border: none;
    height: 14px;
    top: -8px;
    padding: 0px;
    right: 8px;
    margin-bottom: -16px;
    position: relative;
    font-size: 11px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Verification badge - positioned top-right in widget cards */
.visit_users_online1 img.verification-badge {
    position: absolute !important;
    right: 5px !important;
    top: 5px !important;
    width: 15px !important;
    height: 15px !important;
    z-index: 5 !important;
}

.visit_users_online1:hover img.verification-badge {
    transform: none !important;
    opacity: 1 !important;
}

/* General verification badge inline (chat, profile, user list etc.) */
img.verification-badge {
    height: 14px;
    width: 14px;
    vertical-align: middle;
    margin-left: 1px;
    margin-bottom: 1px;
}


.visit_users_online i {
    color: #9698ae;
    transition: 0.2s;
    background: #52556b;
    padding-top: 1px;
    width: 20px;
    height: 20px;
    font-size: 13px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center
}

.visit_users_online:hover i {
    color: #a1a4c0;
    background: #5e647d;
    transform: rotate(180deg)
}

.block_visit {
    display: flex;
    line-height: 13px;
    flex-direction: column;
    margin-left: 3px
}

.avatar_event {
    width: 34px;
    height: 34px;
    margin-top: 3px;
    border-radius: 8%
}

.result_danger {
    background: #f381812e;
    color: #ffff;
    font-family: 'Montserrat';
    backdrop-filter: blur(6px);
    top: 4px;
    gap: 10px;
    padding: 13px 19px 13px 13px;
    position: relative;
    display: flex;
    font-size: 10.5px;
    border-radius: 11px;
    align-items: center
}

.result_danger i {
    width: 37px;
    height: 37px;
    background: #f3818145;
    display: flex;
    border-radius: 9px;
    font-size: 17px;
    align-items: center;
    color: #f38181;
    justify-content: center
}

.result_uspeshno {
    background: #4caf504f;
    /* Полупрозрачный зеленый цвет */
    color: #ffffff;
    /* Белый цвет текста */
    font-family: 'Montserrat';
    backdrop-filter: blur(6px);
    top: 4px;
    gap: 10px;
    padding: 13px 19px 13px 13px;
    position: relative;
    display: flex;
    font-size: 10.5px;
    border-radius: 11px;
    align-items: center;
}

.result_uspeshno i {
    width: 37px;
    height: 37px;
    background: #388e3c;
    /* Тёмно-зеленый цвет фона для иконки */
    display: flex;
    border-radius: 9px;
    font-size: 17px;
    align-items: center;
    color: #ffffff;
    /* Белый цвет текста иконки */
    justify-content: center;
}


.block-ref-link {
    background: #272f4200;
    border-radius: 13px;
    width: 50%
}

.info-referal {
    border-radius: 12px;
    padding: 20px;
    font-size: 10.5px;
    border: solid 1px #283652;
    display: flex;
    line-height: 16px;
    color: #5a6a8c;
    padding-bottom: 40px;
    font-weight: 600;
    flex-direction: column
}

.button-contacts {
    position: relative;
    padding: 15px 25px;
    font-size: 10.5px;
    color: #fff;
    background: #272f42;
    border: 1px solid #272f42;
    line-height: normal;
    border-radius: 10px;
    font-weight: 600
}

.button-contacts:hover {
    position: relative;
    padding: 15px 25px;
    font-size: 10.5px;
    color: #fff;
    background: #2b3346;
    border: 1px solid #2b3346;
    border-radius: 10px;
    font-weight: 600
}

.flex_tab_settings {
    display: flex;
    gap: 10px;
    align-items: center
}

.navigation-setting li.active a {
    color: white;
    font-weight: 600;
    border: dashed 1px #272f42;
    background: #272f42
}

.navigation-setting.with-icons li a {
    position: relative;
    border-radius: 13px;
    gap: 10px;
    display: flex;
    padding: 13px;
    height: 56px;
    text-align: center;
    align-items: center;
    justify-content: space-between
}

.active-setting-square {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: #8fb5af
}

.wh-18 {
    width: 1rem;
    height: 1rem;
    position: relative;
    margin-left: 6px
}

.noty_skidka {
    background-color: #5086ff17;
    border-radius: 11px;
    font-size: 12px;
    padding-left: 20px;
    border: dashed 1px #5086ff;
    margin-top: 18px;
    display: flex;
    padding-right: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    height: 10%;
    justify-content: flex-start;
    align-items: center
}

.block_message_right {
    width: 70%;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(1deg, #222222 30%, #2d2d2d 100%);
}

.text-\[var\(--color\)\] {
    color: #598bfe
}

.login_donator {
    color: #ffff
}

.userss_online {
    color: #fff;
    font-weight: 600;
    font-size: 10.5px;
    line-height: 14px;
    position: relative;
    margin-left: 10px
}

.button_top {
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    position: relative
}

.summa_donators {
    padding: 5px 10px;
    border-radius: 50px;
    border: solid 1px #da9256;
    display: flex;
    gap: 6px;
    background: #7a82a114;
    color: #fff;
    font-size: 10px;
    transition: .2s all;
    align-items: center
}

.summa_donators i {
    font-size: 16px;
    color: #da9256;
    text-shadow: #da9256 1px 0 10px
}

.top_donators:hover .summa_donators {
    border: solid 1px #da9256;
    background: #da925682;
    color: #fff
}

.donat_img {
    width: 120px;
    margin-top: -70px;
    float: right;
    left: 10px;
    top: 30px;
    position: relative
}

.block_pass {
    margin-top: 15px;
    margin-bottom: 15px
}

.auth_img {
    width: 260px;
    position: relative;
    top: -52px;
    float: right
}

.zag_auth {
    height: 65px;
    border-radius: 15px 15px 0 0;
    background: linear-gradient(327deg, #407bff38 0%, rgb(64 123 255) 100%);
    padding: 20px;
    display: flex;
    align-items: center
}

.admin-center {
    color: #5a6a8c !important;
    font-size: 11px !important;
    display: block;
    border-radius: 10px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 43px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 225px;
    transition: 0.2s;
    padding: 10px;
    line-height: 5px
}

.admin-center:hover {
    font-weight: 600;
    color: #fff;
    background: #212d47;
    font-size: 11px;
    display: block;
    border-radius: 10px;
    position: relative;
    height: 43px;
    line-height: 5px;
    margin: auto;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 225px;
    transition: 0.2s
}

.admin-center:hover .admin-panel {
    color: #fff;
    font-size: 8px;
    transition: .2s all;
    margin-left: 5px;
    background: #7c7bff;
    border-radius: 50px;
    position: relative;
    top: 0;
    padding: 2px 9px
}

.admin-center i {
    color: #5a6a8c;
    font-size: 17px;
    margin-right: 5px;
    transition: .2s all;
    margin-left: 5px;
    position: relative;
    top: 3px
}

.admin-center:hover i {
    color: #7c7bff;
    font-size: 17px;
    margin-right: 5px;
    transition: .2s all;
    margin-left: 5px;
    position: relative;
    top: 3px
}

.settings_header {
    display: flex;
    color: #fff;
    min-width: 43px;
    height: 43px;
    font-size: 18px;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    transition: 0.2s;
    align-items: center;
    border-radius: 10px;
    justify-content: center
}

.settings_header:hover {
    opacity: .7;
    color: #fff
}

.top_donators {
    display: block;
    border-radius: 13px;
    transition: .1s all;
    background: linear-gradient(360deg, #3f3f3f 0%, #43434373 55%);
    padding: 11px 15px;
    margin-bottom: 8px
}

.top_donators:hover {
    background: linear-gradient(360deg, #3f3f3f 0%, #434343 55%)
}

.profile_contact_telegram {
    display: flex;
    width: 100%;
    height: 55px;
    margin-bottom: 7px;
    background: #2a3855;
    border-radius: 12px;
    align-items: center
}

.profile_contact_discord {
    display: flex;
    width: 100%;
    height: 42px;
    background: linear-gradient(49deg, #6363634a 0%, #444444 55%);
    gap: 7px;
    padding: 0 13px 0 6px;
    border-radius: 10px;
    align-items: center
}

.profile_contact_telegram .bxl-telegram {
    font-size: 15px;
    margin-left: 11px;
    width: 34px;
    display: flex;
    background: linear-gradient(216deg, #6ab5ff 0%, #3390ec 55%);
    height: 34px;
    border-radius: 9px;
    margin-right: 10px;
    align-items: center;
    justify-content: center
}

.profile_contact_discord .bxl-discord-alt {
    font-size: 15px;
    width: 30px;
    background: #5866f1;
    display: flex;
    height: 30px;
    border-radius: 8px;
    align-items: center;
    justify-content: center
}

.profile_contact_block {
    padding: 15px 16px;
    margin-bottom: -20px;
    background: #2f374b;
    height: 60px;
    margin-top: 28px;
    border-radius: 12px
}

.profile_contact_opisanie {
    font-size: 10.5px;
    font-weight: 600;
    position: relative;
    color: #5a6a8c
}

.profile_contact_name {
    color: #fff !important;
    font-size: 11px
}

.profile_contact_img {
    float: right;
    border-radius: 50%;
    width: 30px;
    top: 1px;
    position: relative
}

.donat_block_top {
    background: #212d47;
    height: 60px;
    border-radius: 11px;
    padding: 10px;
    gap: 12px;
    display: flex;
    margin-bottom: 12px;
    transition: .2s all;
    justify-content: flex-start;
    align-items: center
}

.donat_block_top i {
    height: 40px;
    font-size: 18px;
    background: linear-gradient(34deg, #4e4fb0 0%, rgb(108 109 229) 55%);
    border-radius: 11px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.a {
    border-radius: 50%;
    background: #5086ff;
    width: 23px;
    height: 19px;
    margin-right: -15px;
    margin-top: 25px;
    margin-left: -7px;
    z-index: 1;
    border: solid 4px #161d2c;
    display: flex;
    justify-content: center
}

.a:before {
    content: '';
    display: block;
    border-radius: 50%;
    background: #161d2c;
    width: 50%;
    height: 50%;
    align-self: center
}

.news_button {
    font-size: 10.7px;
    font-weight: 600;
    margin-left: 11px;
    position: relative;
    color: #ffff;
    top: 22px
}

.forum_button {
    font-size: 9.9px;
    font-weight: 600;
    position: relative;
    line-height: 12px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 14px;
    text-align: center
}

.pulse {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7c86ff;
    box-shadow: 0 0 0 #606cff4f;
    animation: pulse 1.5s infinite
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #7c86ff3d
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #7c86ff94;
        box-shadow: 0 0 0 0 #7f89ffab
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 6px rgba(204, 169, 44, 0)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

.all_online {
    background: #37415800;
    transition: all 0.2s;
    padding: 8px;
    border-radius: 10px;
    font-size: 10.5px;
    border: dashed 1px #465472;
    cursor: pointer;
    display: flex;
    color: #5a6a8c;
    margin: 0 14px;
    margin-top: 9px;
    height: 42px;
    font-weight: 600;
    align-items: center;
    justify-content: center
}

.all_online:hover {
    background: #283652;
    transition: all 0.2s;
    padding: 8px;
    border-radius: 10px;
    font-size: 10.5px;
    border: dashed 1px #283652;
    cursor: pointer;
    display: flex;
    color: #fff;
    margin-top: 9px;
    height: 42px;
    font-weight: 600;
    align-items: center;
    justify-content: center
}

.online_full {
    background: #272f42;
    border-radius: 10px;
    height: 50px;
    padding: 0 15px;
    line-height: 14px;
    padding-right: 10px;
    display: flex;
    cursor: pointer;
    width: 100%;
    top: -22px;
    transition: .2s all;
    position: relative;
    flex-direction: column;
    justify-content: center
}

.online_full:hover {
    background: #272f42;
    border-radius: 10px;
    height: 50px;
    opacity: .7;
    transition: .2s all;
    padding: 0 15px;
    line-height: 14px;
    padding-right: 10px;
    display: flex;
    width: 100%;
    top: -22px;
    position: relative;
    flex-direction: column;
    justify-content: center
}

.online_full:active {
    background: #272f42;
    border-radius: 10px;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    height: 50px;
    opacity: .7;
    transition: .2s all;
    padding: 0 15px;
    line-height: 14px;
    padding-right: 10px;
    display: flex;
    width: 100%;
    top: -22px;
    position: relative;
    flex-direction: column;
    justify-content: center
}

.online_full_user {
    display: flex;
    border-bottom: solid 1px #3f4255;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
    justify-content: space-between;
    align-items: center
}

.online_full_user b {
    border-radius: 50px;
    width: 35px;
    background: linear-gradient(34deg, #437652 0%, rgb(102 158 119) 55%);
    height: 20px;
    font-size: 11px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center
}

.img_online {
    width: 34px;
    position: relative;
    top: 4px;
    transition: .2s all;
    border-radius: 50%;
    margin-right: -13px;
    border: solid 3px #272f42
}

.img_online:hover {
    width: 34px;
    opacity: .8;
    transition: .2s all;
    position: relative;
    top: 4px;
    border-radius: 50%;
    margin-right: -13px;
    border: solid 3px #272f42
}

.toper_mini_right {
    height: 140px;
    margin-bottom: 1px;
    width: 135px;
    border-radius: 15px;
    z-index: 1;
    background: #1e263800
}

.toper_mini_right1 {
    height: 100%;
    background: #1e2638;
    display: flex;
    border-radius: 15px;
    transition: .2s all;
    align-items: center;
    flex-direction: column;
    align-content: center;
    justify-content: flex-end
}

.news_date {
    font-size: 10px;
    background: #2d76ff14;
    backdrop-filter: blur(1px);
    border-radius: 50px;
    border: solid 1px #ffffff1a;
    position: absolute;
    font-weight: 600;
    margin-top: 5px;
    text-align: center;
    text-overflow: ellipsis;
    width: calc(40% - 46px);
    overflow: hidden;
    white-space: nowrap;
    line-height: 25px;
    margin-left: 7px;
    color: #fff
}

.ugol {
    width: 11px;
    position: relative;
    margin-bottom: -12px;
    height: 11px;
    position: absolute;
    bottom: 41px;
    z-index: 1;
    left: 24px;
    border-radius: 50%;
    border: solid 3px #1e2638
}

.water_img {
    width: 20px;
    position: relative
}

.water {
    float: left;
    position: relative;
    display: flex;
    padding: 10px;
    padding-top: 11px;
    width: 34px;
    margin-left: -7px;
    background: radial-gradient(circle, rgb(22 50 118) 20%, rgb(10 25 60) 70%);
    line-height: 10px;
    height: 34px;
    font-size: 12px;
    border-radius: 9px;
    align-items: center;
    justify-content: center
}

.hide_uved {
    display: none
}

.case_menu_button {
    background: linear-gradient(238deg, rgb(134 255 194 / 6%) 0%, rgb(39 47 66) 55%);
    color: #fff
}

.new-menu {
    font-weight: 500;
    font-size: 8px;
    float: right;
    margin-top: 7px;
    color: #95ffcafc;
    padding: 0 10px;
    border: 1px solid #95ffca94;
    filter: drop-shadow(rgba(107, 206, 165, .57) 0 0 16px);
    border-radius: 5px
}

.head_chat {
    display: flex;
    justify-content: space-between;
    margin-bottom: -19px
}

.img_input_chat {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: relative
}

.show_user {
    color: #696969;
    line-height: 22px;
    font-size: 20px;
    height: 36px;
    width: 30px;
    transition: 0.2s;
    position: relative;
    cursor: pointer;
    top: 13px;
    border-radius: 10px
}

.show_user:hover {
    color: #fff
}

.show_user:hover .bx-bell {
    -webkit-animation: 1.3s ease-in-out 0s normal none infinite running trambling-animation;
    -moz-animation: 1.3s ease-in-out 0s normal none infinite running trambling-animation;
    -o-animation: 1.3s ease-in-out 0s normal none infinite running trambling-animation;
    animation: 1.3s ease-in-out 0s normal none infinite running trambling-animation
}

@keyframes trambling-animation {

    0%,
    50%,
    100% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg)
    }

    10%,
    30% {
        transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg)
    }

    20%,
    40% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg)
    }
}

.chat_date {
    font-size: 10px;
    color: #747474;
    font-weight: 600;
    cursor: context-menu
}

.answer {
    font-size: 10px;
    color: #58637800;
    margin-left: 120px;
    float: right;
    margin-right: 3px;
    transition: .2s all
}

.answer:hover {
    font-size: 10px;
    color: #fff;
    margin-left: 120px;
    float: right;
    transition: .2s all
}

.chat_img {
    width: 37px !important;
    border-radius: 10px;
    height: 37px !important;
    padding: 3px;
    transition: .2s all;
    float: inherit
}

/*.chat_img {
    width: 37px!important;
    border-radius: 50%;
    height: 37px!important;
    background: linear-gradient(50deg, #52556b 30%, #6e6e6e 100%);
    padding: 3px;
    transition: .2s all;
    float: inherit
}*/

.chat_img:hover {
    opacity: .7
}

.blockobr {
    height: 85px;
    background: #1e2638;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 15px;
    transition: 0.2s
}

.blockobr:hover {
    height: 85px;
    background: #232b3e;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
    transition: 0.2s
}

.imgsupport {
    width: 80px;
    top: -16px;
    height: 82px;
    position: relative;
    line-height: 0;
    float: left
}

@media (max-width: 991.99px) {
    .page_auth_left {
        display: none !important
    }

    .page_auth_right {
        width: 100% !important;
        align-items: center;
        background-color: #21233000 !important;
        padding: 70px 15px 70px 15px !important
    }

    .login_block {
        width: 100% !important;
        margin-left: 0px !important
    }

    .page_authorization {
        display: flex;
        min-height: 100vh;
        justify-content: center
    }

    .wapper .header {
        position: relative;
        height: 105px
    }

    .center_sub {
        display: none
    }

    .search_user {
        display: none
    }

    .point_header {
        z-index: 1;
        display: block;
        width: 13px;
        height: 13px;
        border: solid 4px #212330;
        border-radius: 50%;
        background: #ffc491;
        top: 14px;
        position: absolute;
        right: -107px
    }

    .pro {
        display: none
    }

    .wapper .header ul {
        display: none;
        float: left;
        height: 100%;
        list-style: none
    }

    .wapper .header ul>li {
        display: block;
        float: left;
        margin: 0 17px
    }

    .wapper .header ul>li>a {
        font-size: 20px;
        color: #696969;
        line-height: 53px;
        text-align: center
    }

    .wapper .header ul>li>a:hover {
        color: #fff
    }

    .wapper .header ul.user-menu {
        display: block;
        margin-top: 15px;
        float: right;
        right: 37px;
        height: 32px;
        position: relative
    }

    .wapper .header ul.user-menu>li {
        margin: 0 8px
    }

    .language_btn {
        display: none !important;
    }

    .news_block {
        height: auto;
        display: flex;
        gap: 20px;
        padding: 20px;
        border-radius: 18px;
        margin-bottom: 5px;
        align-items: center;
        justify-content: space-between;
        flex-direction: column
    }

    .row_events {
        display: flex;
        border-radius: 18px;
        margin-bottom: 20px;
        gap: 15px;
        padding: 20px;
        flex-direction: column
    }

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

    .right_events {
        width: 100%;
        background: #333749;
        padding: 17px;
        background-size: cover;
        border-radius: 16px
    }

    .bottom_footer {
        display: flex;
        width: 100%;
        flex-direction: column
    }

    .bottom_info {
        background: #2d303a00;
        height: auto;
        display: flex;
        margin-top: 10px;
        gap: 10px;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column
    }

    .nav_menu {
        margin-left: -15px;
        margin-bottom: 20px
    }

    .flex_new_new {
        display: flex;
        width: 100%;
        gap: 20px;
        flex-direction: column;
        align-items: stretch
    }

    .news-block-img {
        height: 200px;
        width: 100%;
        background: #212d47;
        border-radius: 16px
    }

    .flex_info_new {
        display: flex;
        flex-direction: column;
        width: 100%
    }

    .wapper .header ul.user-menu>li.collapsible {
        position: relative
    }

    .wapper .header ul.user-menu>li.collapsible>a {
        width: 42px
    }

    .wapper .header ul.user-menu>li.collapsible>a img {
        width: 35px;
        height: 35px;
        border-radius: 8px;
        display: block;
        float: left;
        position: absolute;
        top: 2px
    }

    .cTabs_block {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        flex-direction: column
    }

    .cTabs_left_block {
        background: #18233a;
        width: 100%;
        height: 300px;
        padding: 17px;
        border-radius: 15px;
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
        justify-content: flex-end
    }

    .support_cTabs {
        width: 40px;
        cursor: pointer;
        transition: 0.2s;
        height: 40px;
        background: #263350;
        border-radius: 10px;
        margin-right: 0;
        font-size: 17px;
        color: #596887;
        display: flex;
        margin-top: 0;
        align-items: center;
        justify-content: center
    }

    .support_cTabs:hover {
        width: 40px;
        transition: 0.2s;
        height: 40px;
        background: #2e3c5b;
        border-radius: 10px;
        margin-right: 0;
        font-size: 17px;
        color: #fff;
        display: flex;
        margin-top: 0;
        align-items: center;
        justify-content: center
    }

    .text_left_cTabs i {
        display: none
    }

    .text_left_cTabs {
        backdrop-filter: blur(5px);
        background: #00000038;
        border-radius: 12px;
        margin: 0;
        width: 100%;
        padding: 20px;
        font-weight: 600;
        font-size: 10.5px
    }

    .cf {
        background: #18233a;
        border-radius: 15px;
        padding: 23px;
        width: 100%
    }

    .number_cTabs {
        display: none
    }

    #chat #chat_messages,
    #chat #messages {
        overflow-y: auto;
        width: calc(100% - 10px);
        height: 280px !important;
        margin-left: 10px
    }

    .button_player1 {
        border: none;
        background: #293651;
        padding: 8px 20px;
        color: #4d5c7b;
        margin-left: 0;
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 10.5px !important;
        border-radius: 8px;
        transition: 0.2s
    }

    .button_player1:hover {
        border: none;
        background: #2f3d59;
        padding: 8px 20px;
        color: #fff;
        margin-left: 0;
        font-weight: 600;
        font-size: 10.5px !importan;
        border-radius: 8px;
        transition: 0.2s
    }

    .news-block-imgg {
        height: 210px
    }

    .vk_support {
        background: linear-gradient(96deg, #0077ff 0%, rgb(39 140 255) 55%);
        border-radius: 12px;
        width: 100%;
        height: 60px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .ticket_support {
        background: linear-gradient(85deg, #009c3c 0%, rgb(65 180 109) 55%);
        border-radius: 12px;
        width: 100%;
        height: 60px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .send_support {
        width: 110px;
        transition: 0.2s;
        background: #ffffff36;
        display: flex;
        gap: 7px;
        height: 37px;
        font-size: 10.5px;
        cursor: pointer;
        border-radius: 9px;
        font-weight: 600;
        align-items: center;
        justify-content: center
    }

    .send_support:hover {
        width: 110px;
        transition: 0.2s;
        background: #ffffff4d;
        display: flex;
        gap: 7px;
        height: 37px;
        font-size: 10.5px;
        cursor: pointer;
        border-radius: 9px;
        font-weight: 600;
        align-items: center;
        justify-content: center
    }

    .version_fixed {
        font-weight: 600;
        color: #2f3d55;
        position: fixed;
        bottom: 10px;
        font-size: 10px;
        display: none;
        left: 20px
    }

    .news_info {
        display: flex;
        border-top: solid 1px #212d47;
        width: 100%;
        justify-content: space-between
    }

    .button_sortion {
        background: #2a3347;
        width: 100%;
        display: flex;
        padding: 10px;
        cursor: pointer;
        height: auto;
        transition: 0.2s;
        border-radius: 13px;
        flex-direction: column;
        justify-content: flex-end
    }

    .button_sortion:hover {
        opacity: .7;
        background: #242d40;
        width: 100%;
        transition: 0.2s;
        padding: 10px;
        height: auto;
        border-radius: 13px;
        flex-direction: column;
        justify-content: flex-end
    }

    .bottom_new {
        background: #18233a;
        border-radius: 15px;
        padding: 30px;
        margin-top: 50px;
        margin-bottom: 30px
    }

    .bottom_water_info_right {
        display: flex;
        flex-direction: row-reverse;
        background: #212d47;
        border-radius: 12px;
        padding: 12px 0;
        margin-top: 20px;
        align-items: center
    }

    .bottom_water_info_left {
        display: none
    }

    .version {
        background: #272f42;
        border-radius: 12px;
        display: none;
        padding: 0 12px;
        padding-right: 20px;
        align-items: center
    }

    .nav_bottom_soc {
        background: #ffffff00;
        position: relative;
        display: none;
        margin-bottom: 20px
    }

    .vertical-navigation {
        flex-direction: column;
        margin-bottom: 0;
        width: 100%
    }

    .vertical-navigation li a {
        border-radius: 10px !important;
        justify-content: flex-start !important;
        gap: 5px;
        display: flex;
        flex-direction: row
    }

    .block_select_servers {
        padding: 15px;
        border-radius: 20px
    }

    .vertical-navigation li {
        width: 100%
    }

    .admin_menu_block {
        display: flex;
        gap: 15px;
        flex-direction: column
    }

    .balance-left i {
        display: none
    }

    .container-buttons-card {
        display: none
    }

    .profile_block {
        margin-bottom: 30px;
        border-radius: 20px;
        display: flex;
        gap: 15px;
        flex-direction: column
    }

    .personal_card {
        display: flex;
        justify-content: space-between;
        padding-bottom: 15px;
        gap: 10px;
        margin-bottom: 15px;
        flex-direction: column
    }

    .activity_name {
        display: none
    }

    .left_profile {
        border-radius: 20px;
        padding: 20px;
        background-size: cover;
        display: flex;
        gap: 20px;
        flex-direction: column;
        justify-content: space-between
    }

    .prof_r {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 5px;
        align-items: flex-start
    }

    .left_block {
        width: 100%
    }

    .right_profile {
        width: 100%
    }



    .flex_contacts_btn {
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
        gap: 10px;
        padding-bottom: 14px;
        flex-direction: column
    }

    .profile-settingss {
        color: #ffffffbf;
        font-weight: 700;
        height: 42px;
        border-radius: 9px;
        width: 100%;
        padding: 0 20px;
        font-size: 10px;
        display: flex;
        letter-spacing: 1px;
        transition: .2s all;
        cursor: pointer;
        align-items: center;
        justify-content: center
    }

    .button_menu_collapse {
        display: flex !important;
        font-weight: 600;
        transition: 0.2s;
        background: linear-gradient(360deg, #da9256ad 0%, #da925663 55%);
        cursor: pointer;
        color: #fff;
        font-size: 17px;
        border: none;
        align-items: center;
        margin-right: 5px;
        height: 40px;
        width: 40px;
        border-radius: 50px;
        justify-content: center
    }

    .button_menu_collapse:hover {
        opacity: .7
    }

    .menu_top_push_active {
        display: none
    }

    .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
        flex-direction: row;
        flex-wrap: wrap
    }

    #new_news {
        margin-bottom: 20px
    }

    .flex-double {
        display: flex;
        gap: 15px;
        flex-direction: column
    }

    .add-click {
        background: #18233a;
        margin-bottom: 0;
        display: flex;
        height: 150px;
        padding: 24px 25px;
        width: 100%;
        border-radius: 15px;
        flex-direction: column
    }

    .add-click:hover {
        background: #18233a;
        margin-bottom: 0;
        display: flex;
        height: 150px;
        padding: 24px 25px;
        width: 100%;
        border-radius: 15px;
        flex-direction: column
    }

    .return-click {
        background: #18233a;
        margin-bottom: 30px;
        display: flex;
        height: 150px;
        padding: 24px 25px;
        border-radius: 15px;
        width: 100%;
        flex-direction: column
    }

    .return-click:hover {
        background: #18233a;
        margin-bottom: 30px;
        display: flex;
        opacity: .7;
        height: 150px;
        padding: 24px 25px;
        border-radius: 15px;
        width: 100%;
        flex-direction: column
    }

    .tabs__buttons--container {
        display: flex;
        margin-bottom: 10px;
        width: auto;
        overflow: auto;
        padding-bottom: 10px
    }

    .referal_block i {
        width: 40px;
        padding: 0 13px;
        height: 40px;
        background: linear-gradient(180deg, #3473ff 0%, rgb(80 134 255) 55%);
        border-radius: 10px;
        display: flex;
        color: #fff;
        margin-right: 17px;
        font-size: 19px;
        align-items: center;
        justify-content: center
    }

    .block-ref-link {
        background: #272f4200;
        border-radius: 13px;
        width: 100%
    }

    .referal_block {
        flex-direction: column
    }

    .three_support {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        flex-direction: column
    }

    .icon_support {
        background: #fff;
        width: 43px;
        height: 38px;
        display: none;
        border-radius: 10px;
        align-items: center;
        justify-content: center
    }

    .block_setting_left1 {
        width: 100%;
        padding: 0;
        margin-bottom: 40px
    }

    .block_setting_right1 {
        width: 100%;
        padding: 0;
        margin-left: 0
    }

    .referal_procent {
        border: none;
        background: #333d52;
        padding: 11px 35px;
        border-radius: 9px;
        color: #798499;
        text-align: center;
        width: 100%;
        font-size: 11px;
        transition: .2s all;
        font-weight: 600
    }

    .block_setting_left {
        width: 100%;
        padding: 0;
        margin-bottom: 30px
    }

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

    .black_list_button {
        width: 100%
    }

    .black_list_button:hover {
        border: none;
        background: #283652;
        padding: 11px 35px;
        transition: .2s all;
        border-radius: 9px;
        color: #fff;
        font-weight: 600
    }

    .black_list {
        flex-direction: column;
        align-items: flex-start
    }

    .block_setting_right {
        width: 100%;
        padding: 0;
        margin-left: 0
    }

    .block_setting_top {
        display: flex;
        padding: 0;
        padding-bottom: 16px;
        flex-direction: column;
        justify-content: space-between
    }

    .flex_edit_avatar_setting {
        flex-direction: column;
    }

    .flex_edit_date {
        gap: 0px !important;
        flex-direction: column;
    }

    .forum_button {
        font-size: 9.9px;
        font-weight: 600;
        position: relative;
        line-height: 0;
        color: #fff;
        margin-top: 19px;
        margin-bottom: 14px;
        text-align: center
    }

    .fbrs_online {
        font-size: 11px;
        color: #fff;
        width: 30px;
        border-radius: 8px;
        display: flex;
        background: linear-gradient(34deg, #289769 0%, rgb(53 180 127) 55%);
        height: 30px;
        align-items: center;
        justify-content: center
    }

    .text_online {
        display: flex;
        flex-direction: column;
        align-items: flex-start
    }

    .ring-container {
        position: relative;
        left: -15px;
        top: -55px;
        float: right;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .toper_mini_right {
        height: 70px;
        margin-bottom: 10px;
        width: 100%;
        border-radius: 15px;
        background: #1e263800;
        display: initial
    }

    .toper_mini_right1 {
        height: 100%;
        background: #1e2638;
        display: flex;
        border-radius: 15px;
        transition: .2s all;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start
    }

    .block_mini_profile {
        border-radius: 15px 15px 0 0;
        margin-bottom: -15px;
        padding: 13px 16px;
        margin-top: 30px;
        z-index: 1;
        background: #18233a;
        position: relative
    }

    .toper_mini_blocks {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column-reverse
    }

    .pursee-button {
        padding: 9px;
        height: 35px;
        background: linear-gradient(180deg, #3473ff 0%, rgb(80 134 255) 55%);
        line-height: 16px;
        font-size: 25px;
        top: 4px;
        display: none;
        color: #606676;
        position: relative;
        float: right;
        margin-left: auto;
        border-radius: 10px
    }

    .pretext {
        position: relative;
        font-size: 14px
    }

    .buttons_top {
        display: flex;
        position: relative;
        float: right;
        left: 120px
    }

    .banlist {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column
    }

    .topic-answers div[id^="answer"] .left-side {
        width: 100%
    }

    .right-side_flex {
        width: 100%;
        5: 500
    }

    .forum_shapka {
        display: flex;
        padding: 20px 0;
        justify-content: space-between;
        flex-direction: column
    }

    .forum_deatails {
        background: #272f42;
        padding: 10px 20px;
        height: 39px;
        color: #596174;
        font-weight: 600;
        overflow: hidden;
        margin-top: 10px;
        font-size: 10.5px;
        border-radius: 10px;
        margin-bottom: -5px
    }

    .block_back {
        display: flex;
        align-items: center;
        padding-right: 20px
    }

    .back_forum {
        min-width: 40px
    }

    .forum_next {
        overflow: hidden;
        border-radius: 11px;
        margin-bottom: 0;
        font-size: 11px;
        width: 100%;
        display: flex;
        color: #80849a;
        font-weight: 600;
        list-style: none;
        padding: 17px 0 17px 15px
    }

    .forum_next {
        flex-direction: column;
        gap: 4px
    }

    .forum_next li {
        border-right: none
    }

    .topic-answers div[id^="answer"] .right-side {
        width: 100%
    }

    .topic-answers div[id^="answer"] {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 15px;
        overflow: hidden;
        flex-direction: column
    }

    .chat_block {
        display: flex;
        flex-direction: column;
        padding: 0
    }

    .add_news {
        height: 40px;
        border: none;
        transition: 0.2s;
        margin-right: 6px;
        background: #272f42;
        font-weight: 600;
        color: #fff;
        font-size: 11px;
        border-radius: 9px;
        padding: 0 26px;
        cursor: pointer;
        display: none
    }

    .add_admins {
        height: 40px;
        border: none;
        width: 40px;
        transition: 0.2s;
        display: flex;
        margin-right: 6px;
        background: #212d47;
        font-weight: 600;
        color: #fff;
        font-size: 11px;
        border-radius: 9px;
        padding: 0 0;
        cursor: pointer;
        align-items: center;
        justify-content: center
    }

    .add_admins:hover {
        height: 40px;
        border: none;
        width: 40px;
        transition: 0.2s;
        display: flex;
        margin-right: 6px;
        background: #334366;
        font-weight: 600;
        color: #fff;
        font-size: 11px;
        border-radius: 9px;
        padding: 0 0;
        cursor: pointer;
        align-items: center;
        justify-content: center
    }

    .add_admins .admins_plus {
        display: block;
        font-size: 17px
    }

    .add_admins .admins_all {
        display: none
    }

    .answer {
        font-size: 10px;
        color: #58637800;
        margin-left: 120px;
        display: none;
        float: right;
        margin-right: 3px;
        transition: .2s all
    }

    .chat {
        padding-bottom: 0;
        width: 75%
    }

    .users_online_chat {
        width: auto;
        border-radius: 13px;
        margin: 15px 15px;
        margin-bottom: 10px
    }

    .sortion_block_head {
        background: #fff0;
        width: 100%;
        height: 380px;
        display: block;
        padding: 10px 0px
    }

    .head_rside {
        width: 100%;
        padding-top: 0px !important;
        padding: 15px;
        border-radius: 20px;
        margin: 0
    }

    .head_block {
        padding: 0px;
        flex-direction: column;
        background-size: 650% !important
    }

    .head_block:hover {
        background-size: cover
    }

    .chat {
        width: 100%;
        padding: 15px !important;
        padding-bottom: 10px !important;
        background: #fff0 !important;
        margin-bottom: 0px !important
    }

    .promo-code {
        background: #fff0;
        padding: 13px;
        border: dashed 1px #2f384d;
        border-radius: 13px;
        margin-bottom: 18px;
        margin-top: 14px;
        display: none
    }

    .block_message_avalon {
        display: flex;
        justify-content: space-between;
        background: #18233a;
        border-radius: 15px;
        padding: 15px;
        flex-direction: column
    }

    #companions {
        border-right: solid 1px #272f4200;
        width: 100%;
        height: auto;
        overflow: auto;
        margin-bottom: 30px
    }

    .block_mes_avalon {
        width: 100%;
        margin-right: 4px;
        height: 273px;
        padding-right: 10px
    }

    .show_user {
        color: #696969;
        line-height: 22px;
        font-size: 20px;
        height: 36px;
        width: 30px;
        transition: 0.2s;
        position: relative;
        cursor: pointer;
        top: 5px;
        border-radius: 10px
    }

    table.table.table-bordered tr {
        position: relative;
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
        padding: 10px 15px;
        height: auto;
        border-radius: 12px;
        border-top: solid 0 #23273600;
        flex-direction: column;
        align-items: flex-start
    }

    .table-responsive>table.table>thead>tr>th:first-child,
    .table-responsive>table.table>tbody>tr>th:first-child,
    .table-responsive>table.table>tfoot>tr>th:first-child,
    .table-responsive>table.table>thead>tr>td:first-child,
    .table-responsive>table.table>tbody>tr>td:first-child,
    .table-responsive>table.table>tfoot>tr>td:first-child {
        border-left: 0 !important;
        padding-right: 0;
        color: #fff;
        width: 10px;
        border-radius: 10px 0 0 10px;
        padding-left: 0
    }

    .zareg {
        border: none;
        background: linear-gradient(34deg, #3473ff 0%, rgb(80 134 255) 55%);
        border-radius: 9px;
        margin-top: 8px;
        margin-right: 1px;
        display: flex;
        width: 43px;
        height: 43px;
        font-size: 0;
        color: #ffff;
        transition: .2s all;
        font-weight: 600;
        justify-content: center;
        align-items: center
    }

    .zareg:hover {
        border: none;
        background: linear-gradient(34deg, #3473ff 0%, rgb(80 134 255) 55%);
        border-radius: 9px;
        opacity: .7;
        margin-top: 8px;
        margin-right: 1px;
        display: flex;
        width: 43px;
        height: 43px;
        font-size: 0;
        color: #ffff;
        transition: .2s all;
        font-weight: 600;
        justify-content: center;
        align-items: center
    }

    .zareg i {
        font-size: 19px;
        margin-right: 0
    }

    .news-button-bottom {
        cursor: pointer;
        text-align: center;
        display: flex;
        font-size: 9.5px;
        letter-spacing: 1px;
        padding: 11px 0;
        width: 100%;
        position: relative;
        font-weight: 600;
        border-radius: 50px;
        transition: .2s all;
        justify-content: center;
        align-items: center
    }


    .slick-list {
        position: relative;
        display: block;
        overflow: hidden;
        margin: 0;
        padding: 0;
        margin-left: -20px;
        margin-right: 0
    }

    .block_nick_group {
        text-align: left;
        margin-left: 35px;
        width: 125px;
        height: 10px;
        display: none
    }

    .wapper .header ul.user-menu>li.collapsible>a i {
        display: block;
        float: right;
        line-height: 30px;
        font-size: 10px
    }

    .wapper .header ul.user-menu>li>ul {
        z-index: 1013;
        display: none;
        position: absolute;
        right: calc(100% - 46px);
        width: 330px;
        height: auto;
        list-style: none;
        top: 60px;
        box-shadow: 0 5px 10px #13151a4f;
        background: linear-gradient(19deg, #323232 30%, #363636 100%);
        border-radius: 20px;
        overflow: hidden
    }

    .wapper .header ul.user-menu>li>ul>li {
        text-align: left;
        width: 100%;
        margin-left: 0;
        margin-right: 0
    }

    .wapper .header ul.user-menu>li>ul>li>a {
        font-weight: 600;
        color: #5a6a8c;
        font-size: 11px;
        display: block;
        border-radius: 10px;
        position: relative;
        height: 43px;
        margin: auto;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 225px;
        transition: 0.2s;
        padding: 10px;
        line-height: 5px;
        left: -25px
    }

    .header ul.user-menu>li>ul>li>a b {
        color: #5a6a8c;
        font-size: 8px;
        transition: .2s all;
        margin-left: 5px;
        background: #212d47;
        border-radius: 50px;
        position: relative;
        top: -1px;
        padding: 2px 9px
    }

    .header ul.user-menu>li>ul>li>a:hover b {
        color: #fff;
        font-size: 8px;
        transition: .2s all;
        margin-left: 5px;
        background: #5086ff;
        border-radius: 50px;
        position: relative;
        top: -1px;
        padding: 2px 9px
    }

    .header ul.user-menu>li>ul>li>a:hover i {
        color: #5086ff;
        transition: .2s all
    }

    .header ul.user-menu>li>ul>li>a i {
        color: #5a6a8c;
        font-size: 17px;
        margin-right: 5px;
        transition: .2s all;
        margin-left: 5px;
        position: relative;
        top: 3px
    }

    .wapper .header ul.user-menu>li>ul>li>a:hover {
        font-weight: 600;
        color: #fff;
        background: #212d47;
        font-size: 11px;
        display: block;
        border-radius: 10px;
        position: relative;
        height: 43px;
        line-height: 5px;
        margin: auto;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 225px;
        transition: 0.2s
    }

    .wapper .header ul.user-menu>li>ul>li:last-child>a {
        border-bottom: 0
    }

    .wapper .header-menu {
        position: absolute;
        top: 60px;
        border-radius: 20px;
        left: -12px;
        min-width: 300px;
        padding: 0 17px 0 17px;
        max-width: 300px;
        z-index: 1000;
        background: linear-gradient(19deg, #323232 30%, #363636 100%);
    }

    .wapper .header-menu .container {
        padding: 0;
        margin-top: 17px;
        margin-bottom: 17px
    }

    .wapper .header-menu .collapsible-menu {
        font-size: 14px;
        list-style: none outside none;
        position: relative;
        padding: 0;
        margin: 0
    }

    .wapper .header-menu .collapsible-menu>li {
        display: block;
        position: relative
    }

    .wapper .header-menu .collapsible-menu>li.collapsible {
        padding-right: 20px
    }

    .wapper .header-menu .collapsible-menu>li.collapsible::before {
        font-family: Font Awesome\ 5 Pro;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: .75em;
        vertical-align: -.0667em;
        font-weight: 900;
        content: "\f078";
        position: relative;
        z-index: 1010;
        background: #494949;
        color: #818181;
        font-size: 7.4px;
        line-height: 1px;
        width: 18px;
        margin-right: -7px;
        display: flex;
        height: 18px;
        border-radius: 50px;
        float: right;
        margin-top: 15px;
        justify-content: center;
        align-items: center
    }

    .wapper .header-menu .collapsible-menu>li.collapsible>a {
        width: calc(100% + 20px)
    }

    .wapper .header-menu .collapsible-menu>li>a {
        height: 48px;
        display: block;
        position: relative;
        padding: 0 15px;
        margin: 0;
        border-radius: 10px;
        line-height: 48px;
        font-weight: 600;
        color: #787878;
        font-size: 12px
    }

    .wapper .header-menu .collapsible-menu>li>a.open,
    .wapper .header-menu .collapsible-menu>li>a:hover {
        color: #fff;
        border-radius: 10px;
        background: #424242
    }

    .wapper .header-menu .collapsible-menu>li:last-child>a {
        border-bottom: 0
    }

    .wapper .header-menu .collapsible-menu>li ul {
        display: none;
        list-style: none;
        margin: 0;
        padding: 10px
    }

    .wapper .header-menu .collapsible-menu>li ul>li>a {
        position: relative;
        width: calc(100% - 30px);
        margin: 0 0 0 15px;
        padding: 0 10px;
        font-weight: 600;
        color: #fff;
        font-size: 11.5px;
        display: block;
        height: 50px;
        line-height: 50px;
        border-radius: 10px;
        transition: 0.2s
    }

    .wapper .header-menu .collapsible-menu>li ul>li:hover {
        background: #da925638;
        border-radius: 10px;
        transition: 0.2s
    }

    .wapper .header-menu .collapsible-menu>li ul>li:last-child a {
        border-bottom: 0
    }

    .collapsible_head {
        padding: 17px;
        background: linear-gradient(9deg, #da925638 30%, #464c62 100%);
        border-radius: 15px;
        overflow: hidden;
        display: flex;
        gap: 10px;
        margin: 15px 15px 10px 15px;
        align-items: center;
        justify-content: space-between
    }

    .collapsible_head .bxs-door-open {
        color: #ff7a70;
        transition: all 0.2s;
        background: #ff605424;
        width: 35px;
        border: solid 1px #ff665a3b;
        height: 35px;
        cursor: pointer;
        display: flex;
        position: relative;
        font-size: 15px;
        border-radius: 10px;
        justify-content: center;
        align-items: center
    }

    .collapsible_head .bxs-door-open:hover {
        color: #fff;
        background: #ff7a70;
        border: solid 1px #ff7a70
    }
}

.collapsible_head b {
    font-size: 13px;
    color: white
}

.collapsible_profile {
    position: relative;
    padding-left: 30%;
    top: 12px
}
}

.wapper #hidden-menu.collapse.show,
.wapper #hidden-menu.collapsing {
    display: block !important
}

.wapper .full-online {
    position: relative;
    top: -5px;
    display: inline-block;
    float: right;
    width: auto;
    height: 28px;
    background: rgba(255, 255, 255, .4);
    border-radius: 20px;
    line-height: 28px;
    padding-left: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    font-weight: 500
}

.wapper .full-online>span {
    height: 24px;
    background: #0bb07b;
    width: auto;
    padding: 0 10px;
    display: inline-block;
    border-radius: 20px;
    text-align: center;
    line-height: 24px !important;
    float: right;
    margin-top: 2px;
    margin-right: 2px;
    margin-left: 10px
}

.wapper .monitoring {
    height: 190px;
    max-height: 190px;
    width: 100%
}

.wapper .monitoring .container>.info-line {
    height: 20px;
    margin-bottom: 20px
}

.wapper .monitoring .container>.info-line span {
    text-transform: uppercase;
    color: #fff;
    line-height: 20px;
    font-size: 14px
}

.wapper .monitoring #servers {
    width: 100%;
    white-space: nowrap;
    background: #232540;
    padding: 20px;
    border-radius: 15px;
    height: 122px
}

.wapper .monitoring .monitoring-line .owl-stage-outer {
    position: relative;
    z-index: 1001
}

.wapper .monitoring .monitoring-line:hover .owl-nav,
.wapper .monitoring .monitoring-line .owl-nav:hover .owl-nav {
    opacity: 1
}

.wapper .monitoring .monitoring-line .owl-nav {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    opacity: 0;
    position: absolute;
    z-index: 1000;
    width: calc(100% + 40px);
    top: 42px;
    left: -20px
}

.wapper .monitoring .monitoring-line .owl-nav button {
    position: absolute;
    background: transparent !important
}

.wapper .monitoring .monitoring-line .owl-nav button span {
    color: rgba(255, 255, 255, .8);
    font-size: 50px
}

.wapper .monitoring .monitoring-line .owl-nav button.owl-prev {
    right: 0
}

.wapper .monitoring .monitoring-line .owl-nav button.owl-prev.disabled {
    opacity: 0 !important
}

.wapper .monitoring .monitoring-line .owl-nav button.owl-next {
    left: 0
}

.wapper .monitoring .monitoring-line .owl-nav button.owl-next.disabled {
    opacity: 0 !important
}

.wapper .monitoring .server {
    direction: ltr;
    position: relative;
    height: 80px;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    display: inline-block;
    text-align: left
}

.wapper .monitoring .server .map-image,
.wapper .monitoring .server .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.wapper .monitoring .server .map-image,
.wapper .monitoring .server .shadow {
    background-size: 100% auto;
    background-position: center center
}

.wapper .monitoring .server .shadow {
    background: rgb(43 46 78)
}

.wapper .monitoring .server p,
.wapper .monitoring .server strong,
.wapper .monitoring .server a {
    position: absolute;
    display: block;
    width: calc(100% - 16px);
    margin: 0;
    left: 8px
}

.wapper .monitoring .server p {
    top: 45px;
    font-weight: 500;
    line-height: 16px;
    font-size: 10px;
    color: rgba(255, 255, 255, .8)
}

.wapper .monitoring .server p span {
    margin-right: 5px;
    font-size: 11px;
    top: -10px
}

.wapper .monitoring .server strong {
    top: 14px;
    font-weight: 600;
    line-height: 16px;
    font-size: 12px;
    margin-left: 25px;
    width: 85%;
    color: #fff
}

.wapper .monitoring .server a {
    top: 34px;
    font-weight: 500;
    line-height: 16px;
    font-size: 10.5px;
    margin-left: 25px
}

.wapper .monitoring .server a i {
    margin-left: 2px
}

.wapper .monitoring .server .progress {
    position: relative;
    bottom: -38px;
    right: 10px;
    width: 20%;
    float: left;
    transform: rotate(270deg);
    border-radius: 50px;
    height: 4px;
    background: #232540
}

.wapper .monitoring .server .progress .progress-bar {
    border-radius: 4px
}

.wapper .monitoring .server .progress .progress-bar.bg-info {
    background: -webkit-linear-gradient(271.35deg, #ff5980 1.46%, #ffa882 98.22%);
    background: -o-linear-gradient(271.35deg, #ff5980 1.46%, #ffa882 98.22%);
    background: linear-gradient(178.65deg, #8670ff 1.46%, #8670ff 98.22%)
}

.wapper .monitoring .server .progress .progress-bar.bg-success {
    background: -webkit-linear-gradient(271.35deg, #ffbb38 0%, #f07300 98.38%);
    background: -o-linear-gradient(271.35deg, #ffbb38 0%, #f07300 98.38%);
    background: linear-gradient(178.65deg, #8670ff 0%, #8670ff 98.38%)
}

.wapper .monitoring .server .progress .progress-bar.bg-warning {
    background: -webkit-linear-gradient(271.35deg, #ffbb38 0%, #f07300 98.38%);
    background: -o-linear-gradient(271.35deg, #ffbb38 0%, #f07300 98.38%);
    background: linear-gradient(178.65deg, #8670ff 0%, #8670ff 98.38%)
}

.wapper .monitoring .server .progress .progress-bar.bg-danger {
    background: -webkit-linear-gradient(272.47deg, #57d968 2.52%, #00d590 100%);
    background: -o-linear-gradient(272.47deg, #57d968 2.52%, #00d590 100%);
    background: linear-gradient(177.53deg, #8670ff 2.52%, #8670ff 100%)
}

.wapper .monitoring tbody[id^="players"] .btn {
    margin-bottom: 0
}

.block_discord {
    padding: 24px 16px;
    margin-bottom: 25px
}

.block {
    padding: 24px 16px;
    margin-bottom: 30px
}

.block_flex1 {
    display: flex
}

.block .btn-block-head {
    float: right;
    display: inline-block;
    margin-top: 9px
}

.block.with-menu .block_head {
    position: relative;
    z-index: 1001
}

.block.with-menu ul {
    position: relative;
    z-index: 1000;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: -20px -16px -20px -16px
}

.block.block-table {
    padding: 10
}

.block.block-table>.block_head {
    margin: 0;
    padding: 0 16px
}

.block.block-table>.table-responsive {
    border: 0
}

.block.block-table .noty-block {
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 20px
}

.block .block_head {
    height: 50px;
    line-height: 24px;
    margin: -24px 0;
    border-radius: 11px;
    background: linear-gradient(23deg, #86502300 0%, #da92567a 55%);
    margin-bottom: 15px;
    display: flex;
    font-weight: 600;
    font-size: 12px;
    padding-left: 10px;
    margin-top: -10px;
    color: #fff;
    position: relative;
    align-items: center
}

.block .block_head span {
    color: #5a6076;
    font-size: 12px;
    position: relative;
    font-weight: 600;
    margin-left: 5px
}

.block .block_head a {
    color: #151515
}

.block .block_head_image {
    width: calc(100% + 60px);
    margin: -30px;
    margin-bottom: 30px;
    padding: 0;
    height: 70px;
    overflow: hidden;
    border-radius: 3px 3px 0 0
}

.block .table-adaptive.table-fused {
    overflow: hidden;
    border-radius: 4px;
    margin: 0 -15px;
    margin-bottom: -24px;
    margin-top: 8px
}

.authorization a.small {
    width: 100%;
    display: block;
    font-size: 12px;
    text-align: center;
    color: #747474;
    border: 0
}

.authorization a.small:hover {
    color: #fff
}

.authorization #steam_link {
    background-color: #3f3f3f;
    border: 0 !important;
    padding: 13px 10px;
    display: flex;
    width: 100%;
    border-radius: 9px;
    gap: 5px;
    color: #767676;
    font-size: 11.5px;
    align-items: center;
    justify-content: center
}

.authorization #steam_link:hover {
    color: #fff;
    background-color: #2b3a4e
}

.authorization #steam_link i {
    color: #767676;
    transition: 0.2s;
    font-size: 22px
}

.authorization #steam_link:hover i {
    color: #fff
}

.authorization #vk_link {
    border: 0 !important;
    padding: 13px 10px;
    display: flex;
    width: 100%;
    border-radius: 9px;
    gap: 5px;
    color: #767676;
    font-size: 11.5px;
    background-color: #3f3f3f;
    justify-content: center;
    align-items: center
}

.authorization #vk_link i {
    color: #767676;
    transition: 0.2s;
    font-size: 22px
}

.authorization #vk_link:hover {
    color: #fff;
    background-color: #07f
}

.authorization #vk_link:hover i {
    color: #fff
}

.authorization .row {
    margin-right: -5px;
    margin-left: -5px
}

.authorization .row>div[class^="col-"] {
    padding-right: 5px;
    padding-left: 5px
}

.authorization input.form-control,
.authorization .custom-file label.form-control,
.custom-file .authorization label.form-control {
    height: 48px;
    line-height: 48px
}

.authorization #result {
    margin-bottom: 10px
}

.registration .privacy-policy {
    border: 1px dashed #4b81ff;
    display: block;
    padding: 15px;
    border-radius: 10px;
    font-size: 10px;
    background: #477fff2b;
    color: #fff;
    line-height: 14px;
    margin-bottom: 10px
}

.registration a[onclick^="$('#registration').modal('hide');"] {
    width: 45px
}

.registration a[onclick*="vk"] {
    border: 0 !important;
    padding: 13px 10px;
    display: flex;
    width: 100%;
    border-radius: 9px;
    gap: 5px;
    color: #767676;
    font-size: 11.5px;
    background-color: #3f3f3f;
    justify-content: center;
    align-items: center
}

.registration a[onclick*="vk"] i {
    color: #767676;
    transition: 0.2s;
    font-size: 22px
}

.registration a[onclick*="vk"]:hover i {
    color: #fff;
    transition: 0.2s;
    font-size: 22px
}

.registration a[onclick*="steam"] i {
    color: #767676;
    transition: 0.2s;
    font-size: 22px
}

.registration a[onclick*="steam"]:hover i {
    color: #fff;
    transition: 0.2s;
    font-size: 22px
}

.registration a[onclick*="vk"]:hover {
    background-color: #0077ff !important;
    color: #ffff
}

.registration a[onclick*="steam"] {
    background-color: #3f3f3f;
    border: 0 !important;
    padding: 13px 10px;
    display: flex;
    width: 100%;
    border-radius: 9px;
    gap: 5px;
    color: #767676;
    font-size: 11.5px;
    align-items: center;
    justify-content: center
}

.registration a[onclick*="steam"]:hover {
    color: #fff;
    background-color: #2b3a4e !important
}

.mini-profile .block_head {
    height: 72px;
    padding: 16px
}

.mini-profile .block_head img {
    display: block;
    float: left;
    height: 40px;
    width: 40px;
    border-radius: 8px
}

.mini-profile .block_head div {
    width: calc(100% - 56px);
    float: right
}

.mini-profile .block_head div p,
.mini-profile .block_head div p>span {
    line-height: 20px;
    font-size: 14px;
    color: #8a94a6;
    margin: 0
}

.mini-profile .block_head div p b,
.mini-profile .block_head div p>span b {
    color: #0a1f44
}

.mini-profile .vertical-navigation {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background: #1b1b1b00;
    margin: -16px;
    margin-left: 0;
    margin-bottom: -25px
}

.mini-profile .vertical-navigation>ul {
    margin-bottom: 0
}

.mini-profile .vertical-navigation li.user-balance a {
    line-height: 60px;
    height: 60px;
    padding: 0 24px
}

.mini-profile .vertical-navigation li.user-balance a>i {
    position: relative
}

.mini-profile .vertical-navigation li.user-balance a div {
    width: calc(100% - 38px);
    float: right;
    height: 32px;
    margin-top: 12px;
    line-height: 16px;
    position: relative
}

.mini-profile .vertical-navigation li.user-balance a div p {
    color: #8a94a6;
    font-size: 12px;
    margin: 0;
    width: auto;
    display: inline
}

.mini-profile .vertical-navigation li.user-balance a div span {
    font-size: 14px;
    color: #0a1f44;
    font-weight: 500
}

.mini-profile .vertical-navigation li.user-balance a div i {
    font-size: 12px
}

.mini-profile .vertical-navigation li.user-balance a div button {
    position: absolute;
    height: 32px;
    line-height: 32px;
    right: 0;
    top: 2px
}

.mini-profile .vertical-navigation li.user-balance a div button i {
    position: relative;
    top: -2px;
    font-size: 12px;
    margin-left: 3px
}

.mini-profile .vertical-navigation li a {
    color: #696f83;
    transition: 0.2s
}

.mini-profile .vertical-navigation li a:hover {
    color: #fff;
    transition: 0.2s
}

.mini-profile .vertical-navigation li a>i {
    margin: 0 16px 0 0;
    font-size: 16px;
    display: inline-block;
    width: 16px;
    text-align: center
}

.vk-widgets div[id^="vk_groups"] {
    margin-bottom: 30px
}

.vk-widgets div[id^="vk_subscribe"] {
    margin: 2px 0
}

.our-steam-group {
    display: block;
    padding: 25px 16px;
    margin-bottom: 10px;
    background: #182c4f;
    position: relative
}

.our-steam-group span {
    font-weight: 700;
    line-height: 40px;
    font-size: 20px;
    letter-spacing: .5px;
    color: #fff
}

.our-steam-group i {
    color: #19abff;
    font-size: 50px;
    position: absolute;
    right: 20px;
    margin-top: -6px
}

.vertical-navigation {
    overflow: auto;
    display: flex;
    border-radius: 0;
    gap: 7px;
    background: #fff0;
    align-items: center
}

.vertical-navigation::-webkit-scrollbar {
    background: #40455800;
    height: 3px
}

.vertical-navigation li {
    list-style-type: none
}

.vertical-navigation li:first-child {
    border: 0
}

.vertical-navigation li a {
    line-height: 20px;
    padding: 14px 15px;
    padding-right: 30px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    text-transform: uppercase;
    border-radius: 50px;
    background: #3d3d3d;
    color: #828282;
    transition: 0.2s;
    align-items: center;
    justify-content: space-between
}

.vertical-navigation li a::before {
    content: '';
    position: relative;
    display: flex;
    width: 22px;
    min-width: 22px;
    min-height: 22px;
    height: 22px;
    font-size: 10px;
    border-radius: 50px;
    margin-right: 11px;
    background-color: #515151;
    align-items: center;
    justify-content: center
}

.vertical-navigation li a.active::before {
    content: '⏺';
    position: relative;
    display: flex;

    width: 22px;
    height: 22px;
    color: #da9256;
    font-size: 14px;
    border-radius: 50px;
    margin-right: 11px;
    background-color: #da925640 !important;
    justify-content: center;
    align-items: center
}

.vertical-navigation li a b {
    color: #6e7a91;
    font-size: 10px;
    transition: .2s all;
    font-weight: 500;
    background-color: #1e1e1e00
}

.vertical-navigation li a i {
    color: #6e7a9187;
    font-weight: 100;
    float: left;
    margin-right: 8px;
    font-size: 30px;
    background-color: #1e1e1e00
}

.vertical-navigation li a:hover {
    background: #414141;
    color: #fff
}

.vertical-navigation li a:hover b {
    color: #6e7a91;
    font-size: 10px;
    font-weight: 500;
    background-color: #1e1e1e00
}

.vertical-navigation li a.active {
    color: white;
    font-weight: 600;
    background-color: #494949;
}

.vertical-navigation li a.active b {
    color: #bbc5dd;
    font-size: 10px;
    font-weight: 500;
    background-color: #1e1e1e00
}

.vertical-navigation li a.active i {
    color: #5086ff;
    font-weight: 100;
    float: left;
    margin-right: 8px;
    font-size: 30px;
    background-color: #1e1e1e00
}

.vertical-navigation li.active a {
    color: white;
    font-weight: 600;
    padding: 14px 18px 14px 14px;
    background: #494949;
}

.vertical-navigation li.active a::before {
    content: '⏺';
    position: relative;
    display: flex;
 
    width: 22px;
    min-width: 22px;
    min-height: 22px;
    height: 22px;
    color: #da9256;
    font-size: 14px;
    border-radius: 50px;
    margin-right: 11px;
    background-color: #da925640;
    justify-content: center;
    align-items: center
}

.vertical-navigation.with-icons li a {
    position: relative;
    border-radius: 50px
}

.vertical-navigationn {
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
    width: 275px;
    text-align: center;
    margin-right: 10px;
    background: #212531;
    border-radius: 10px
}

.vertical-navigation.with-icons li a i {
    line-height: 20px;
    position: relative;
    text-align: center
}

#place_for_messages #messages {
    overflow-y: auto;
    height: 320px !important;
    margin-left: 10px
}

#place_for_messages textarea {
    border: 0;
    border-radius: 50px;
    font-size: 11px;
    padding-right: 100px;
    padding-left: 20px;
    resize: none;
    padding-top: 15px;
    margin-bottom: 31px;
    width: 100%;
    border: solid 1px #484848bd;
    background: #363636b3 !important;
    height: 48px
}

#place_for_messages .smile_input #smile_btn {
    top: px !important
}

#place_for_messages .dialog {
    margin-bottom: 8px;
    height: 80px;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer
}

#place_for_messages .dialog>div:nth-child(1) {
    float: left;
    width: 100%;
    padding-left: 20px;
    display: flex;
    gap: 13px;
    height: 80px;
    line-height: 13px;
    border-radius: 13px;
    background-color: #3c3c3c;
    transition: 0.2s;
    align-items: center
}

#place_for_messages .dialog>div:nth-child(1) img {
    height: 45px;
    width: 45px;
    border-radius: 12px
}

#place_for_messages .dialog>div:nth-child(1) div p {
    margin: 0;
    font-size: 11px;
    position: relative;
    font-weight: 600
}

#place_for_messages .dialog>div:nth-child(1) div p:nth-child(2) {
    font-size: 11px;
    line-height: 20px;
    font-weight: 600;
    color: #979797;
}

#place_for_messages .dialog>div:nth-child(1) div p:nth-child(3) {
    margin-top: 1px
}

#place_for_messages .dialog>div:nth-child(1) div p:nth-child(5),
#place_for_messages .dialog>div:nth-child(1) div p:nth-child(6) {
    margin-top: -5px
}

#place_for_messages .dialog>div:nth-child(1) div p:nth-child(6) {
    margin-left: 3px
}

#place_for_messages .dialog>div:nth-child(1) div p:nth-child(5),
#place_for_messages .dialog>div:nth-child(1) div p:nth-child(3),
#place_for_messages .dialog>div:nth-child(1) div p:nth-child(6) {
    font-size: 11px;
    font-weight: 600;
    line-height: 13px
}

#place_for_messages .dialog>div:nth-child(2) {
    width: 50px;
    height: 50px;
    margin-top: 15px;
    display: flex;
    transition: 0.2s;
    background: linear-gradient(25deg, #4d4d4d 30%, #5d5d5d 100%);
    right: 50px;
    position: absolute;
    text-align: center;
    border-radius: 13px;
    align-items: center;
    justify-content: center
}

#place_for_messages .dialog>div:nth-child(2) span {
    font-size: 15px;
    color: #999999;
}

#place_for_messages .dialog>div:nth-child(1):hover {
    background-color: #444444;
    transition: 0.2s;
    border-color: #1b1b1b00
}

#place_for_messages .dialog>div:nth-child(2):hover {
    background-color: #4c5069;
    opacity: .7
}

#chat {
    border-top: 1px solid #17171700;
    position: relative
}

#chat a.small {
    font-size: 14px
}

#chat .input-group {
    margin: -16px;
    margin-bottom: 0;
    width: calc(100% + 32px);
    top: 5px
}

#chat .input-group .smile_input {
    width: 100%;
    padding: 0 20px
}

#chat .input-group .smile_input input,
#chat .input-group .smile_input .custom-file label,
.custom-file #chat .input-group .smile_input label {
    height: 48px;
    line-height: 48px;
    padding-left: 66px;
    margin-top: 17px;
    padding-right: 85px;
    border: solid 1px #484848bd;
    background: #363636b3 !important;
}

#chat .input-group .smile_input #smile_btn {
    position: absolute;
    right: 67px;
    top: 34px;
    font-size: 16px;
    font-weight: 100
}

#chat .input-group .smile_input #smile_btn::after {
    color: #828282;
    transition: .2s all;
    border-radius: 8px;
    position: relative
}

#chat .input-group .smile_input #smile_btn:hover::after {
    color: #fff;
    transition: .2s all
}

#chat .input-group button {
    font-family: Font Awesome\ 5 Pro;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em;
    position: absolute;
    top: 4px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #171717;
    color: #1b1b1b !important;
    overflow: hidden;
    font-weight: 700
}

#chat .input-group button::before {
    position: absolute;
    font-weight: 400;
    content: "\f124";
    color: #fff;
    font-size: 20px;
    line-height: 49px;
    left: 8px;
    top: -5px
}

#chat #drop_zone {
    height: 100%;
    position: relative;
    margin: 0 -16px -16px -16px;
    width: calc(100% + 30px)
}

#chat #drop_zone>#drop_mask {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
    margin: -1px
}

#chat #drop_zone.loader {
    background: #fff;
    opacity: .4
}

#chat #drop_zone.hover,
#chat #drop_zone.error {
    font-family: Font Awesome\ 5 Pro;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em
}

#chat #drop_zone.hover #chat_messages,
#chat #drop_zone.error #chat_messages {
    height: 396px
}

#chat #drop_zone.hover:after,
#chat #drop_zone.error:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 2px;
    text-align: center;
    font-size: 400%;
    line-height: 500%;
    outline-offset: -10px
}

#chat #drop_zone.hover:after {
    content: "\f0c5";
    background: #e1effa;
    outline: 2px dashed #8db0cc;
    color: #0a1f44
}

#chat #drop_zone.error:after {
    content: "\f2ed";
    background: #fce3e3;
    outline: 2px dashed #e09292;
    color: #f03d3d
}

#chat #chat_messages .chat_message,
#chat #messages .chat_message {
    position: relative;
    overflow: hidden;
    padding: 8px 12px 10px 10px
}

#chat #chat_messages .chat_message:first-child,
#chat #messages .chat_message:first-child {
    border-top: 0
}

#chat #chat_messages .chat_message>a,
#chat #messages .chat_message>a {
    display: block;
    width: 36px;
    float: left
}

#chat #chat_messages .chat_message>a img,
#chat #messages .chat_message>a img {
    border-radius: 50%;
    height: 33px;
    width: 33px;
    transition: .15s all
}

#chat #chat_messages .chat_message>a img:active,
#chat #messages .chat_message>a img {
    border-radius: 50%;
    height: 33px;
    width: 33px;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    transition: .15s all
}

#chat #chat_messages .chat_message>a span,
#chat #messages .chat_message>a span {
    width: 100%;
    display: block;
    text-align: center;
    color: #777a85;
    line-height: 25px;
    right: 3px;
    position: relative;
    font-size: 10px;
    font-weight: 600
}

#chat #chat_messages .chat_message .message,
#chat #messages .chat_message .message {
    width: calc(100% - 6px);
    float: right;
    word-wrap: break-word;
    position: relative;
    font-size: 14px;
    right: 5px;
    line-height: 18px
}

#chat #chat_messages .chat_message .message .info,
#chat #messages .chat_message .message .info {
    line-height: 15px;
    font-size: 11px;
    display: block;
    font-weight: 600;
    height: 16px
}

#chat #chat_messages .chat_message .message .info .author,
#chat #messages .chat_message .message .info .author {
    float: left;
    position: relative;
    cursor: pointer
}

#chat #chat_messages .chat_message .message .with_code,
#chat #messages .chat_message .message .with_code {
    border-radius: 14px;
    padding: 15px 7px;
    display: flex;
    background: linear-gradient(0deg, #343434 30%, #383838 100%);
    max-width: max-content;
    margin-top: -22px;
    gap: 12px;
    padding-left: 15px;
    padding-top: 14px;
    font-weight: 600;
    font-size: 11px;
    line-height: 17px;
    color: #fff;
    flex-direction: row
}

#chat #chat_messages .chat_message .message .with_code:hover .share_login {
    border: none;
    transition: .2s all;
    background: #44485900;
    font-size: 10.5px;
    display: flex;
    color: #747474;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    transition: 0.2s;
    align-items: center;
    justify-content: center;
    animation: 0.3s show ease
}

@keyframes show {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#chat #chat_messages .chat_message .message .with_code .share_login:hover {
    border: none;
    transition: .2s all;
    background: #44485900;
    font-size: 10.5px;
    display: flex;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    transition: 0.2s;
    align-items: center;
    justify-content: center
}

#chat #chat_messages .chat_message .message .with_code img,
#chat #messages .chat_message .message .with_code img {
    width: 19px
}

#chat #chat_messages .chat_message .dell_message,
#chat #chat_messages .chat_message .edit_message,
#chat #messages .chat_message .dell_message,
#chat #messages .chat_message .edit_message {
    color: #4b566a;
    position: absolute;
    top: 3px;
    transition: .2s all;
    font-size: 11px;
    cursor: pointer
}

#chat #chat_messages .chat_message .dell_message,
#chat #chat_messages .chat_message .edit_message:hover,
#chat #messages .chat_message .dell_message,
#chat #messages .chat_message .edit_message {
    color: #aeb6c3;
    transition: .2s all;
    position: absolute;
    top: 3px;
    font-size: 11px;
    cursor: pointer
}

#chat #chat_messages .chat_message .dell_message,
#chat #messages .chat_message .dell_message {
    right: 0
}

#chat #chat_messages .chat_message .edit_message,
#chat #messages .chat_message .edit_message {
    right: 19px
}

#chat #chat_messages .chat_message textarea,
#chat #messages .chat_message textarea {
    margin: 15px 3px 3px;
    width: calc(100% - 10px)
}

#chat .auth-to-write {
    height: 48px;
    margin-top: 16px;
    margin-bottom: -25px;
    line-height: 46px
}

#chat .auth-to-write .btn {
    margin-top: 8px;
    margin-left: 8px;
    float: right
}

#passive {
    text-align: center
}

#smile_btn {
    font-family: Font Awesome\ 5 Pro;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em;
    width: 20px;
    height: 17px;
    line-height: 15px;
    cursor: pointer
}

#smile_btn::after {
    color: #6b6b6b;
    content: "\f118";
    font-weight: 500
}

.g_smile {
    height: 19px !important;
    width: 19px !important;
    margin-left: 2px;
    max-width: 19px;
    display: unset
}

.g_sticker {
    height: auto;
    width: auto
}

.popover-body>.smiles_box {
    overflow-x: hidden;
    overflow-y: scroll;
    width: 185px;
    height: 190px
}

.popover-body>.smiles_box .smile {
    cursor: pointer;
    margin: 7px;
    float: left;
    width: 21px;
    height: 21px;
    transition: .3s all
}

.popover-body>.smiles_box .smile:hover {
    cursor: pointer;
    margin: 7px;
    float: left;
    width: 21px;
    height: 21px;
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    transition: .2s all
}

.popover-body>.smiles_box .sticker {
    cursor: pointer;
    margin: 6px;
    float: left;
    width: 65px;
    height: 65px
}

.smiles_panel {
    width: 100%;
    margin-top: 5px;
    padding: 0 15px
}

.smiles_panel .smilebtn {
    display: block;
    width: 40px;
    height: 40px;
    padding: 5px;
    border: 1px solid #e1e4e8;
    border-radius: 2px
}

.smiles_panel .smilebtn img {
    width: 100%;
    height: 100%
}

.smiles_panel>.btn {
    margin: 0
}

.smiles_panel>.btn:nth-child(1) {
    width: 80px
}

.smiles_panel>.btn:nth-child(2) {
    width: 174px
}

.smiles_panel .owl-stage-outer {
    position: relative;
    z-index: 1061
}

.smiles_panel .owl-nav {
    position: absolute;
    z-index: 1060;
    width: calc(100% + 10px);
    top: 0;
    margin: 0 -20px;
    height: 40px;
    line-height: 1
}

.smiles_panel .owl-nav button {
    display: block;
    width: 15px;
    background: transparent;
    border: 1px solid #e1e4e8 !important;
    border-radius: 2px;
    height: 40px;
    line-height: 1
}

.smiles_panel .owl-nav button span {
    font-size: 25px;
    line-height: 12px
}

.smiles_panel .owl-nav button.owl-prev {
    float: left
}

.smiles_panel .owl-nav button.owl-next {
    float: right
}

.smiles-buy-panel {
    width: 100%;
    margin-top: 5px
}

.smiles-buy-panel button {
    margin: 0 !important
}

.smiles-buy-panel button:nth-child(1) {
    width: 100px
}

.smiles-buy-panel button:nth-child(2) {
    width: calc(100% - 100px)
}

.stickers_img {
    border-radius: 2px;
    width: 236px;
    height: 250px
}

.smile_input_forum .btn {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 0
}

.smile_input_forum #smile_btn {
    position: relative;
    transition: 0.2s;
    display: flex;
    font-size: 14px;
    line-height: 40px;
    height: 41px;
    width: 41px;
    border-radius: 10px;
    background: #353535;
    align-items: center;
    justify-content: center
}

.smile_input_forum #smile_btn:hover {
    background: #424242
}

.smile_input_forum #smile_btn::after {
    position: absolute;
    top: 0
}

#notifications_line {
    padding-bottom: 6px
}

.noty-block,
.bs-callout {
    border-radius: 4px;
    position: relative;
    display: block;
    /*background: #262f42;*/
    border-radius: 15px;
    width: 100%;
    padding: 27px 16px 20px 16px;
    font-weight: 600;
    font-size: 10px;
    color: #fff
}

.noty-block h5,
.bs-callout h5 {
    font-size: 10px;
    font-weight: 900;
    border-radius: 0;
    left: 17px;
    top: -42px;
    margin-bottom: -25px;
    position: relative;
    color: #676b78;
    width: 160px;
    line-height: 25px
}

.noty-block.info,
.noty-block.bs-callout-info,
.noty-block.success,
.noty-block.bs-callout-success,
.noty-block.error,
.noty-block.bs-callout-danger,
.noty-block.warning,
.noty-block.bs-callout-warning,
.noty-block.primary,
.bs-callout.info,
.bs-callout.bs-callout-info,
.bs-callout.success,
.bs-callout.bs-callout-success,
.bs-callout.error,
.bs-callout.bs-callout-danger,
.bs-callout.warning,
.bs-callout.bs-callout-warning,
.bs-callout.primary {
    color: #e0e3e9
}

.noty-block.info *,
.noty-block.bs-callout-info *,
.noty-block.success *,
.noty-block.bs-callout-success *,
.noty-block.error *,
.noty-block.bs-callout-danger *,
.noty-block.warning *,
.noty-block.bs-callout-warning *,
.noty-block.primary *,
.bs-callout.info *,
.bs-callout.bs-callout-info *,
.bs-callout.success *,
.bs-callout.bs-callout-success *,
.bs-callout.error *,
.bs-callout.bs-callout-danger *,
.bs-callout.warning *,
.bs-callout.bs-callout-warning *,
.bs-callout.primary * {
    line-height: 16px;
    color: #fff;
    font-weight: 600
}

.noty-block.info p,
.noty-block.bs-callout-info p,
.noty-block.success p,
.noty-block.bs-callout-success p,
.noty-block.error p,
.noty-block.bs-callout-danger p,
.noty-block.warning p,
.noty-block.bs-callout-warning p,
.noty-block.primary p,
.bs-callout.info p,
.bs-callout.bs-callout-info p,
.bs-callout.success p,
.bs-callout.bs-callout-success p,
.bs-callout.error p,
.bs-callout.bs-callout-danger p,
.bs-callout.warning p,
.bs-callout.bs-callout-warning p,
.bs-callout.primary p {
    font-weight: 600;
    line-height: 10px;
    margin-bottom: 0;
    font-size: 11px
}

.noty-block.info,
.noty-block.bs-callout-info,
.bs-callout.info,
.bs-callout.bs-callout-info {
    background-color: #3e4153;
    border-radius: 15px;
    font-size: 10.3px;
    display: flex;
    border: solid 1px #42465a;
    gap: 15px;
    font-weight: 600;
    height: auto
}

.noty-block.success,
.noty-block.bs-callout-success,
.bs-callout.success,
.bs-callout.bs-callout-success {
    border-radius: 15px;
    background: linear-gradient(1deg, #da925633 30%, #da9256 100%);
    font-size: 11px;
    padding: 20px;
    display: flex;
    height: auto;
    flex-direction: column
}

.noty-block.error,
.noty-block.bs-callout-danger,
.bs-callout.error,
.bs-callout.bs-callout-danger {
    background: linear-gradient(1deg, #dc6b6b1a 30%, #dc6b6b52 100%);
    border-radius: 13px;
    font-size: 11px;
    margin-top: 20px;
    display: flex;
    font-weight: 600;
    border: solid 1px #f44336;
    height: auto;
    flex-direction: column;
    align-items: center
}

.noty-block.warning,
.noty-block.bs-callout-warning,
.bs-callout.warning,
.bs-callout.bs-callout-warning {
    background-color: #ffad0d
}

.noty-block.primary,
.bs-callout.primary {
    background-color: #1e1e1e;
    -webkit-box-shadow: 0 18px 18px rgba(10, 31, 68, .05), 0 0 1px rgba(10, 31, 68, .1);
    box-shadow: 0 18px 18px rgba(10, 31, 68, .05), 0 0 1px rgba(10, 31, 68, .1)
}

.noty-block .m-icon.icon-remove,
.bs-callout .m-icon.icon-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    transition: .2s all;
    font-size: 9.5px;
    width: 20px;
    border-radius: 50px;
    height: 20px;
    display: flex;
    z-index: 1;
    font-weight: 500;
    background: #ff737326;
    color: #ff888866;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.noty-block .m-icon.icon-remove:hover,
.bs-callout .m-icon.icon-remove {
    background: #ff73733d;
    color: #ff8888ab
}

.noty-block .close,
.bs-callout .close {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 100;
    font-size: 11px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0
}

#events {
    background: #fff0
}

#events .event {
    position: relative;
    display: flex;
    padding: 20px 20px;
    gap: 15px;
    transition: 0.2s;
    background: linear-gradient(15deg, #313131de 30%, #3f3f3fde 100%);
    border: solid 1px #3c3c3c;
    border-radius: 15px;
    margin-bottom: 10px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start
}

#events .event>div {
    position: relative;
    line-height: 12px
}

#events .event>a:not(.btn) {
    display: block;
    color: #ffff;
    margin-left: 10px;
    font-size: 11px;
    background: #2e364a00;
    line-height: 60px;
    font-weight: 700
}

#events .event>a:not(.btn) img {
    width: 30px;
    height: 30px;
    float: left;
    border-radius: 50%;
    margin: 15px 10px 18px 0
}

#events .event>span {
    color: #fff;
    float: left;
    display: block;
    height: 100%;
    width: 25%;
    padding-right: 10px;
    padding-left: 10px;
    line-height: 70px
}

#events .event>a.btn {
    float: left;
    display: block;
    width: 15%;
    margin-top: 22.5px;
    line-height: 21px;
    margin-bottom: 22.5px
}

#events .event>i {
    position: absolute;
    right: 8px;
    transition: .2s all;
    top: 8px;
    font-size: 9px;
    width: 19px;
    line-height: 1px;
    border-radius: 50px;
    height: 19px;
    display: flex;
    z-index: 1;
    font-weight: 500;
    background: #ff737326;
    color: #ff888866;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

#events .event>i:hover {
    background: #ff73733d;
    color: #ff8888ab
}

@media (max-width: 991.99px) {
    #events .event>div {
        width: calc(100% - 50px)
    }

    #events .event>a:not(.btn) {
        width: 50px
    }

    #events .event>a:not(.btn) img {
        margin-right: 0;
        margin-left: 10px
    }

    #events .event>a:not(.btn) span {
        display: none
    }

    #events .event>span {
        display: none
    }

    #events .event>a.btn {
        display: none
    }
}

.site-stats {
    background: #ffffff00;
    top: -3px;
    position: relative
}

.site-stats strong {
    margin-left: 12px;
    line-height: 24px;
    font-size: 12.5px
}

.site-stats strong span {
    background: #828aff;
    border-radius: 66px;
    margin-left: 5px;
    padding: 1px 10px;
    font-size: 11px;
    color: #fff
}

.site-stats #site_stats {
    margin: -24px -16px;
    margin-bottom: 16px
}

.site-stats #site_stats div.col-lg-4 {
    padding: 16px 47px
}

.site-stats #site_stats div.col-lg-4 i {
    width: 48px;
    height: 48px;
    display: block;
    float: left;
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    background: #f1f2f4;
    font-size: 18px
}

.site-stats #site_stats div.col-lg-4 div {
    width: calc(100% - 68px);
    float: right
}

.site-stats #site_stats div.col-lg-4 div b {
    color: #0a1f44;
    font-weight: 700;
    line-height: 23px;
    font-size: 28px
}

.site-stats #site_stats div.col-lg-4 div span {
    color: #8a94a6;
    font-weight: 500;
    line-height: 16px;
    font-size: 12px;
    text-transform: uppercase
}

.site-stats #online_users a {
    margin-right: 5px
}

.site-stats #online_users,
.site-stats #load_last_online {
    color: #1b1b1b
}

.site-stats #online_users a,
.site-stats #load_last_online a {
    display: inline-block;
    width: 36px;
    height: 32px;
    margin-right: -15px;
    margin-bottom: 15px
}

.site-stats #online_users a img,
.site-stats #load_last_online a img {
    width: 40px;
    transition: .3s all;
    height: 40px;
    border: solid 3px #1e2638;
    border-radius: 50%
}

.site-stats #online_users a img:hover,
.site-stats #load_last_online a img:hover {
    width: 40px;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    transition: .3s all;
    height: 40px;
    border-radius: 50%
}

.site-stats #online_users {
    margin: -37px -16px;
    margin-bottom: 10px;
    padding: 54px 32px 0 28px;
    border-radius: 15px 15px 0 0;
    background: #1e2638
}

.site-stats #load_last_online {
    padding: 55px 16px 20px 27px;
    margin: -40px -16px;
    background: #1e2638;
    border-radius: 0 0 15px 15px
}

.site-stats .empty-element {
    border: 0
}

.servers-online-line {
    border-radius: 50px;
    overflow: hidden;
    height: 39px;
    width: 39px;
    position: absolute;
    display: flex;
    background: #38456100;
    border: 1px solid #2c2c2c00;
    align-items: center;
    justify-content: center
}

.servers-online-line .progress-val {
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 30px;
    font-size: 13px
}

.servers-online-line .progress-bar {
    margin: -1px;
    border-radius: 3px 0 0 3px
}

.servers-online-line .progress-bar.bg-info {
    background-color: #ff050500 !important;
    width: 35px !important;
    filter: blur(6px);
    background: radial-gradient(circle, rgb(255 169 97 / 49%) 20%, rgb(58 63 82 / 0%) 52%);
    box-shadow: 0 0 10px 0 #3a3f5200;
    height: 35px !important
}

.servers-online-line .progress-bar.bg-success {
    background-color: #ff050500 !important;
    width: 35px !important;
    filter: blur(6px);
    background: radial-gradient(circle, rgb(255 169 97 / 49%) 20%, rgb(58 63 82 / 0%) 52%);
    box-shadow: 0 0 10px 0 #3a3f5200;
    height: 35px !important
}

.servers-online-line .progress-bar.bg-warning {
    background-color: #ff050500 !important;
    width: 35px !important;
    filter: blur(6px);
    background: radial-gradient(circle, rgb(255 130 130 / 63%) 20%, rgb(52 57 74 / 0%) 52%);
    box-shadow: 0 0 10px 0 #34394a00;
    height: 35px !important
}

.servers-online-line .progress-bar.bg-danger {
    background-color: #ff050500 !important;
    width: 35px !important;
    filter: blur(6px);
    background: radial-gradient(circle, rgb(255 130 130 / 63%) 20%, rgb(52 57 74 / 0%) 52%);
    box-shadow: 0 0 10px 0 #34394a00;
    height: 35px !important
}

#last_activity>div,
#last_activity>span,
#mybans>div,
#mybans>span {
    display: flex;
    background: linear-gradient(154deg, #da92561c 10%, #474645 60%);
    border-radius: 12px;
    backdrop-filter: blur(1px);
    margin-top: 10px;
    gap: 15px;
    padding: 12px 16px 14px 16px;
    align-items: center;
    justify-content: space-between
}

#last_activity>div:first-child,
#last_activity>span:first-child,
#mybans>div:first-child,
#mybans>span:first-child {
    border-top: 0
}

#last_activity>div>p,
#last_activity>span>p,
#mybans>div>p,
#mybans>span>p {
    display: block;
    width: 100%;
    margin: 0;
    font-style: "Open Sans"
}

#last_activity>div>p:nth-child(1),
#last_activity>span>p:nth-child(1),
#mybans>div>p:nth-child(1),
#mybans>span>p:nth-child(1) {
    margin-bottom: 2px
}

#last_activity>div>p:nth-child(1) a,
#last_activity>span>p:nth-child(1) a,
#mybans>div>p:nth-child(1) a,
#mybans>span>p:nth-child(1) a {
    color: #fff;
    line-height: 22px;
    font-size: 12px;
    font-weight: 600
}

#last_activity>div>p:nth-child(2),
#last_activity>span>p:nth-child(2),
#mybans>div>p:nth-child(2),
#mybans>span>p:nth-child(2) {
    color: #737993;
    font-size: 10.5px;
    line-height: 8px
}

#last_activity>div>p:nth-child(2) a,
#last_activity>span>p:nth-child(2) a,
#mybans>div>p:nth-child(2) a,
#mybans>span>p:nth-child(2) a {
    margin-right: 5px
}

#last_activity>div>p:nth-child(2) a img,
#last_activity>span>p:nth-child(2) a img,
#mybans>div>p:nth-child(2) a img,
#mybans>span>p:nth-child(2) a img {
    width: 16px;
    height: 16px;
    border-radius: 4px
}

#mybans>div {
    display: none
}

#mybans>div:nth-child(1),
#mybans>div:nth-child(2),
#mybans>div:nth-child(3) {
    display: block
}

#mybans>div:nth-child(3) {
    margin-bottom: -19px
}

#mybans>div:nth-child(4) {
    margin-top: 19px
}

.popover_avatar {
    width: 50px;
    height: 50px;
    margin: -5px -8px;
    border-radius: 2px
}

#new_news>.col-lg-4 div,
.news>.col-lg-4 div {
    margin-bottom: 30px;
    width: 100%;
    height: 265px;
    border-radius: 15px;
    overflow: hidden;
    position: relative
}

#new_news>.col-lg-4 div img,
.news>.col-lg-4 div img {
    position: absolute;
    height: 100%
}

#new_news>.col-lg-4 div .shadow,
.news>.col-lg-4 div .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 32px 16px;
    background: #2125316b
}

#new_news>.col-lg-4 div a,
.news>.col-lg-4 div a {
    color: #fff
}

#new_news>.col-lg-4 div a:nth-child(2),
.news>.col-lg-4 div a:nth-child(2) {
    margin-top: 15px
}

#new_news>.col-lg-4 div a:nth-child(2) h3,
.news>.col-lg-4 div a:nth-child(2) h3 {
    font-weight: 600;
    line-height: 26px;
    font-size: 18px
}

#new_news>.col-lg-4 div a:nth-child(3),
.news>.col-lg-4 div a:nth-child(3) {
    position: absolute;
    bottom: 32px;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff
}

#new_news>.col-lg-4 div a:nth-child(3) i,
.news>.col-lg-4 div a:nth-child(3) i {
    font-size: 80%;
    color: #8a94a6
}

.comment {
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
    background: linear-gradient(0deg, #323232 30%, #393939 100%);
    border-radius: 15px;
    padding: 20px 20px 5px 20px
}

.comment>a {
    display: block;
    width: 32px;
    float: left
}

.comment>a img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background: linear-gradient(50deg, #52556b00 30%, #585e7b 100%);
    padding: 3px;
    position: relative;
    top: -3px
}

.comment>a span {
    width: 100%;
    display: block;
    text-align: center;
    color: #8a94a6;
    line-height: 24px;
    font-size: 10px
}

.comment .message {
    width: calc(100% - 40px);
    float: right;
    word-wrap: break-word;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    left: 10px;
    line-height: 18px
}

.comment .message .info {
    line-height: 8px;
    display: block;
    height: 15px
}

.comment .message .info .author {
    float: left;
    position: relative;
    transition: .2s all;
    position: relative
}

.comment .message .with_code {
    border-radius: 4px 15px 15px 15px;
    padding: 0;
    max-width: 80%;
    background: #fff0;
    font-weight: 600;
    font-size: 11px;
    line-height: 15px;
    color: #b7b7b7
}

.comment .dell_message {
    color: #6f6f6f;
    position: absolute;
    top: 2px;
    font-size: 10px;
    cursor: pointer;
    transition: 0.2s
}

.comment .dell_message:hover {
    color: #fff
}

.comment .dell_message {
    right: 0
}

#dop #imgs img {
    margin-bottom: 10px
}

#dop #img_result p {
    margin-bottom: 10px
}

.ban-application.ban-information p {
    margin-bottom: 0;
    font-size: 11px;
    font-weight: 600;
    color: #5a6a8c
}

.ban-application #closed .m-icon {
    display: none
}

#forum .row {
    margin: 0;
    margin-top: 10px;
    border-radius: 12px
}

#forum .row .col-lg-8 {
    padding-top: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #2d3b59;
    display: flex;
    align-items: center
}

#forum .row .col-lg-8 img {
    border-radius: 10px;
    height: 48px;
    width: 48px;
    float: left;
    margin-right: 16px
}

#forum .row .col-lg-8>div {
    width: calc(100% - 64px);
    float: right
}

#forum .row .col-lg-8>div h3 {
    margin: 0;
    line-height: 18px
}

#forum .row .col-lg-8>div h3 a {
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    color: #fff
}

#forum .row .col-lg-8>div p {
    line-height: 20px;
    font-size: 11px;
    font-weight: 600;
    margin: 0;
    color: #5a6a8c
}

#forum .row .col-lg-4 {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2d3b59
}

#forum .row .col-lg-4 div {
    border-left: 1px solid #2d3b59;
    height: 48px;
    padding-left: 16px
}

#forum .row .col-lg-4 div img {
    margin-top: 12px;
    height: 28px;
    width: 28px;
    float: left;
    border-radius: 8px
}

#forum .row .col-lg-4 div p {
    width: calc(100% - 40px);
    float: right;
    font-size: 10.5px;
    line-height: 16px;
    font-weight: 600;
    color: #5a6a8c;
    display: inline-block;
    margin: 0
}

#forum .row .col-lg-4 div p a {
    font-weight: 600;
    font-size: 11px;
    color: #0c66ff
}

#forum .row .col-lg-4 div p i {
    font-size: 10px;
    margin-right: 2px;
    display: none
}

#forum .row>div:nth-last-child(1),
#forum .row>div:nth-last-child(2) {
    border-bottom: 0
}

.forum-info {
    background: #212531;
    height: 100px;
    border-radius: 15px;
    margin-bottom: 50px;
    position: relative;
    padding: 20px 0
}

.forum-info div {
    position: relative
}

.forum-info div .go-to-back {
    float: left;
    display: block;
    background: #393f52;
    border-radius: 12px;
    height: 48px;
    width: 48px;
    font-size: 13px;
    margin-left: 10px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    margin-top: 6px;
    margin-right: 25px
}

.forum-info div .go-to-back:hover {
    float: left;
    display: block;
    background: #41475a;
    border-radius: 12px;
    height: 48px;
    width: 48px;
    font-size: 13px;
    margin-left: 10px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    margin-top: 6px;
    margin-right: 25px
}

.forum-info div h3 {
    line-height: 24px;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    padding-top: 6px
}

.forum-info div p {
    line-height: 24px;
    font-size: 11.5px;
    font-weight: 600;
    color: #7a8091
}

.forum-info div p span {
    line-height: 16px;
    font-size: 12px;
    margin-right: 13px;
    color: #8a94a6
}

.forum-info div p span i {
    color: #a6aebc;
    margin-right: 6px
}

.forum-info div #pagination2 {
    position: absolute;
    left: 79px;
    bottom: -18px;
    margin: 0
}

.forum-info div #pagination2 .pagination>li>a,
.forum-info div #pagination2 .pagination>li>span {
    height: 18px;
    width: 18px;
    margin: 0 3px;
    line-height: 16px;
    font-size: 10px
}

.forum-info div #pagination2 .pagination>li:first-child>a>span::before,
.forum-info div #pagination2 .pagination>li:last-child>a>span::before {
    font-size: 9px
}

.forum-info div .add-topic,
.forum-info div .dell-topic {
    z-index: 1012;
    -webkit-box-shadow: 0 26px 26px rgba(10, 31, 68, .12), 0 0 1px rgba(10, 31, 68, .1);
    box-shadow: 0 26px 26px rgba(10, 31, 68, .12), 0 0 1px rgba(10, 31, 68, .1);
    display: block;
    position: absolute;
    height: 48px;
    width: 48px;
    border-radius: 12px;
    color: white;
    text-align: center;
    line-height: 48px;
    margin-right: 25px;
    font-size: 13px;
    bottom: 0
}

.forum-info div .add-topic {
    background: #393f52;
    right: 0
}

.forum-info div .add-topic:hover {
    background: #40475b;
    right: 0
}

.forum-info div .dell-topic {
    right: 60px;
    background: #f03d3d
}

.forum-info h3 i.fa-lock,
.forum-info h3 i.fa-paperclip,
#forum_topics h3 i.fa-lock,
#forum_topics h3 i.fa-paperclip {
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-block;
    font-size: 10px;
    text-align: center;
    line-height: 22px;
    margin-right: 1px
}

.forum-info h3 i.fa-paperclip,
#forum_topics h3 i.fa-paperclip {
    background: #5086ff;
    margin-left: 5px
}

.forum-info h3 i.fa-lock,
#forum_topics h3 i.fa-lock {
    background: #ff6868
}

#forum_topics {
    padding: 15px 16px
}

#forum_topics .row .col-lg-9 {
    padding: 16px;
    border-bottom: 1px solid #2c3956
}

#forum_topics .row .col-lg-9 h3 {
    line-height: 24px;
    font-size: 15px
}

#forum_topics .row .col-lg-9 h3 a {
    color: #fff;
    margin-left: 3px;
    position: relative;
    font-size: 13px;
    top: 1px
}

#forum_topics .row .col-lg-9 p {
    line-height: 16px;
    font-size: 13px;
    margin: 0
}

#forum_topics .row .col-lg-9 p span {
    line-height: 16px;
    font-size: 11px;
    margin-right: 6px;
    color: #5a6a8c
}

#forum_topics .row .col-lg-9 p span img {
    border-radius: 7px;
    width: 25px;
    height: 25px;
    margin-right: 8px;
    margin-left: 2px
}

#forum_topics .row .col-lg-9 p span a {
    position: relative
}

#forum_topics .row .col-lg-9 p span i {
    color: #a6aebc;
    margin-right: 6px
}

#forum_topics .row .col-lg-3 {
    padding: 16px;
    border-bottom: 1px solid #2c3956
}

#forum_topics .row .col-lg-3 div {
    padding: 12px 18px;
    display: flex;
    height: 49px;
    justify-content: flex-start;
    align-items: center
}

#forum_topics .row .col-lg-3 div img {
    height: 33px;
    width: 33px;
    border-radius: 8px;
    float: left;
    margin-top: 3px
}

#forum_topics .row .col-lg-3 div p {
    color: #5a6a8c;
    display: block;
    width: calc(100% - 45px);
    float: left;
    margin: 0 0 0 10px;
    font-size: 11px;
    line-height: 16px
}

#forum_topics .row .col-lg-3 div p i {
    color: #a6aebc;
    font-size: 11px;
    margin-right: 3px
}

#forum_topics .row>div:nth-last-child(1),
#forum_topics .row>div:nth-last-child(2) {
    border-bottom: 0
}

.topic-answers {
    background: #1b1b1b00
}

.topic-answers div[id^="answer"]::after {
    clear: both;
    display: table;
    content: " ";
    position: absolute;
    bottom: 0;
    background: #f1f2f400;
    width: calc(100% - 58px);
    height: 1px;
    left: 26px
}

.topic-answers div[id^="answer"] .right-side a.date,
.topic-answers div[id^="answer"] .right-side span {
    font-size: 11px
}

.topic-answers div[id^="answer"] .right-side a.date a,
.topic-answers div[id^="answer"] .right-side span a {
    color: #fff;
    margin-left: 5px;
    margin-right: 5px
}

.topic-answers div[id^="answer"] .right-side a.date i,
.topic-answers div[id^="answer"] .right-side span i {
    font-size: 12px;
    margin-right: 3px;
    color: #a6aebc
}

.topic-answers div[id^="answer"] .right-side .with_code {
    padding: 0;
    line-height: 20px;
    background: #25293600;
    margin-top: 10px;
    font-size: 12px
}

.topic-answers div[id^="answer"] .right-side .signature {
    line-height: 16px;
    font-size: 12px
}

.topic-answers div[id^="answer"] .right-side .thank_str {
    font-size: 11px;
    font-weight: 600;
    color: #7a7e96;
    overflow: hidden
}

.topic-answers div[id^="answer"] .right-side .thank_str a {
    color: #8baea9
}

.topic-answers div[id^="answer"] .right-side .likes-area {
    padding: 8px 0;
    position: absolute;
    width: calc(100% - 64px);
    top: -12px;
    right: -3px
}

.topic-answers div[id^="answer"] .right-side .likes-area .btn,
.topic-answers div[id^="answer"] .right-side .likes-area .btn:focus {
    margin: 0 3px;
    border: 0;
    padding: 5px 20px;
    text-align: center;
    -webkit-box-shadow: 0 3px 4px rgba(10, 31, 68, .1), 0 0 1px rgba(10, 31, 68, .08);
    box-shadow: 0 3px 4px rgba(10, 31, 68, .1), 0 0 1px rgba(10, 31, 68, .08);
    border-radius: 7px
}

.topic-answers div[id^="answer"] .right-side .likes-area i {
    margin: 0;
    text-align: center
}

.topic-answers div[id^="answer"] .right-side::after {
    display: block;
    content: " "
}

@media (max-width: 991.99px) .authorization {
    width:100%;
    margin-top:130px;
    padding:24px 16px;
    border-radius:10px;
    background:#242a40;
    margin-bottom:30px
}

    {
    .forum-info {
        border-top: 0;
        background: #1b1b1b
    }

    .forum-info.no-shadow {
        border-bottom: 1px solid #f1f2f4;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .podtoper {
        background: #242a40;
        width: 93%;
        position: relative;
        height: 130px;
        top: 220px;
        margin-left: 15px;
        border-radius: 15px;
        margin-right: auto;
        margin-bottom: 300px
    }

    .topzag {
        color: #7d70ff;
        font-size: 30px;
        top: 10px;
        position: relative;
        margin-left: 85px
    }

    .toptext {
        position: relative;
        top: 30px;
        text-align: center;
        font-size: 10px;
        color: #7b839b;
        width: 450px;
        font-weight: 600;
        line-height: 17px;
        margin-left: -62px
    }

    a.button10 {
        color: white;
        position: absolute;
        top: 218px;
        font-weight: 100;
        font-size: 18px;
        width: 56px;
        text-align: center;
        height: 56px;
        line-height: 55px;
        border-radius: 10px;
        border: 1.5px solid #7d70ff;
        background: #323a5800;
        transition: .2s all
    }

    a.button10: hover {
        color: white;
        position: absolute;
        top: 218px;
        font-weight: 100;
        font-size: 18px;
        width: 56px;
        text-align: center;
        height: 56px;
        line-height: 55px;
        border-radius: 10px;
        border: 1.5px solid #7d70ff;
        background: #7d70ff;
        transition: .2s all
    }

    .toptop {
        background: #1e233600;
        width: 100%;
        position: relative;
        top: 80px;
        margin-left: 300px;
        right: 270px
    }

    .topic-answers {
        margin: 0 -15px
    }

    .topic-answers div[id^="answer"] {
        background: #1b1b1b;
        -webkit-box-shadow: 0 3px 4px rgba(10, 31, 68, .1), 0 0 1px rgba(10, 31, 68, .08);
        box-shadow: 0 3px 4px rgba(10, 31, 68, .1), 0 0 1px rgba(10, 31, 68, .08);
        position: relative;
        display: block;
        overflow: hidden
    }

    .topic-answers div[id^="answer"]: :after {
        display: none
    }

    .topic-answers div[id^="answer"]: not(:first-child) {
        border-top: 1px solid #f1f2f4
    }

    .topic-answers div[id^="answer"] .left-side {
        width: 100%;
        padding: 14px;
        text-align: left;
        -webkit-box-shadow: -1px 0 26px rgba(10, 31, 68, .12);
        box-shadow: -1px 0 26px rgba(10, 31, 68, .12)
    }

    .topic-answers div[id^="answer"] .left-side img {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        margin: 0
    }

    .topic-answers div[id^="answer"] .left-side a {
        line-height: 27px;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        margin-left: 10px
    }

    .topic-answers div[id^="answer"] .left-side p,
    .topic-answers div[id^="answer"] .left-side span {
        display: none
    }

    .topic-answers div[id^="answer"] .right-side {
        position: relative;
        padding: 14px 14px 56px;
        width: 100%
    }

    .topic-answers div[id^="answer"] .right-side .likes-area {
        width: calc(100% - 28px)
    }
}

#sections .block_head {
    margin-bottom: 16px
}

#sections .btn .m-icon {
    color: white
}

.btn-group-toggle .btn.btn-default.active {
    color: #ffff;
    padding: 25px !important;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%) !important;
    border-radius: 10px !important
}

.btn-group-toggle .btn.btn-default:not(.btn-sm) {
    line-height: 26px
}

form[id^="section_settings"] .btn-group-toggle>label,
div#add_section .btn-group-toggle>label {
    font-size: 14px;
    height: 30px;
    padding: 5px 11px;
    margin: 0 5px 5px 0
}

table tbody[id^="forums"] img {
    display: block;
    margin: 0 auto;
    height: 50px;
    width: 50px
}

table tbody[id^="forums"] tr td {
    padding: 5px
}

table tbody[id^="forums"] tr td:first-child {
    max-width: 60px
}

table tbody[id^="forums"] tr td:nth-child(2) {
    max-width: 150px
}

table tbody[id^="forums"] tr td:nth-child(2) input,
table tbody[id^="forums"] tr td:nth-child(2) .custom-file label,
.custom-file table tbody[id^="forums"] tr td:nth-child(2) label {
    width: 100%
}

table tbody[id^="forums"] tr td input,
table tbody[id^="forums"] tr td .custom-file label,
.custom-file table tbody[id^="forums"] tr td label {
    margin: 0
}

#banlist div[id^="baninfo"] i {
    font-style: normal !important
}

#banlist div[id^="baninfo"] input,
#banlist div[id^="baninfo"] .custom-file label,
.custom-file #banlist div[id^="baninfo"] label {
    margin: 0
}

#muts div[id^="muteinfo"] i {
    font-style: normal !important
}

#muts div[id^="muteinfo"] input,
#muts div[id^="muteinfo"] .custom-file label,
.custom-file #muts div[id^="muteinfo"] label {
    margin: 0
}

#server_admins tr[id^="admin"]>td>i[class^="fa"],
#server_admins tr[id^="admin"]>td>.m-icon,
#admins tr[id^="admin"]>td>i[class^="fa"],
#admins tr[id^="admin"]>td>.m-icon {
    margin-left: 5px;
    color: #0c66ff;
    font-size: 12px;
    cursor: pointer
}

#server_admins div[id^="admin_info"] table tbody tr td,
#admins div[id^="admin_info"] table tbody tr td {
    font-size: 13px;
    padding: 7px
}

#server_admins div[id^="admin_info"] .services-title,
#admins div[id^="admin_info"] .services-title {
    margin-bottom: 12px;
    float: left
}

#server_admins div[id^="admin_info"] .add-service,
#admins div[id^="admin_info"] .add-service {
    float: right
}

#server_admins #admins_services td,
#admins #admins_services td {
    vertical-align: middle;
    word-wrap: normal;
    white-space: nowrap;
    font-size: 13px;
    padding: 7px
}

#server_admins #admins_services td .btn,
#admins #admins_services td .btn {
    float: right
}

#server_admins #admins_services td .btn>i[class^="fa"],
#server_admins #admins_services td .btn>.m-icon,
#admins #admins_services td .btn>i[class^="fa"],
#admins #admins_services td .btn>.m-icon {
    font-size: 12px;
    color: #0c66ff
}

#server_admins #admins_services td p,
#admins #admins_services td p {
    display: block;
    width: auto;
    float: left
}

#server_admins #admins_services td .form-control,
#admins #admins_services td .form-control {
    margin: 0
}

#server_admins #admins_services td .hasDatepicker,
#admins #admins_services td .hasDatepicker {
    font-size: .875rem;
    line-height: 1.5;
    text-indent: 5px
}

@media (max-width: 991.99px) {
    .admin-settings tr>td:first-child {
        display: none
    }

    .admin-settings tr>td:last-child {
        border-left: 0
    }

    .admin-settings tr>td:last-child small {
        display: block;
        float: right
    }

    .admin-settings tr>td:last-child small::after {
        clear: both;
        display: table;
        content: " "
    }
}

@media (min-width: 992px) {
    .admin-settings tr>td:last-child small {
        display: none
    }
}

tr[id^="multi-account-"] span {
    font-size: 12px;
    cursor: pointer;
    margin-left: 5px
}

#edit_user_avatar_result p {
    margin-bottom: 0
}

div[id^="store_info"] table.table>tbody[id^="admins_services"]>tr>td {
    font-size: 10.5px
}

div[id^="store_info"] table.table>tbody[id^="admins_services"]>tr>td button {
    margin-top: 5px;
    width: 100%
}

div[id^="store_info"] table.table>tbody[id^="admins_services"]>tr>td select {
    margin-top: -2px;
    margin-bottom: 20px
}

.user {
    background: #1e2638;
    border-radius: 13px;
    padding: 10px;
    margin-bottom: 10px;
    margin-right: 6px;
    display: flex;
    transition: .2s;
    flex-wrap: nowrap
}

.user:hover {
    background: #272f42;
    border-radius: 13px;
    transition: .2s;
    padding: 10px;
    margin-bottom: 10px;
    margin-right: 6px;
    display: flex;
    flex-wrap: nowrap
}

.text_cases {
    font-size: 15px;
    color: #fff
}

.description_cases {
    color: #888888;
    font-size: 11px
}

.info_cases {
    max-width: fit-content;
    color: #ffba80;
    gap: 6px;
    display: flex;
    background: #ffaa6229;
    padding: 1px 10px;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 13px;
    font-size: 8px;
    align-items: center
}

.info_cases i {
    font-size: 14px
}

.info_cs {
    max-width: fit-content;
    color: #ffba80;
    gap: 6px;
    display: flex;
    background: #ffaa6229;
    padding: 1px 10px;
    letter-spacing: 1px;
    border-radius: 50px;
    /* margin-bottom: 13px; */
    font-size: 8px;
    align-items: center
}

.info_cs i {
    font-size: 14px
}

.user img {
    width: 32px;
    border-radius: 50px;
    position: relative;
    top: 3.5px;
    margin-right: 12px;
    margin-left: 7px
}

.user span {
    display: inline-block;
    font-size: 10px;
    color: #171717;
    height: 0;
    border-radius: 3px;
    position: relative;
    top: -2px;
    font-weight: 500
}

.user a[href^="../profile"]:not(:first-child) {
    display: block;
    width: 100%;
    font-weight: 600;
    line-height: 26px;
    font-size: 14px;
    margin: 5px 0;
    color: #fff
}

.user .btn {
    width: 100%;
    margin-bottom: 0
}

.detailed-profile {
    overflow: hidden;
    border-radius: 4px;
    background: #181818;
    margin-bottom: 32px
}

.detailed-profile>div:nth-child(1) {
    position: relative;
    height: 92px;
    background: #1e1e1e;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    padding: 16px
}

.detailed-profile>div:nth-child(1) .avatar {
    display: block;
    height: 60px;
    width: 60px;
    border-radius: 4px;
    float: left
}

.detailed-profile>div:nth-child(1) .avatar img {
    height: 60px;
    width: 60px;
    border-radius: 4px;
    float: left
}

.detailed-profile>div:nth-child(1)>div {
    float: right;
    width: calc(100% - 60px);
    padding: 13px 24px 13px 16px
}

.detailed-profile>div:nth-child(1)>div span {
    display: block
}

.detailed-profile>div:nth-child(1)>div span:first-child {
    color: white;
    font-weight: 600;
    line-height: 20px;
    font-size: 16px
}

.detailed-profile>div:nth-child(1)>div span:last-child {
    font-weight: 500;
    line-height: 16px;
    font-size: 12px
}

.detailed-profile>div:nth-child(1)>a:not(.avatar) {
    color: #98a1b1;
    position: absolute;
    top: 38px;
    right: 16px;
    font-size: 20px
}

.detailed-profile table {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%
}

.detailed-profile table tr td:nth-child(1) {
    padding: 10px 15px;
    width: 62px
}

.detailed-profile table tr td:nth-child(1) i {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    background: #313131;
    font-size: 16px;
    color: white
}

.detailed-profile table tr td:nth-child(2) {
    width: 200px !important;
    border-bottom: 1px solid #313131
}

.detailed-profile table tr td:nth-child(2) span {
    width: 204px !important;
    display: block;
    font-weight: 600;
    line-height: 18px;
    font-size: 14px;
    letter-spacing: .5px;
    color: white
}

.detailed-profile table tr td:nth-child(2) p {
    font-weight: 500;
    line-height: 12px;
    font-size: 12px;
    color: #8a94a6
}

.detailed-profile table tr:last-child td:first-child {
    border-bottom: 1px solid #313131
}

.detailed-profile ul {
    margin-bottom: 15px
}

.detailed-profile ul li a {
    padding: 10px 15px;
    display: block;
    border: 1px solid #313131;
    margin: 4px 15px;
    border-radius: 4px;
    color: white;
    font-size: 13px
}

.detailed-profile ul li a .m-icon {
    font-size: 12px;
    margin-right: 5px
}

.detailed-profile ul li a[href^="../messages"] {
    border: 1px solid #0c66ff;
    background: #0c66ff
}

.detailed-profile .go-exit {
    color: white;
    font-weight: 500;
    line-height: 20px;
    font-size: 14px;
    display: block;
    margin: 15px
}

.detailed-profile .go-exit i {
    line-height: 20px;
    color: #8a94a6;
    margin-right: 10px
}

.money-info-block {
    display: block;
    background: #0c66ff;
    padding: 11px 16px;
    color: white;
    height: 60px;
    margin: 18px 15px 0
}

.money-info-block div {
    width: 50%;
    float: left
}

.money-info-block div i {
    font-size: 18px;
    float: left;
    line-height: 38px;
    margin-right: 9px
}

.money-info-block div p {
    color: rgba(255, 255, 255, .8);
    margin: 0
}

.money-info-block div span {
    font-weight: 600;
    line-height: 20px;
    font-size: 16px
}

.money-info-block:hover {
    color: white !important
}

.profile-top-menu {
    margin-right: auto;
    overflow-y: hidden;
    overflow-x: auto;
    margin-bottom: 15px;
    height: 48px;
    width: 102%;
    margin-left: auto;
    list-style: none;
    background: #ffffff00;
    flex-wrap: nowrap
}

.profile-top-menu li {
    display: inline-block
}

.profile-top-menu li a {
    display: block;
    float: left;
    font-size: 11px;
    line-height: 40px;
    padding: 0 26.6px;
    color: #60677e;
    border-radius: 10px;
    top: 3px;
    position: relative;
    background: #212531;
    margin: 0 7px 0 0;
    font-weight: 600
}

.profile-top-menu li a.active,
.profile-top-menu li a:hover {
    color: #fff;
    background: #303546
}

.profile-page h2 {
    font-size: 16px;
    margin-top: -4px
}

.profile-page table.profile-table {
    width: calc(100% + 32px);
    margin: -24px -16px;
    display: none
}

.profile-page table.profile-table tr {
    border-bottom: 1px solid #f1f2f400
}

.profile-page table.profile-table tr:last-child {
    border-bottom: 0
}

.profile-page table.profile-table tr td:nth-child(1) {
    width: 66px;
    padding: 14px 17px
}

.profile-page table.profile-table tr td:nth-child(1) i {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #303546;
    display: block;
    text-align: center;
    line-height: 32px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    color: #fff
}

.profile-page table.profile-table tr td:nth-child(1) i:not([class^="fa"]) {
    font-weight: 600
}

.profile-page table.profile-table tr td:nth-child(1) i.fa-discord {
    color: white;
    line-height: 35px;
    background: #7062e7;
    box-shadow: 0 0 25px rgb(129 112 255 / 0%)
}

.profile-page table.profile-table tr td:nth-child(1) i.fa-skype {
    color: white;
    background: #0078ca
}

.profile-page table.profile-table tr td:nth-child(1) i.fa-telegram-plane {
    color: white;
    box-shadow: 0 0 25px rgb(129 112 255 / 0%);
    background: #4c89cf;
    line-height: 34px
}

.profile-page table.profile-table tr td:nth-child(1) i.fa-vk {
    color: white;
    line-height: 34px;
    background: #3762ff;
    box-shadow: 0 0 25px rgb(129 112 255 / 0%)
}

.profile-page table.profile-table tr td:nth-child(1) i.fa-steam-symbol {
    color: white;
    background: black
}

.profile-page table.profile-table tr td:nth-child(1) i.fa-facebook-f {
    color: white;
    background: #4267b2
}

.profile-page table.profile-table tr td:nth-child(2) {
    padding: 14px 0
}

.profile-page table.profile-table tr td:nth-child(2) p {
    position: relative;
    margin: 0;
    font-weight: 600;
    color: #fff;
    font-size: 11.5px;
    line-height: 18px;
    margin-left: 1px;
    letter-spacing: .5px
}

.profile-page table.profile-table tr td:nth-child(2) p a {
    color: #fff
}

.profile-page table.profile-table tr td:nth-child(2) p img {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    right: 20px;
    top: 2px
}

.profile-page table.profile-table tr td:nth-child(2) span {
    line-height: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #60677e
}

/*.profile-page #last_activity,
.profile-page #mybans {
    margin-top: -24px
}*/

.profile-page #last_activity .empty-element,
.profile-page #mybans .empty-element {
    height: auto;
    /* padding-top: 14px !important; */
    border: 0;
}

.profile-page .block.dialogs #chat .input-group {
    margin-bottom: -24px
}

.pay-area {
    border-radius: 6px;
    margin-bottom: 30px;
    position: relative;
    padding: 20px 16px 0 16px;
    background: url(../img/pay-area.jpg) center;
    background-size: 100% auto
}

.pay-area b {
    color: white;
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
    display: block;
    margin-bottom: 16px
}

.pay-area .money-info-block {
    padding: 0;
    margin: 0;
    background: transparent;
    max-width: 230px
}

.pay-area span[data-toggle] {
    cursor: pointer;
    height: 32px;
    display: inline-block;
    line-height: 30px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .36);
    padding: 0 16px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    float: right;
    margin: 6px 0
}

.pay-area .pay-input {
    height: 48px;
    position: absolute;
    bottom: 20px;
    width: calc(100% - 32px)
}

.pay-area .pay-input input,
.pay-area .pay-input .custom-file label,
.custom-file .pay-area .pay-input label {
    height: 48px;
    line-height: 48px;
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding-right: 100px
}

.pay-area .pay-input button {
    position: absolute;
    right: 8px;
    top: 8px;
    margin: 0
}

.pay-area .pay-input .error_message {
    display: none !important
}

@media (max-width: 991.99px) {
    .pay-area {
        background-size: auto 100%
    }

    .pay-area span[data-toggle] {
        width: 100%;
        text-align: center;
        margin-top: 0;
        margin-bottom: 26px
    }
}

#operations .with-icon {
    padding-left: 60px
}

#operations .with-icon i {
    left: 10px;
    top: 14px;
    width: 24px;
    margin-left: 5px;
    height: 24px;
    border-radius: 6px;
    border: 7px solid;
    text-align: center;
    line-height: 20px;
    font-size: 8px
}

#operations .with-icon i.fa-plus {
    color: #fff;
    background: #7ab981;
    border: 2px solid #7ab981
}

#operations .with-icon i.fa-minus {
    color: #fff;
    line-height: 20px;
    background: #e98383;
    border: 2px solid #e98383
}

.profile-settings h2 {
    font-size: 16px;
    color: #fff
}

.profile-settings .btn i.fa-pencil {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 24px;
    font-size: 15px !important
}

.profile-settings .m-icon {
    display: none
}

.profile-settings #vk_user img,
.profile-settings #steam_user img,
.profile-settings #fb_user img {
    height: 30px;
    width: 30px;
    margin-right: 8px;
    border-radius: 50%
}

.profile-settings #vk_user span,
.profile-settings #steam_user span,
.profile-settings #fb_user span {
    display: inline
}

.profile-settings table tr td[colspan="2"] {
    white-space: normal !important
}

.profile-settings small.input-title {
    font-size: 11px;
    display: block;
    color: #ffc89b;
    margin-bottom: 0;
    border-radius: 10px;
    margin-top: 0
}

.profile-settings .edit-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 20px
}

.profile-settings .edit-privacy p {
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    margin-bottom: -16px
}

.profile-settings .edit-date .col-12:last-child {
    position: relative
}

.profile-settings .edit-date .col-12:last-child small {
    position: absolute;
    left: 15px;
    top: -24px
}

.profile-settings .edit-date .col-3 .btn {
    margin-top: 7px
}

#stats table {
    max-width: 100%
}

#stats tr td {
    max-width: 200px
}

#stats tr td .rank {
    width: 80px;
    height: 30px;
    display: block;
    margin: 0 auto
}

#stats tr td a i {
    font-style: normal !important
}

#stats .progress {
    position: relative;
    height: 17px;
    margin-top: 5px;
    width: 100%
}

#stats .progress span {
    position: absolute;
    color: #fff;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 9.5px;
    top: -1px
}

#stats .area-label {
    padding-top: 15px
}

#stats .label {
    padding: 3px 6px;
    border-radius: 2px;
    background-color: whitesmoke;
    color: #5d6c84;
    border: 1px solid #eaeaea;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

#stats .label.label-primary {
    background-color: #0c66ff;
    color: #fff;
    border: 0
}

#stats .label.label-success {
    background-color: #e3f5dc;
    color: #0bb07b;
    border-color: #cde8c3
}

#stats .label.label-info {
    background-color: #e1effa;
    color: #0a1f44;
    border-color: #cadded
}

#stats .label.label-warning {
    background-color: #fff0d2;
    color: #ffad0d;
    border-color: #e8ddca
}

#stats .label.label-danger {
    background-color: #fce3e3;
    color: #f03d3d;
    border-color: #e8caca
}

.new {
    padding-top: 16px
}

.new>p:last-child {
    margin: -16px;
    padding: 21px 16px 0 16px;
    margin-bottom: -10px;
    margin-top: 16px;
    border-top: 1px solid #f1f2f400
}

.new>p:last-child span {
    margin-top: 10px;
    padding: 5px 10px;
    background: #303546;
    margin-bottom: 10px;
    font-size: 10px;
    border-radius: 7px;
    color: #fff
}

.new>p:last-child span a {
    color: #fff
}

#news a.small-new {
    margin: 0 -16px;
    padding: 10px 16px 10px 16px;
    display: block;
    height: 60px;
    width: calc(100% + 32px)
}

#news a.small-new img {
    height: auto;
    width: 70px;
    display: none;
    border-radius: 4px;
    margin-right: 10px;
    float: left
}

#news a.small-new div {
    width: calc(100% - 80px)
}

#news a.small-new div p {
    font-size: 12px;
    margin: 0;
    line-height: 13.5px;
    display: block;
    color: #585f74
}

#main-slider.carousel {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-left: 40px;
    margin-bottom: 30px;
    height: 400px;
    top: 60px
}

#main-slider.carousel .carousel-inner {
    height: 100%;
    margin-top: 160px
}

#main-slider.carousel .carousel-inner .carousel-item {
    height: 100%
}

#main-slider.carousel .carousel-inner .carousel-item img {
    height: 100%;
    width: 100%
}

#main-slider.carousel .he {
    height: 288px;
    width: 211px;
    position: absolute;
    top: 0;
    left: calc(50% - 90px);
    z-index: 11
}

#main-slider.carousel .carousel-caption {
    left: 30px;
    top: 20px;
    border-radius: 15px;
    bottom: auto;
    height: 100px;
    width: 70%;
    padding: 30px;
    background-color: #22283e;
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: left
}

#main-slider.carousel .carousel-caption h1 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px
}

#main-slider.carousel .carousel-caption h1 a {
    color: #fff
}

#main-slider.carousel .carousel-control-prev,
#main-slider.carousel .carousel-control-next {
    height: 48px;
    width: 48px;
    top: 210px;
    padding-right: 1px;
    background: rgb(38 44 68 / 0%);
    bottom: 2px;
    opacity: 1;
    border-radius: 50%
}

#main-slider.carousel .carousel-control-prev i,
#main-slider.carousel .carousel-control-next i {
    color: #fff
}

#main-slider.carousel .carousel-control-prev:hover i,
#main-slider.carousel .carousel-control-next:hover i {
    color: #fff
}

#main-slider.carousel .carousel-control-prev {
    left: 245px
}

#main-slider.carousel .carousel-control-next {
    left: 788px
}

@media (max-width: 991.99px) {
    #main-slider.carousel {
        height: 250px
    }

    #main-slider.carousel .he {
        display: none
    }

    #main-slider.carousel .carousel-caption {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        border-radius: 4px;
        padding: 20px
    }

    #main-slider.carousel .carousel-caption h1 {
        font-size: 200%;
        line-height: 100%;
        margin-bottom: 10px
    }

    #main-slider.carousel .carousel-control-prev,
    #main-slider.carousel .carousel-control-next {
        height: 40px;
        width: 40px
    }

    #main-slider.carousel .carousel-control-prev {
        left: auto
    }
}

.vk-widgets .block {
    padding-bottom: 0
}

.vk-widgets a[id^="admin_widget"] {
    margin-top: 3px;
    margin-bottom: 3px;
    display: block
}

.vk-widgets a[id^="admin_widget"] img {
    display: block;
    width: 30px;
    height: 30px;
    float: left;
    border-radius: 8px
}

.vk-widgets a[id^="admin_widget"] span {
    display: block;
    width: calc(100% - 40px);
    float: right;
    line-height: 30px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    color: #fff;
    font-size: 13px
}

.vk-widgets a[id^="admin_widget"]::after {
    clear: both;
    display: table;
    content: " "
}

.disp-b {
    display: block
}

.disp-n {
    display: none
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-thumb {
    background: #3f3f3f;
    border-radius: 50px
}

::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
    background: #3f3f3f
}

.stors__img {
    border-radius: 5px
}

#my_cases_area {
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 30%) 5px 5px 20px
}

.opened-case {
    background-image: linear-gradient(-90deg, rgba(33, 21, 54, 0) 0%, rgba(24, 13, 43, .85) 100%)
}

.onlines {
    float: right;
    background: #ffffff00;
    height: 5px;
    padding: 10px;
    padding-left: 10px;
    margin-top: 18px;
    padding-right: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 0;
    font-size: 11px;
    line-height: 0
}

.profile-lvl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 200%
}

.help {
    opacity: 1;
    transition: 0.2s
}

.help:hover {
    transition: 0.2s;
    opacity: .7
}

.popover {
    z-index: 1060;
    display: block;
    max-width: 210px;
    height: 205px;
    left: -41px !important;
    top: -15px !important;
    width: 200px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: start;
    text-decoration: none;
    text-transform: none;
    box-shadow: 0 5px 10px #0000001c;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    border: 1px solid rgb(0 0 0 / 0%);
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #3d3d3d;
    background-clip: padding-box;
    border-radius: 15px
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;

    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0, 0, 0)
}

.swiper-pointer-events {
    touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x
}



.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal>.swiper-wrapper: :before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper: :before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev'
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next'
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}

.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.number_max {
    color: #fff;
    font-size: 8px;
    transition: .2s all;
    height: 12px;
    position: relative;
    background: #313f5d;
    top: -.5px;
    margin-left: 3px;
    display: inline-block;
    line-height: 13px;
    border-radius: 50px;
    padding: 0 9px
}

.circlee {
    width: 5px;
    height: 5px;
    background-color: #1d9d64;
    border-radius: 50%;
    position: absolute
}

.ringring {
    border: 2px solid #1d9d6452;
    -webkit-border-radius: 50px;
    height: 13px;
    width: 13px;
    position: absolute;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0
}

.circle_profile {
    width: 5px;
    height: 5px;
    background-color: #1d9d64;
    border-radius: 50%;
    position: absolute
}

.ringring_profile {
    border: 2px solid #1d9d6452;
    -webkit-border-radius: 50px;
    height: 13px;
    width: 13px;
    position: absolute;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(.1, .1);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0
    }
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.tabs__buttons--container {
    display: flex;
    margin-bottom: 10px
}

.tabs__tab-btn {
    border: none;
    padding: 12px 35px;
    background: #24314c;
    border-radius: 10px;
    margin-right: 7px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s
}

.tabs__tab-btn--not-selected {
    border: none;
    padding: 12px 35px;
    background: #1c2740;
    border-radius: 10px;
    margin-right: 7px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s
}

.tabs__tab-btn:hover {
    border: none;
    padding: 12px 35px;
    background: #24314c;
    border-radius: 10px;
    margin-right: 7px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s
}

.tabs__tab--hide {
    display: none
}

.tabs__tab--show {
    display: block
}

.tabs__tab {
    animation: tabApear 0.6s
}

@keyframes tabApear {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height
}

.message_button {
    color: #fff;
    font-weight: 600;
    height: 33px;
    border-radius: 9px;
    font-size: 14px;
    opacity: .7;
    display: flex;
    width: 33px;
    transition: .2s all;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.message_button:hover {
    opacity: 1;
    color: #fff
}

.profile_button {
    color: #7c7c7c;
    font-weight: 600;
    height: 33px;
    border-radius: 9px;
    font-size: 14px;
    display: flex;
    width: 33px;
    transition: .2s all;
    background: linear-gradient(25deg, #464646 30%, #4a4a4a 100%);
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.profile_button:hover {
    opacity: .7;
    color: #7c7c7c
}

.name_players {
    text-overflow: ellipsis;
    width: 30%;
    overflow: hidden;
    white-space: nowrap
}

.text_contactss {
    display: flex;
    flex-direction: column;
    line-height: 17px
}

.date_forum {
    color: #7f7f7f;
    font-weight: 600;
    padding: 0;
    font-size: 11.5px !important;
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: block;
    border-bottom: dashed 1px #7f7f7f8c;
    width: 100%
}

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

.buttons_friends {
    display: none
}

.buttons_friends_new {
    display: flex;
    gap: 10px
}

.contacts_profile {
    display: flex;
    gap: 7px
}

.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden
}

.page-authorization-meatpers {
    max-width: 50rem
}

.tabes {
    border: solid 1px #555555;
    border-radius: 50px;
    padding: 7px;
    display: flex;
    gap: 8px;
    margin-bottom: 20px
}

.tabes .tab {
    cursor: pointer;
    height: 50px;
    display: flex;
    font-weight: 600;
    border-radius: 50px;
    color: #848484;
    align-items: center;
    transition: 0.2s;
    justify-content: center
}

.tabes .tab.active {
    color: #fff;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    box-shadow: 0 10px 40px #da925652;
}

.tabes .tab.active:hover {
    color: #fff;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    box-shadow: 0 10px 40px #da925652;
}

.tabes .tab:hover {
    color: #fff;
    background: #4c4c4c
}

.tab-contentes {
    display: none
}

.tab-contentes.active {
    display: block
}

.form_control_auth {
    font-size: 11.5px;
    font-weight: 600;
    width: 86%;
    border-radius: 0 11px 11px 0;
    text-indent: 0;
    background: #414141 !important;
    border: none;
    color: #fff
}

.form_control_auth:focus {
    border-color: #414141;
    color: #fff;
    background: #414141 !important;
    -webkit-box-shadow: none;
    box-shadow: none
}

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

.input_login {
    display: flex;
    margin-bottom: 9px;
    background: #414141;
    border-radius: 11px;
    align-items: center
}

.block_purse_base {
    border-radius: 15px;
    background: linear-gradient(1deg, #3b3b3b8a 30%, #3d3d3d 100%);
    padding: 20px 20px 10px 20px;
    margin-bottom: 12px
}

.buy_purse {
    transition: 0.2s;
    color: #ffff;
    border: none;
    background: linear-gradient(68deg, #062910 0%, #64aa7a 55%);
    padding: 10px 15px;
    height: 45px;
    position: relative;
    font-size: 12px;
    border-radius: 11px;
    top: 1px;
    font-weight: 600;
}

.buy_purse:hover {
    opacity: .7
}

.button_summa {
    border: none;
    padding: 10px;
    border-radius: 9px;
    cursor: pointer;
    transition: 0.2s;
    width: 70px;
    background: linear-gradient(1deg, #5656568f 30%, #565656 100%);
    color: #fff;
    font-weight: 700
}

.button_summa:hover {
    opacity: .7
}

.select_number {
    padding: 15px;
    background: linear-gradient(1deg, #42424273 30%, #424242 100%);
    border-radius: 15px;
    display: flex;
    gap: 6px;
    margin-bottom: 15px
}

.input_login i {
    height: 39px;
    background: #535353;
    display: flex;
    width: 39px;
    margin-left: 7px;
    color: #848484;
    margin-right: 8px;
    font-size: 17px;
    border-radius: 10px;
    align-items: center;
    justify-content: center
}

.button_social {
    display: flex;
    width: 100%;
    gap: 8px
}

.authorization_welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    gap: 5px;
    font-weight: bolder
}

.text_welcome {
    font-size: 18px
}

.second_welcome {
    color: #7b7b7b;
    font-weight: bolder;
    text-align: center;
    line-height: 17px
}

.flex_authorization_page {
    height: 87%;
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

.line_social {
    background: #484848;
    height: 3px;
    width: 70%;
    border-radius: 150%;
    display: flex;
    margin-bottom: 5px;
    margin-top: 5px;
    justify-content: center;
    align-items: center
}

.circle_social {
    background: #32302f;
    width: 16px;
    box-shadow: 0 10px 40px #da9256c2;
    height: 16px;
    border: solid 3px #da9256;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center
}

.circle_in_social {
    width: 4px;
    height: 4px;
    display: block;
    background: #fff;
    border-radius: 50%
}

.privacy-policy {
    font-size: 12px;
    padding: 9px 11px;
    font-weight: 600;
    text-align: center;
    line-height: 18px;
    color: #767676;
}

.info_discount {
    padding: 20px;
    border: dashed 1px #4b4b4b;
    border-radius: 15px;
    background: #5a5a5a33;
}

.flex_discount {
    margin-bottom: 6px;
    display: flex;
    gap: 7px;
    align-items: center
}

.flex_discount i {
    font-size: 18px;
    color: #e7ad7d;
}

.flex_discount span {
    font-weight: 700;
    font-size: 14px
}

.text_discount_info {
    color: #757575;
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    display: block
}

.left_auth_block {
    display: flex;
    gap: 25px;
    flex-direction: column
}

.text_auth_block {
    font-size: 60px;
    font-weight: 500;
    gap: 10px;
    line-height: 80px;
    display: flex;
    letter-spacing: 1px;
    flex-direction: column
}

.future_text {
    font-size: 23px;
    border-radius: 50px;
    width: auto;
    font-weight: 600;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    box-shadow: 0 10px 40px #da92564f;
    color: #fff;
    display: inline-flex;
    padding: 1px 50px
}

.text_description_auth {
    color: #5c5c5c;
    font-size: 15px;
    display: block;
    line-height: 22px;
    font-weight: bolder
}

.flex_auth_text {
    display: flex;
    align-items: center;
    gap: 15px
}

.site_name_auth {
    padding: 17px 30px;
    border: solid 1px #363636;
    border-radius: 50px;
    color: #606060;
    width: fit-content;
    font-size: 15px;
    font-weight: 700
}

.text_social {
    color: #fff;
    font-weight: 700;
    font-size: 16px
}

.desp_social {
    font-weight: 700;
    color: #5c5c5c;
    font-size: 13px
}

.recovery_back {
    display: flex;
    gap: 8px;
    align-items: center;
    border: solid 1px #404040;
    border-radius: 50px;
    padding: 7px;
    margin-bottom: 20px
}

.active_recovery {
    cursor: pointer;
    height: 50px;
    width: 100%;
    display: flex;
    font-weight: 600;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    box-shadow: 0 10px 40px #da925621;
    border-radius: 50px;
    align-items: center;
    transition: 0.2s;
    justify-content: center
}

.back_recovery {
    cursor: pointer;
    height: 50px;
    display: flex;
    font-weight: 600;
    border-radius: 50px;
    width: 100%;
    color: #77777b;
    align-items: center;
    transition: 0.2s;
    justify-content: center
}

.back_recovery:hover {
    background: #424242;
    color: #fff
}

.flex_social_text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    line-height: 18px
}

.stable i {
    border-radius: 50%;
    font-size: 14px;
    color: rgb(255 133 133 / 93%);
    display: flex;
    padding-left: 1px;
    width: 26px;
    height: 26px;
    background: rgb(224 116 116 / 21%);
    align-items: center;
    justify-content: center
}

.stable {
    display: flex;
    position: relative;
    letter-spacing: 1px;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    background: rgb(255 140 140 / 8%);
    align-items: center;
    font-size: 8px;
    color: rgb(255 133 133 / 93%);
    font-weight: 600;
    border-radius: 50px
}

.circle_stats {
    width: 9px;
    display: block;
    height: 9px;
    position: relative;
    float: right;
    border-radius: 50%;
    border: solid 2px #575c74;
    margin-top: -26px;
    left: 4px;
    background: #373b4d
}

.flex_online_block {
    display: flex;
    align-items: center;
    border-radius: 50px;
    padding: 0 4px;
    background: #3f3f3f;
}

.flex_online_block .users_online_slide {
    display: none;
}

.arrow_users_top {
    background: linear-gradient(360deg, #da9256ad 0%, #da925663 55%);
    height: 33px;
    width: 33px;
    border: solid 3px #3f3f3f;
    color: #fff;
    margin-left: -2px;
    display: flex;
    font-size: 15px;
    z-index: 1;
    border-radius: 50px;
    justify-content: center;
    align-items: center
}

.img_back_friends {
    position: relative;
    filter: blur(6px);
    opacity: .3;
    z-index: 0;
    margin-bottom: -55px;
    margin-left: -10px;
    width: 52px !important;
    height: 52px !important
}

.img_back_visit {
    position: relative;
    filter: blur(6px);
    opacity: .3;
    z-index: 0;
    margin-right: -33px;
    margin-bottom: -55px;
    margin-left: -7px;
    width: 40px !important;
    height: 40px !important;
}

.img_back_user {
    position: relative;
    filter: blur(6px);
    opacity: .3;
    z-index: 0;
    border-radius: 14px;
    margin-bottom: 10px;
    margin-right: -59px;
    margin-left: -8px;
    width: 52px !important;
    height: 52px !important
}

.img_back_head {
    position: relative;
    filter: blur(6px);
    opacity: .3;
    margin-bottom: -10px;
    margin-right: -53px;
    right: 10px;
    width: 40px !important;
    height: 40px !important
}

.flex_profile_top {
    display: flex;
    gap: 8px;
    align-items: center
}




.btn_admin_menu {
    width: 45px;
    background: linear-gradient(23deg, #865023 0%, #da9256 55%);
    transition: 0.2s;
    height: 45px;
    font-size: 19px;
    display: flex;
    border-radius: 11px;
    align-items: center;
    justify-content: center
}

.btn_admin_menu:hover {
    opacity: .7;
    font-size: 19px
}

input.form_control_auth,
.custom-file label.form_control_auth,
input[type="file"],
.custom-file label[type="file"],
select.form_control_auth,
select[type="file"] {
    padding: 6px 3px;
    line-height: 40px
}

input.form_control_auth::-webkit-input-placeholder,
.custom-file label.form-control::-webkit-input-placeholder,
input[type="file"]::-webkit-input-placeholder,
.custom-file label[type="file"]::-webkit-input-placeholder,
select.form_control_auth::-webkit-input-placeholder,
select[type="file"]::-webkit-input-placeholder {
    font-size: 13px;
    color: #fff
}

input.form_control_auth:-ms-input-placeholder,
.custom-file label.form_control_auth:-ms-input-placeholder,
input[type="file"]:-ms-input-placeholder,
.custom-file label[type="file"]:-ms-input-placeholder,
select.form_control_auth:-ms-input-placeholder,
select[type="file"]:-ms-input-placeholder {
    font-size: 13px;
    color: #fff
}

input.form_control_auth::-ms-input-placeholder,
.custom-file label.form_control_auth::-ms-input-placeholder,
input[type="file"]::-ms-input-placeholder,
.custom-file label[type="file"]::-ms-input-placeholder,
select.form_control_auth::-ms-input-placeholder,
select[type="file"]::-ms-input-placeholder {
    font-size: 13px;
    color: #fff
}

input.form_control_auth::placeholder,
.custom-file label.form-control::placeholder,
input[type="file"]::placeholder,
.custom-file label[type="file"]::placeholder,
select.form_control_auth::placeholder,
select[type="file"]::placeholder {
    font-size: 11.5px;
    color: #838383
}

/* Achievement Modernization */
.achives_site_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    margin-top: 10px;
}

.achive_site_item {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.achive_site_item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.achive_site_item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.05);
}

.achive_site_item:hover img {
    transform: scale(1.1);
}

.achive_site_item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.achive_site_item:hover::after {
    opacity: 1;
}