.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: #7e8590;font-weight: 600;}

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

.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: bold;
  flex-direction: column;
}

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

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

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

.discount_purse {
    background: #41454f;
    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;
    background: linear-gradient(23deg, #fe9544 0%, #e5768d 55%);
    font-size: 17px;
    display: flex;
    color: #ffffff;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

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

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

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

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

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

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

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

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

.mp_btn:hover {
  background: #525660;
  color: #ffffff;
}

.mp_btn_profile {
  display: flex;
  color: #ffffff;
  background: linear-gradient(354deg, #40444d 30%, #4d525d 100%) !important;
  border-top: solid 1px #585e6a;
  height: 43px;
  width: 100%;
  font-size: 11px;
  transition: 0.2s;
  align-items: center;
  border-radius: 9px;
  justify-content: center;
}

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

#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: #fe9544;
    -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: #fe9544;
    -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: #fe9544;
    -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: #ffffff;
    width: 36px;
    border-radius: 10px;
    display: flex;
    font-size: 17px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.users_chat_online {}

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

.user_online_block .users_chat_online {
    display: none;
}

.user_online_top {}

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


.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: 0px;
    font-size: 12px;
    width: 100%;
    display: flex;
    color: #80849a;
    font-weight: 600;
    list-style: none;
    padding: 17px 0px 17px 15px;
}

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

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

.forum_next li a {
    color: #8a909b;
}

.forum_next li a:hover {
    color: #ffffff;
}

.forum_delete {
    background: #474c56;
    color: #828590;
    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: #585e69;
    color: #ffffff;
}

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

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

.back_forum:hover {
   opacity: 0.7;
   color: #ffffff;
}


.button-contacts:hover {
    position: relative;
    padding: 15px 25px;
    font-size: 10.5px;
    color: #ffffff;
    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: 1.0rem;
    height: 1.0rem;
    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;
    box-shadow: 0px 5px 10px #13151a4f;
    background: linear-gradient(1deg, #2c2f36 30%, #343840 100%);
}

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

.login_donator {
    color: #ffff;
}

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

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

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

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

.top_donators:hover .summa_donators {
    border: solid 1px #5c5f69;
    background: #4d5059;
    color: #ffffff;
}

.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 0px 0px;
    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: #ffffff;
    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: #ffffff;
    font-size: 8px;
    transition: .2s all;
    margin-left: 5px;
    background: #7c7bff;
    border-radius: 50px;
    position: relative;
    top: 0px;
    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: #ffffff;
    background: linear-gradient(23deg, #fe9544 0%, #e5768d 55%);
    min-width: 43px;
    height: 43px;
    font-size: 18px;
    transition: 0.2s;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
}

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

.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: #ffffff;
    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: 0px 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: #ffffff;
    margin-top: 9px;
    height: 42px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}

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

.online_full_user {
    /* background: #3b3e50; */
    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: 0.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: 0px 10px;
    border: 1px solid #95ffca94;
    filter: drop-shadow(rgba(107, 206, 165, 0.57) 0px 0px 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: #6d717c;
    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: #ffffff;
}

.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: 9px;
    color: #8b8f99;
    background: #4c505d;
    background: linear-gradient(0deg, #4e5461 30%, #5b6071 100%);
    padding: 0px 6px;
    border-radius: 50px;
    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: #ffffff;
    margin-left: 120px;
    float: right;
    transition: .2s all;
}

.user_o_img {
    width: 24px !important;
    border-radius: 50px;
    height: 24px !important;
    transition: .2s all;
    float: inherit;
}

.chat_img {
    width: 40px !important;
    /* border-radius: 50px; */
    height: 40px !important;
    transition: .2s all;
    float: inherit;
}

.chat_img:hover {
    opacity: 0.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: 0px;
    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: 109px;
    }

    .row_widget {
    flex-direction: column;
}

    .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: #6d717c;
        line-height: 53px;
        text-align: center;
    }

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

    .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;
    }

    .wapper .header ul.user-menu>li:nth-child(1),
    .wapper .header ul.user-menu>li:nth-child(2),
    .wapper .header ul.user-menu>li:nth-child(3) {
        display: none;
    }

    .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%;
        padding: 17px;
        background-size: cover;
        border-radius: 16px;
    }

    .flex_activity span {
        font-size: 10.5px;
        color: #fd9f6c;
        font-weight: 600;
        width: 80%
    }

    .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: 38px;
        height: 38px;
        border-radius: 50px;
        margin-left: -15px;
        top: -16px;
        position: relative;
        display: block;
        float: left;
    }
    /* .wapper .header ul.user-menu>li.collapsible>a img {
        width: 38px;
        height: 38px;
        border-radius: 50px;
        margin-left: -15px;
        top: -16px;
        display: block;
        float: left;
        position: absolute;
    } */

    .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: 0px;
        font-size: 17px;
        color: #596887;
        display: flex;
        margin-top: 0px;
        align-items: center;
        justify-content: center;
    }

    .support_cTabs:hover {
        width: 40px;
        transition: 0.2s;
        height: 40px;
        background: #2e3c5b;
        border-radius: 10px;
        margin-right: 0px;
        font-size: 17px;
        color: #ffffff;
        display: flex;
        margin-top: 0px;
        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: 0px;
        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: 0px;
        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: #ffffff;
        margin-left: 0px;
        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: 0px 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: 0px 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: 0.7;
        background: #242d40;
        width: 100%;
        /* display: flex; */
        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 0px;
        margin-top: 20px;
        align-items: center;
    }

    .bottom_water_info_left {
        display: none;
    }

    .version {
        background: #272f42;
        border-radius: 12px;
        display: none;
        padding: 0px 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: 0px;
        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%;
}

    #friends {
    display: flex;
    margin-top: 10px;
    overflow: auto;
}
    #friends::-webkit-scrollbar{
    display: none;
}

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

    .profile-settingss {
    color: #ffffffbf;
    font-weight: bold;
    height: 42px;
    border-radius: 9px;
    width: 100%;
    padding: 0px 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;
        background: linear-gradient(237deg, #545b67 0%, #414751 55%);
        transition: 0.2s;
        cursor: pointer;
        color: #858d9d;
        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: 0.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: 0px;
        display: flex;
        height: 150px;
        padding: 24px 25px;
        width: 100%;
        border-radius: 15px;
        flex-direction: column;
    }

    .add-click:hover {
        background: #18233a;
        margin-bottom: 0px;
        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: 0.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: 0px 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: 0px;
        margin-bottom: 40px;
    }

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

    .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: 0px;
        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: 0px;
        margin-left: 0px;
    }

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

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

    .fbrs_online {
        font-size: 11px;
        color: #ffffff;
        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 0px 0px;
        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 0px;
        justify-content: space-between;
        flex-direction: column;
    }


    element.style {}

    .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: 0px;
    font-size: 11px;
    width: 100%;
    display: flex;
    color: #80849a;
    font-weight: 600;
    list-style: none;
    padding: 17px 0px 17px 15px;
    }

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

    .forum_next li {
    border-right: none;
    }
    
    .topic-answers div[id^="answer"] .right-side {
        /* padding: 25px 25px 55px; */
        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: 0px;
    }


    .add_news {
        height: 40px;
        border: none;
        transition: 0.2s;
        margin-right: 6px;
        background: #272f42;
        font-weight: 600;
        color: #ffffff;
        font-size: 11px;
        border-radius: 9px;
        padding: 0px 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: #ffffff;
        font-size: 11px;
        border-radius: 9px;
        padding: 0px 0px;
        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: #ffffff;
        font-size: 11px;
        border-radius: 9px;
        padding: 0px 0px;
        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: 15px 15px;
    }

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

    .head_block {
        padding: 20px;
        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;
    }

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

    .show_user {
        color: #6d717c;
        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 0px #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: 0px;
        color: #fff;
        width: 10px;
        border-radius: 10px 0px 0px 10px;
        padding-left: 0px;
    }

    .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: 0px;
        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: 0.7;
        margin-top: 8px;
        margin-right: 1px;
        display: flex;
        width: 43px;
        height: 43px;
        font-size: 0px;
        color: #ffff;
        transition: .2s all;
        font-weight: 600;
        justify-content: center;
        align-items: center;
    }

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


    .news-button-bottom {
        cursor: pointer;
        text-align: center;
        display: flex;
        font-size: 9.5px;
        letter-spacing: 1px;
        padding: 11px 0px;
        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: 0px;
    }

    .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;
     background: linear-gradient(1deg, #30343b 30%, #393d46 100%);
     list-style: none;
     top: 60px;
     box-shadow: 0px 5px 10px #13151a4f;
     border-radius: 20px;
     overflow: hidden;
    }

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

    .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: #ffffff;
        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: #ffffff;
        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: 0px 17px 0px 17px;
        max-width: 300px;
        background: linear-gradient(1deg, #30343b 30%, #393d46 100%);
        z-index: 1000;
    }

    .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: 0.75em;
        vertical-align: -.0667em;
        font-weight: 900;
        content: "\f078";
        position: relative;
        z-index: 1010;
        background: #494f58;
        color: #838995;
        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: #ffffff;
        font-size: 12px;
    }

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

    .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: #ffffff;
        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: #40444d;
        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, #3c4155 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: #ffffff;
		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, 0.4);
    border-radius: 20px;
    line-height: 28px;
    padding-left: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.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, 0.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, 0.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;
    /* margin-top: 0; */
}

.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 0px;
    border-radius: 11px;
    background: #212d47;
    margin-bottom: 15px;
    display: flex;
    font-weight: 600;
    font-size: 12px;
    padding-left: 10px;
    margin-top: -10px;
    color: #ffffff;
    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: #71767e;
    border: 0;
}

.authorization a.small:hover {
    color: #ffffff;
}

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

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

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


.authorization #steam_link:hover i {
    color: #ffffff;
}

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

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

.authorization #vk_link:hover {
    color: #ffffff;
    background-color: #0077ff;
}

.authorization #vk_link:hover i {
    color: #ffffff;
}

.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: #ffffff;
    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: #717680;
    font-size: 11.5px;
    background-color: #40444d;
    justify-content: center;
    align-items: center;
}

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

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

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

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

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


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

.registration a[onclick*="steam"]:hover {
    color: #ffffff;
    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: 0px;
    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: #ffffff;
    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: bold;
    line-height: 40px;
    font-size: 20px;
    letter-spacing: 0.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: 0px;
    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: #3b4049;
    color: #747984;
    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: #535963;
   align-items: center;
   justify-content: center;
}


.vertical-navigation li a.active::before {
    content: '-';
    position: relative;
    display: flex;
    padding-bottom: 2px;
    width: 22px;
    height: 22px;
    color: #ff9080;
    font-size: 14px;
    border-radius: 50px;
    margin-right: 11px;
    background-color: #ff908052 !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: #3f444c;
    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: #434952;
}

.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: #434952;
}

.vertical-navigation li.active a::before {
   content: '-';
   position: relative;
   display: flex;
   padding-bottom: 2px;
   width: 22px;
   min-width: 22px;
   min-height: 22px;
   height: 22px;
   color: #ff9080;
   font-size: 14px;
   border-radius: 50px;
   margin-right: 11px;
   background-color: #ff908052;
   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 #464951;
    background: #383b44 !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:nth-child(1) {
}

#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: #3d4149;
    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 {
}

#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: #787c85;
}

#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, #494f58 30%, #5a5f6a 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: #7a808b;
}

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

#place_for_messages .dialog>div:nth-child(2):hover {
    background-color: #4c5069;
    opacity: 0.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: 0px 20px;
    /* position: relative; */
}

#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 #434751;
    background: #383b44 !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: #828693e6;
    transition: .2s all;
    border-radius: 8px;
    position: relative;
}

#chat .input-group .smile_input #smile_btn:hover::after {
    color: #ffffff;
    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: 0.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: bold;
}

#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: 0.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: 0.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(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.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;
    /* overflow: hidden; */
    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 15px 15px 11px;
    display: flex;
    background: linear-gradient(0deg, #383b44 30%, #414551 100%);
    max-width: fit-content;
    margin-top: -24px;
    font-weight: 600;
    font-size: 11px;
    line-height: 17px;
    color: #ffffff;
}

#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: #7c808e;
    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: #ffffff;
    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: fit-content; */
    width: 30%;
    max-width: 100%;
}

#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: 0.75em;
    vertical-align: -.0667em;
    width: 20px;
    height: 17px;
    line-height: 15px;
    cursor: pointer;
}

#smile_btn::after {
    color: #818490;
    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: #3e424b;
    align-items: center;
    justify-content: center;
}

.smile_input_forum #smile_btn:hover {
    background: #484c56;
}

.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: 0px;
    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: #ffffff;
    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: 0px;
    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, #4e5269a8 30%, #4d5169 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-color: #5086ff1a;
    border-radius: 13px;
    font-size: 11px;
    margin-top: 20px;
    display: flex;
    font-weight: 600;
    border: solid 1px #5086ff;
    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, 0.05), 0 0 1px rgba(10, 31, 68, 0.1);
    box-shadow: 0 18px 18px rgba(10, 31, 68, 0.05), 0 0 1px rgba(10, 31, 68, 0.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, #383c45 30%, #434852 100%);
    border: solid 1px #434852;
    border-radius: 15px;
    margin-bottom: 10px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

#events .event:first-child {}

#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: bold;
}

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

#events .event>span {
    color: #ffffff;
    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: #ffffff;
}

.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: bold;
    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(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    transition: .3s all;
    height: 40px;
    border-radius: 50%;
}

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

.site-stats #load_last_online {
    padding: 55px 16px 20px 27px;
    margin: -40px -16px;
    background: #1e2638;
    border-radius: 0px 0px 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(143 220 147 / 41%) 20%, rgb(58 63 82) 52%);
    box-shadow: 0px 0px 10px 0px #3a3f52;
    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(143 220 147 / 41%) 20%, rgb(58 63 82) 52%);
    box-shadow: 0px 0px 10px 0px #3a3f52;
    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 140 160 / 56%) 20%, rgb(52 57 74 / 0%) 52%);
    box-shadow: 0px 0px 10px 0px #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 140 160 / 56%) 20%, rgb(52 57 74 / 0%) 52%);
    box-shadow: 0px 0px 10px 0px #34394a00;
    height: 35px !important;
}

#last_activity>div,
#last_activity>span,
#mybans>div,
#mybans>span {
    display: flex;
    background: linear-gradient(154deg, #4c505b 10%, #464a54 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:last-child,
#last_activity>span:last-child,
#mybans>div:last-child,
#mybans>span:last-child {
    /* margin-bottom: -19px; */
}

#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: #ffffff;
    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, #383c44 30%, #464a54 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%, #767883 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;
    /* top: 3px; */
    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;
    /* right: 1px; */
    position: relative;
}

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

.comment .message .with_code img {}

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

.comment .dell_message:hover {
    color: #ffffff;
}

.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: 0px;
    font-size: 11px;
    font-weight: 600;
    color: #5a6a8c;
}

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

#forum .row {
    margin: 0px;
    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: #ffffff;
}

#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: #ffffff;
    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: #ffffff;
    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, 0.12), 0 0 1px rgba(10, 31, 68, 0.1);
    box-shadow: 0 26px 26px rgba(10, 31, 68, 0.12), 0 0 1px rgba(10, 31, 68, 0.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: 0px;
}

.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: #ffffff;
    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 {
}

.topic-answers div[id^="answer"] .right-side a.date a,
.topic-answers div[id^="answer"] .right-side span a {
    color: #ffffff;
    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, 0.1), 0 0 1px rgba(10, 31, 68, 0.08);
    box-shadow: 0 3px 4px rgba(10, 31, 68, 0.1), 0 0 1px rgba(10, 31, 68, 0.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, 0.1), 0 0 1px rgba(10, 31, 68, 0.08);
        box-shadow: 0 3px 4px rgba(10, 31, 68, 0.1), 0 0 1px rgba(10, 31, 68, 0.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 0px 26px rgba(10, 31, 68, 0.12);
        box-shadow: -1px 0px 26px rgba(10, 31, 68, 0.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: #ffffff;
        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;
    border-radius: 10px !important;
    background: linear-gradient(23deg, #fe9544 0%, #e5768d 55%) !important;
}

.btn-group-toggle .btn.btn-default.active .title_rcon_btn {
    color: #ffffff !important;
    font-size: 10px !important;
    line-height: 0px !important;
    display: flex;
    height: 23px;
    border-radius: 50px;
    padding: 0px 10px;
    margin-top: -3px;
    background: #ffffff42;
    align-items: center;
}

.btn-group-toggle .btn.btn-default:not(.btn-sm) {
    line-height: 26px;
    height: 90px !important;
    border-radius: 15px !important;
}

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%;
    /* margin-bottom: 12px; */
}

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: 16px;
    color: #ffffff;
    width: 34px;
    display: flex;
    border-radius: 9px;
    height: 34px;
    background: #5a5e68;
    align-items: center;
    justify-content: center;
}

.description_cases {
    color: #ffffff;
    font-size: 11.5px;
}

.info_cases {
    gap: 6px;
    display: flex;
    background: #ff88a11a;
    width: 16px;
    height: 16px;
    margin-bottom: 8px;
    color: #ff849d;
    border-radius: 50px;
    font-size: 6px !important;
    align-items: center;
    justify-content: center;
}

.info_cases i {
}

.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: 0px;
    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: #ffffff;
}

.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, 0.1);
    box-shadow: 0 4px 4px rgba(0, 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: 0.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, 0.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: 0px 7px 0px 0px;
    font-weight: 600;
}

.profile-top-menu li a.active,
.profile-top-menu li a:hover {
    color: #ffffff;
    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: #ffffff;
}

.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 0px 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 0px 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 0px 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: #ffffff;
    font-size: 11.5px;
    line-height: 18px;
    margin-left: 1px;
    letter-spacing: 0.5px;
}

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

.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 0px 16px;
    background: url(../img/pay-area.jpg) center;
    background-size: 100% auto;
}

.pay-area b {
    color: white;
    font-weight: bold;
    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, 0.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: #ffffff;
    background: #7ab981;
    border: 2px solid #7ab981;
}

#operations .with-icon i.fa-minus {
    color: #ffffff;
    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: #ffb69d;
    margin-bottom: 0px;
    border-radius: 10px;
    margin-top: 0px;
}

.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: #ffffff;
    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: #ffffff;
    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);
    /* float: right; */
}

#news a.small-new div p {
    font-size: 12px;
    margin: 0;
    line-height: 13.5px;
    display: block;
    color: #585f74;
}

#news a.small-new:last-child {
    /* margin-bottom: -23px; */
}

#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: bold;
    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;
    /* border: 1.0px solid #2d334c; */
    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: #ffffff;

}

#main-slider.carousel .carousel-control-prev:hover i,
#main-slider.carousel .carousel-control-next:hover i {
    color: #ffffff;
}

#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 {
        /* right: 44px; */
        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: #ffffff;
    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-track {
    /* background: rgb(28 31 39 / 0%); */
}

::-webkit-scrollbar-thumb {
    background: #474b58;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
    background: #474b58;
}

.stors {}

.stors__img {
    border-radius: 5px;
}


#my_cases_area {
    margin-top: 10px;
    border-radius: 5px;
}

.opened-case {
}

.onlines {
    float: right;
    background: #ffffff00;
    height: 5px;
    padding: 10px;
    padding-left: 10px;
    margin-top: 18px;
    padding-right: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 0px;
    /* border-left: solid 1px #2f3448; */
    font-size: 11px;
    line-height: 0px;
}

.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: 0.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: 0px 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: #41454f;
    background-clip: padding-box;
    border-radius: 15px;
}

:root {
    /* --swiper-theme-color: #007aff; */
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: auto;
    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(0px, 0, 0)
}

.swiper-pointer-events {
    touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
    transition-property: transform
}

.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(0px, -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: 0px;
    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: #ffffff;
    font-size: 8px;
    transition: .2s all;
    height: 12px;
    position: relative;
    background: #313f5d;
    top: -0.5px;
    margin-left: 3px;
    display: inline-block;
    line-height: 13px;
    border-radius: 50px;
    padding: 0px 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.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.0;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.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: #ffffff;
    font-weight: 600;
    height: 33px;
    border-radius: 9px;
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    width: 33px;
    background: linear-gradient(23deg, #fe9544 0%, #e5768d 55%);
    transition: .2s all;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.message_button:hover {
   opacity: 1;
   color: #ffffff;
}

.profile_button {
    color: #7f8590;
    font-weight: 600;
    height: 33px;
    border-radius: 9px;
    font-size: 14px;
    display: flex;
    width: 33px;
    transition: .2s all;
    background: linear-gradient(25deg, #464b56 30%, #575d6a 100%);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.profile_button:hover {
   opacity: 0.7;
   color: #898fa7;
}

.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: #7e8590;
    font-weight: 600;
    padding: 0px;
    font-size: 11.5px !important;
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: block;
    border-bottom: dashed 1px #8a909b7a;
    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 #4e515a;
    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: #767b83;
    align-items: center;
    transition: 0.2s;
    justify-content: center;
}

.tabes .tab.active {
    color: #ffffff;
    background: linear-gradient(23deg, #fe9544 0%, #e5768d 55%);
    box-shadow: 0px 10px 40px #e87a844d;
}

.tabes .tab.active:hover {
    color: #ffffff;
background: linear-gradient(23deg, #fe9544 0%, #e5768d 55%);
    box-shadow: 0px 10px 40px #e87a844d;
}

.tabes .tab:hover {
    color: #ffffff;
    background: #474b53;
}

.tab-contentes {
    display: none;
}

.tab-contentes.active {
    display: block;
}

.form_control_auth {
    font-size: 11.5px;
    font-weight: 600;
    width: 86%;
    border-radius: 0px 11px 11px 0px;
    text-indent: 0;
    background: #40444d !important;
    border: none;
    color: #ffffff;
}

.form_control_auth:focus {
    border-color: #40444d;
    color: #ffffff;
    background: #40444d !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

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

.input_login {
    display: flex;
    margin-bottom: 9px;
    background: #40444d;
    border-radius: 11px;
    align-items: center;
}

.block_purse_base {
  border-radius: 15px;
  background: linear-gradient(1deg, #40454f96 30%, #40454f 100%);
  padding: 20px 20px 10px 20px;
  margin-bottom: 12px;
}

.buy_purse {
  transition: 0.2s;
  color: #ffff;
  background: linear-gradient(23deg, #fe9544 0%, #e5768d 55%);
  border: none;
  padding: 15px 20px;
  height: 55px;
  position: relative;
  font-size: 11px;
  border-radius: 11px;
  top: 1px;
  font-weight: 600;
}

.buy_purse:hover {
  opacity: 0.7;
}

.button_summa {
  border: none;
  padding: 10px;
  border-radius: 9px;
  cursor: pointer;
  transition: 0.2s;
  width: 70px;
  background: linear-gradient(1deg, #575c6899 30%, #575c68 100%);
  color: #fff;
  font-weight: bold;
}

.button_summa:hover {
  opacity: 0.7;
}

.select_number {
  padding: 15px;
  background: linear-gradient(1deg, #41464fa8 30%, #41464f 100%);
  border-radius: 15px;
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.input_login i {
    height: 39px;
    background: #525661;
    display: flex;
    width: 39px;
    margin-left: 7px;
    color: #7b808e;
    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: #71767e;
    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: #44484f;
    height: 3px;
    width: 70%;
    border-radius: 150%;
    display: flex;
    margin-bottom: 5px;
    margin-top: 5px;
    justify-content: center;
    align-items: center;
}

.circle_social {
    background: #393c44;
    width: 16px;
    box-shadow: 0px 10px 40px #f0846b;
    height: 16px;
    border: solid 3px #f0846b;
    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: #646a7f;
}

.info_discount {
  padding: 20px;
  border: dashed 1px #515561;
  border-radius: 15px;
  background: #4d515d3d;
}

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

.flex_discount i{
  font-size: 18px;
  color: #ff8e83;
}

.flex_discount span{
  font-weight: bold;
  font-size: 14px;
}

.text_discount_info {
  color: #757983;
  font-size: 11px;
  font-weight: bold;
  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;
    background: linear-gradient(23deg, #fe9544 0%, #e5768d 55%);
    font-weight: 600;
    box-shadow: 0px 10px 40px #ee817117;
    color: #ffffff;
    display: inline-flex;
    padding: 1px 50px;
}

.text_description_auth {
    color: #6c6f75;
    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 #424146;
    border-radius: 50px;
    color: #6d6f75;
    width: fit-content;
    font-size: 15px;
    font-weight: bold;
}

.text_social {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.desp_social {
    font-weight: bold;
    color: #6c6f75;
    font-size: 13px;
}

.recovery_back {
    display: flex;
    gap: 8px;
    align-items: center;
    border: solid 1px #4e515a;
    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, #fe9544 0%, #e5768d 55%);
    box-shadow: 0px 10px 40px #e87a844d;
    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: #767b83;
    align-items: center;
    transition: 0.2s;
    justify-content: center;
}

.back_recovery:hover {
    background: #474b53;
    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 157);
    display: flex;
    padding-left: 1px;
    width: 26px;
    height: 26px;
    background: rgb(228 130 151 / 22%);
    align-items: center;
    justify-content: center;
}

.stable {
    display: flex;
    position: relative;
    letter-spacing: 1px;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    background: rgb(229 117 141 / 11%);
    align-items: center;
    font-size: 8px;
    color: rgb(255 142 165);
    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: 0px 4px;
    background: #474b56;
}

.arrow_users_top {
    background: #666b73;
    height: 33px;
    width: 33px;
    border: solid 3px #474b56;
    color: #a9aeb4;
    margin-left: -2px;
    display: flex;
    z-index: 1;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
}

.img_back_friends {
    position: relative;
    filter: blur(6px);
    opacity: 0.3;
    z-index: 0;
    margin-bottom: -55px;
    margin-left: -10px;
    width: 52px !important;
    height: 52px !important;
}

.img_back_user {
    position: relative;
    filter: blur(6px);
    opacity: 0.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: 0.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, #fe9544 0%, #e5768d 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: 0.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: #ffffff;
}

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: #ffffff;
}

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: #ffffff;
}

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: #797e8b;
}