/* Контейнер реакций должен иметь относительное позиционирование */
.reactions-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 8px 0;
    border-top: 1px solid #e7f0fd;
    border-bottom: 1px solid #e7f0fd;
    position: relative; /* Добавляем это */
}

/* Плюсик должен быть видимым и кликабельным */
.reactions-add-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    position: relative; /* Добавляем это */
    z-index: 1; /* Добавляем это */
}

/* Анимация фейерверка для эмодзи-реакций */
.reaction-particle {
    position: fixed;
    pointer-events: none;
    animation: flyReaction 2s ease-in-out forwards;
    z-index: 10000;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-size: 20px;
}

@keyframes flyReaction {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) scale(var(--s)) rotate(var(--r));
        opacity: 0;
    }
}

/* Анимация фейерверка для эмодзи-реакций */
.reaction-particle {
    position: fixed;
    pointer-events: none;
    animation: flyReaction 2s ease-in-out forwards;
    z-index: 10000;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-size: 20px;
}

@keyframes flyReaction {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) scale(var(--s)) rotate(var(--r));
        opacity: 0;
    }
}

/* Скрываем плюсик для неавторизованных пользователей */
.reactions-container.unauthorized .reactions-add-btn {
    display: none;
}

.reactions-container.unauthorized .reactions-eye {
    margin-left: 0;
}

/* Анимация появления реакций под статусом */
@keyframes reactionAppear {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.reaction-item {
    display: inline-flex;
    align-items: center;
    background: #e7f0fd;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #d0e0f5;
    animation: reactionAppear 0.3s ease-out;
}

.reaction-item:hover {
    background: #d0e0f5;
    transform: scale(1.05);
}

.reaction-item.active {
    background: #2a7ae2;
    color: white;
}

/* Анимация для эмодзи в модальном окне при выборе */
.reaction-emoji.selected {
    animation: reactionBounce 0.6s ease;
    background: #2a7ae2 !important;
    color: white;
}

@keyframes reactionBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

/* Улучшенные стили для модального окна с анимацией появления эмодзи */
.reactions-emoji-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.reaction-emoji {
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform: scale(0);
    opacity: 0;
    animation: emojiAppear 0.3s ease forwards;
}

.reaction-emoji:hover {
    background: #e7f0fd;
    transform: scale(1.2);
}

.reaction-emoji.active {
    background: #2a7ae2;
    color: white;
}

/* Анимация появления эмодзи в модальном окне с задержками */
@keyframes emojiAppear {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Задержки для поочередной анимации появления эмодзи в модальном окне */
.reaction-emoji:nth-child(1) { animation-delay: 0.05s; }
.reaction-emoji:nth-child(2) { animation-delay: 0.1s; }
.reaction-emoji:nth-child(3) { animation-delay: 0.15s; }
.reaction-emoji:nth-child(4) { animation-delay: 0.2s; }
.reaction-emoji:nth-child(5) { animation-delay: 0.25s; }
.reaction-emoji:nth-child(6) { animation-delay: 0.3s; }
.reaction-emoji:nth-child(7) { animation-delay: 0.35s; }
.reaction-emoji:nth-child(8) { animation-delay: 0.4s; }
.reaction-emoji:nth-child(9) { animation-delay: 0.45s; }
.reaction-emoji:nth-child(10) { animation-delay: 0.5s; }
.reaction-emoji:nth-child(11) { animation-delay: 0.55s; }
.reaction-emoji:nth-child(12) { animation-delay: 0.6s; }
.reaction-emoji:nth-child(13) { animation-delay: 0.65s; }
.reaction-emoji:nth-child(14) { animation-delay: 0.7s; }
.reaction-emoji:nth-child(15) { animation-delay: 0.75s; }
.reaction-emoji:nth-child(16) { animation-delay: 0.8s; }
.reaction-emoji:nth-child(17) { animation-delay: 0.85s; }
.reaction-emoji:nth-child(18) { animation-delay: 0.9s; }
.reaction-emoji:nth-child(19) { animation-delay: 0.95s; }
.reaction-emoji:nth-child(20) { animation-delay: 1.0s; }
.reaction-emoji:nth-child(21) { animation-delay: 1.05s; }
.reaction-emoji:nth-child(22) { animation-delay: 1.1s; }
.reaction-emoji:nth-child(23) { animation-delay: 1.15s; }
.reaction-emoji:nth-child(24) { animation-delay: 1.2s; }
.reaction-emoji:nth-child(25) { animation-delay: 1.25s; }

/* Анимация для модального окна */
@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.reactions-modal-content {
    animation: modalAppear 0.3s ease-out;
}

.reactions-users-modal-content {
    animation: modalAppear 0.3s ease-out;
}

.reactions-users-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10004;
    overflow-y: auto;
}

.reactions-users-modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalAppear 0.3s ease-out;
}

.reactions-users-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e7f0fd;
}

.reactions-users-modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

.reactions-users-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.reactions-users-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.reactions-users-list {
    max-height: 400px;
    overflow-y: auto;
}

.reaction-user {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: background 0.3s;
}

.reaction-user:hover {
    background: #e7f0fd;
}

.reaction-user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #2a7ae2;
}

.reaction-user-info {
    flex-grow: 1;
}

.reaction-user-nick {
    font-weight: bold;
    color: #2c3e50;
    font-size: 14px;
}

.reaction-user-emoji {
    font-size: 18px;
    margin-left: 10px;
}

.no-reactions {
    text-align: center;
    padding: 30px;
    color: #666;
    font-style: italic;
}

.loading-reactions {
    text-align: center;
    padding: 30px;
    color: #2a7ae2;
}

/* Анимации для реакций */
@keyframes reactionAppear {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes reactionBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.reaction-item {
    display: inline-flex;
    align-items: center;
    background: #e7f0fd;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #d0e0f5;
    animation: reactionAppear 0.4s ease-out;
}

.reaction-item:hover {
    background: #d0e0f5;
    transform: scale(1.05);
    animation: reactionBounce 0.6s ease;
}

.reaction-item.active {
    background: #2a7ae2;
    color: white;
}

.reaction-item.new {
    animation: reactionAppear 0.5s ease-out, reactionBounce 0.8s ease 0.5s;
}

/* Анимация для эмодзи в модальном окне при выборе */
.reaction-emoji.selected {
    animation: reactionBounce 0.6s ease;
    background: #2a7ae2 !important;
    color: white;
}

/* Улучшенные стили для модального окна */
.reactions-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10003;
    overflow-y: auto;
}

.reactions-modal-content {
    position: relative;
    background: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    max-width: 300px;
    width: 90%;
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Убедимся, что контент модального окна не закрывает клики */
.reactions-modal-content {
    pointer-events: auto;
}

.reactions-modal {
    pointer-events: auto;
}

/* Стили для сердечка и счетчика лайков */
.heart-likes-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
   /* gap: 12px; */
    margin: 15px auto;
    padding: 12px 24px;
    background: #e7f0fd;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid #d0e0f5;
    transition: all 0.3s ease;
    max-width: fit-content;
}

.heart-likes-container:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.heart-emoji {
    font-size: 26px;
    color: #e74c3c;
    cursor: pointer;
    transition: transform 0.2s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    line-height: 1;
}

.heart-emoji:hover {
    transform: scale(1.3);
}

.likes-count {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    min-width: 25px;
    text-align: center;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.heart {
    position: absolute;
    color: #e74c3c;
    pointer-events: none;
    animation: fly 2s ease-in-out forwards;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@keyframes fly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) scale(var(--s));
        opacity: 0;
    }
}

/* Специальные стили для десктопной версии */
.desktop-version .profile-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.desktop-version .profile-info {
    width: 100%;
    text-align: center;
}

.desktop-version .profile_avatar {
    display: flex;
    justify-content: center;
    width: 100%;
}

.desktop-version .profile_avatar img,
.desktop-version .profile_avatar figure {
    display: block;
    margin: 0 auto;
}

/* Специальные стили для мобильной версии */
.mobile-version .photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mobile-version .photo-section h1.nick {
    width: 100%;
    text-align: center;
}

.mobile-version .photo-section .avatar-main,
.mobile-version .photo-section figure {
    display: block;
    margin: 0 auto;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .heart-likes-container {
        padding: 10px 20px;
        gap: 10px;
    }
    
    .heart-emoji {
        font-size: 24px;
    }
    
    .likes-count {
        font-size: 16px;
    }
}

.active {padding-bottom: 20px;}

.button {
    background-color: #2da5da;
    opacity: 0.8;
    -ms-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
}
.button {
    height: 28px;
    line-height: 21px;
    overflow: hidden;
    padding: 7px 10px;
    outline: none;
    border: 0;
    font: 300 13px / 19px 'Open Sans', Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #FFF;
    cursor: pointer;
}
/* Мобильная адаптация */
@media (max-width: 768px) {
    .cover-photo {
        display: none !important;
    }
  
    .anketa-main {
        max-width: 100vw !important;
        margin: 10px !important;
        padding: 15px !important;
        box-sizing: border-box;
    }
  
    .anketa-flex {
        flex-direction: column !important;
        gap: 0 !important;
    }
  
    .anketa-left, .anketa-right {
        max-width: 100% !important;
        min-width: 0 !important;
        flex: 1 1 100% !important;
    }
  
    .nav {
        display: none !important;
    }
  
    .tab-content {
        display: block !important;
        width: 100% !important;
    }
  
    .tab1, .tab5, .tab7 {
        display: block !important;
    }
  
    .tab2, .tab3, .tab4, .tab6 {
        display: none !important;
    }
  
    .profile_avatar {
        text-align: center;
        margin: 0 auto !important;
    }
  
    .profile_avatar img {
        max-width: 150px !important;
        height: auto !important;
        margin: 10px auto !important;
        display: block;
    }
  
    .nick {
        text-align: center;
        font-size: 24px !important;
        margin: 10px 0 !important;
    }
  
    body {
        font-size: 16px;
        line-height: 1.4;
    }
  
    .info {
        font-size: 14px !important;
        margin: 8px 0 !important;
        padding: 8px 10px !important;
    }
  
    .meta p {
        font-size: 14px !important;
        margin: 8px 0 !important;
        text-align: left;
        padding: 0 10px;
    }
  
    /* Скрываем десктопную версию на мобильных */
    .desktop-version {
        display: none !important;
    }
  
    /* Показываем мобильную версию */
    .mobile-version {
        display: block !important;
    }
  
    .mobile-section {
        width: 100%;
        margin-bottom: 20px;
    }
  
    /* Изменения для фото и ника в мобильной версии - теперь в столбец */
    .photo-section {
        display: block;
        text-align: center;
    }
    .photo-section .avatar-main {
        margin: 10px auto;
       /* display: block; */
        display: flex;
    justify-content: center;
    }
    .photo-section .nick {
        text-align: center;
        margin: 10px 0;
    }
    figure {
        position: relative;
        margin: 0 auto;
        display: inline-block;
    }
}
/* Десктоп стили */
.anketa-main {
  max-width: 950px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  padding: 30px 22px;
}
.anketa-flex {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.anketa-left, .anketa-right {
  flex: 1 1 320px;
  min-width: 260px;
}
.anketa-right {
  min-width: 340px;
}
.section-title {
  background: #e7f0fd;
  color: #2a7ae2;
  font-weight: bold;
  font-size: 1.1em;
  padding: 7px 0;
  border-radius: 8px;
  margin-bottom: 7px;
  text-align: center;
  letter-spacing: 0.5px;
}
.anketa-section {
  background: #f7fafc;
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.anketa-section table {
  width: 100%;
  font-size: 1em;
}
.anketa-section td {
  padding: 5px 7px;
  border-bottom: 1px solid #e0e7ff;
}
.anketa-section tr:last-child td {
  border-bottom: none;
}
.anketa-label {
  color: #444;
  font-weight: 500;
  width: 130px;
}
.anketa-value {
  color: #1a237e;
}
.friends-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin: 18px 0 0 0;
}
.friend-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
  margin-bottom: 10px;
  text-align: center;
  background: #f5faff;
  border-radius: 12px;
  padding: 8px 0 5px 0;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s;
}
.friend-card:hover {
  box-shadow: 0 4px 16px rgba(42, 122, 226, 0.2);
  background: #e7f0fd;
}
.friend-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2a7ae2;
  background: #fff;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.friend-nick {
  font-size: 15px;
  color: #2a7ae2;
  word-break: break-all;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.avatar-main {
  border-radius: 16px;
  border: 3px solid #2a7ae2;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  display: block;
  max-width: 300px;
}
/* Стили для обложки */
.cover-photo {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  margin-bottom: 20px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
/* По умолчанию скрываем мобильную версию */
.mobile-version {
  display: none;
}
/* По умолчанию показываем десктопную версию */
.desktop-version {
  display: block;
}
/* Новые стили для правильного позиционирования фотографии и заголовка */
.photo-section {
  margin-top: 15px;
}
/* Убираем flex-контейнер для десктопной версии */
.profile-header-container {
  margin-bottom: 15px;
}
.profile-info {
  text-align: center;
  margin-bottom: 15px;
}
.nick {
  font-size: 28px;
  margin: 0 0 15px 0;
  color: #2a7ae2;
  font-weight: bold;
}
.profile_avatar {
  display: flex;
justify-content: center;
}
.profile-details {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}
/* Четкое позиционирование секций */
.section-title {
  position: relative;
  z-index: 1;
}
.status-block, .friends-box {
  position: relative;
  z-index: 1;
}
figure {
    position: relative;
    margin: 0;
}
/* Стили для раздела Звание */
.zvanie-block {
  background: #f7fafc;
  border-radius: 12px;  
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  text-align: center;
}
.zvanie-text {
  font-family: 'Casanova', serif;
  color: #1a237e;
  font-size: 1.1em;
  line-height: 1.4;
}
.index-body {
	padding:0px; margin:0px;background-color:#fff;}

.avatar {width: 100px; height: 100px; border-radius: 50px;}
.friends {
    margin-top: 25px;
    margin-left: 1px;
    
}
#friends {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
	text-align: center;
   /* margin-left: 30px;*/
}
.href__hover:hover .image__hover{
display:block;
position: absolute;
width:150px;
z-index: 1;
}
.image__hover{
display:none;
}
.image__hover img{
width:100%;
border-radius: 5px;
border: 2px solid #fff;
}

.button__adm {
	background: white !important; 
	margin-right: 10px;
	transition: background 0.7s ease !important;
	border-radius: 30px !important;
	color: #009688 !important;
	padding: 0 10px 0 10px !important;
	font-family: Verdana;
}

.button__adm:hover {
	background-color: #2fb266 !important;
	color: white !important;
    transition: background 0.7s ease !important;
}
/* С€СЂРёС„С‚С‹ */
   	@font-face {
    font-family: 'CoquetteC';
    src: url('https://soulty.ru/fonts/CoquetteC.ttf')
}
	@font-face {
                font-family: 'Auriol_LT_Italic';
                src: url('https://soulty.ru/fonts/Auriol_LT_Italic.ttf');
            }
	@font-face {
                font-family: 'Adventure';
                src: url('https://soulty.ru/fonts/Adventure.ttf');
            }								
	@font-face {
                font-family: 'Isadora_Cyr';
                src: url('https://soulty.ru/fonts/Isadora_Cyr.ttf');
            }
	@font-face {
    font-family: 'Kurale';
    src: url('https://soulty.ru/fonts/Kurale.ttf');
}
	@font-face {
    font-family: 'Bernhard_CursiveC';
    src: url('https://soulty.ru/fonts/Bernhard_CursiveC.ttf');
}	

	@font-face {
    font-family: 'Miranda_script_Black';
    src: url('https://soulty.ru/fonts/Miranda_script_Black.ttf');
}	
	@font-face {
    font-family: 'ThannhaeuserC';
    src: url('https://soulty.ru/fonts/ThannhaeuserC.ttf');
}
	@font-face {
    font-family: 'Custodia_Deco';
    src: url('https://soulty.ru/fonts/Custodia_Deco.ttf');
}
	@font-face {
    font-family: 'Tamburin_Modern';
    src: url('https://soulty.ru/fonts/Tamburin_Modern.ttf');
}
	@font-face {
    font-family: 'Aelita_Victorian';
    src: url('https://soulty.ru/fonts/Aelita_Victorian.ttf');
}
	@font-face {
    font-family: 'Scandia';
    src: url('https://soulty.ru/fonts/Scandia.ttf');
}
	@font-face {
    font-family: 'Nautilus_script';
    src: url('https://soulty.ru/fonts/Nautilus_script.ttf');
}
	@font-face {
    font-family: 'Lunapark_One';
    src: url("https://soulty.ru/fonts/Lunapark_One.ttf");
}
	@font-face {
    font-family: 'ArkonaC';
    src: url('https://soulty.ru/fonts/ArkonaC.ttf');
}
	@font-face {
    font-family: 'PalmettoC';
    src: url('https://soulty.ru/fonts/PalmettoC.ttf');
}
	@font-face {
    font-family: 'Amaltea_One';
    src: url('https://soulty.ru/fonts/Amaltea_One.ttf');
}
	@font-face {
    font-family: 'Eleonora';
    src: url('https://soulty.ru/fonts/Eleonora.ttf');
}

	@font-face {
    font-family: 'VelesBold';
    src: url('https://soulty.ru/fonts/VelesBold.otf');
}

	
	@font-face {
    font-family: 'VeryBerry';
    src: url('https://soulty.ru/fonts/VeryBerry.ttf');
	}
		@font-face {
    font-family: 'Segoe_Print';
    src: url('https://soulty.ru/fonts/Segoe_Print.otf');
	}
			@font-face {
    font-family: 'ArbatC';
    src: url('https://soulty.ru/fonts/ArbatC.ttf');
	}

					@font-face {
    font-family: 'Foma_flibustier';
    src: url('https://soulty.ru/fonts/Foma_flibustier.ttf');
	}

					@font-face {
    font-family: 'Tildascript';
    src: url('https://soulty.ru/fonts/Tildascriptsnonconnectdemo.otf');
	}
					@font-face {
    font-family: 'BeauRegular';
    src: url('https://soulty.ru/fonts/BeauRegular.ttf');
	}				
	@font-face {
    font-family: 'SuperLiamSans';
    src: url('https://soulty.ru/fonts/SuperLiamSansExtremeRegular.otf');
	}
		@font-face {
    font-family: 'ArmataSaber';
    src: url('https://soulty.ru/fonts/ArmataSaberRegular.otf');
	}
			@font-face {
    font-family: 'ArmataSaberItalic';
    src: url('https://soulty.ru/fonts/ArmataSaberRegularItalic.otf');
	}
			@font-face {
    font-family: 'TabulaPeutingeriana';
    src: url('https://soulty.ru/fonts/TabulaPeutingeriana.ttf');
	}
					@font-face {
    font-family: 'AdigianaUltra';
    src: url('https://soulty.ru/fonts/AdigianaUltra.ttf');
	}
					@font-face {
    font-family: 'AdigianaUltra';
    src: url('https://soulty.ru/fonts/AdigianaUltra.ttf');
	}
		@font-face {
    font-family: 'CormorantInfant-Regular';
    src: url('https://soulty.ru/fonts/CormorantInfant-Regular.ttf');
	}
		@font-face {
    font-family: 'CormorantInfant-Bold';
    src: url('https://soulty.ru/fonts/CormorantInfant-Bold.ttf');
	}
			@font-face {
    font-family: 'CormorantInfant-Italic';
    src: url('https://soulty.ru/fonts/CormorantInfant-Italic.ttf');
	}
		@font-face {
    font-family: 'Monotype Corsiva';
    src: url('https://soulty.ru/fonts/monotypecorsiva.ttf');
	}
			@font-face {
    font-family: 'Lucida Console';
    src: url('https://soulty.ru/fonts/lucidaconsole.ttf');
	}
			@font-face {
    font-family: 'Comic Sans MS';
    src: url('https://soulty.ru/fonts/Comic_Sans.ttf');
	}

					@font-face {
    font-family: 'Palatino Linotype';
    src: url('https://soulty.ru/fonts/Palatino_Linotype.ttf');
	}
						@font-face {
    font-family: 'arnopro';
    src: url('https://soulty.ru/fonts/arnopro-bolditalic.ttf');
	}
							@font-face {
    font-family: 'Blogger Sans';
    src: url('https://soulty.ru/fonts/Blogger_Sans.ttf');
	}
			@font-face {
    font-family: 'LeksaPro';
    src: url('https://soulty.ru/fonts/LeksaPro.ttf');
	}

/* РІС‹СЂР°РІРЅРёРІР°РЅРёРµ */
input, select {vertical-align:middle; margin:0px;}
img {vertical-align: middle; border:0px;}

/* СЃСЃС‹Р»РєРё  */
a,a:active{color:#005DB5; font: bold 12px Verdana; text-decoration: none;}
a:hover{text-decoration: underline;}

/* С‚Р°Р±Р»РёС†С‹ */
table { border:1px #7897BB solid; border-collapse:collapse;}
td {color:#000000; background-color:#f3f3f3; font: 12px Verdana; padding:4px; border:1px #7897BB solid; }

/* РєРЅРѕРїРєРё, С‚РµРєСЃС‚РѕРІС‹Рµ РїРѕР»СЏ Рё СЃРµР»РµРєС‚РѕСЂС‹ */
input, select, textarea {margin-bottom: 4px; padding:3px 6px; border:1px #aaaaaa solid; border-radius:3px;}
.input__reg {border-radius:5px;  border:1px solid #e2e2e2; padding-bottom: 5px;padding-top:5px;padding-left:9px;padding-right: 9px;width: 80%;font-family:kurale;font-size:15px;outline: 0; margin-bottom: 3px;}
.input__mess {border-radius:5px;  border:1px solid #e2e2e2; padding-bottom: 5px;padding-top:5px;padding-left:9px;padding-right: 9px;font-family:kurale;font-size:15px;outline: 0; width:35%; margin-bottom: 8px;}
.input__cmd {border-radius:5px;  border:1px solid #e2e2e2; padding-bottom: 5px;padding-top:5px;padding-left:9px;padding-right: 9px;font-family:kurale;font-size:15px;outline: 0; width:10%; margin-bottom: 8px;}


      @media only screen and (max-width: 960px) {
		.input__mess {
        width:44%;
		  }
		.input__cmd {
        width:20%;
			}
		.dropdown-block {
			 display: none !important;
		}
		.dropdown {
			display: none !important;
		}
		.dropdown-mobile {
			display: inline-block !important;
		}
		  .menu__logo {
		   margin-top: 20px;
		   }
		   .menu {
		   width: 100%;
		   padding-right: 0;
		   }
      }
     
	  
	 

input[type=checkbox] {width:16px; height:16px; border:0px;}
input[type=file] {border:0px;}
input[type=button], input[type=submit] {cursor:pointer; padding:9px 11px; color: white; border-radius:5px; border:0px; background-color:#377BB5; background: linear-gradient(to bottom, #5D9AD0, #2E6DA3);}
input[type=button]:hover, input[type=submit]:hover {background-color:#377BB5; background: linear-gradient(to bottom, #6DAAE0, #3E7DB3);}
input[type=button]::-moz-focus-inner, input[type=submit]::-moz-focus-inner {border:0; padding:0;} /* FF fix padding */

:hover::-webkit-input-placeholder {
  color: transparent
}

:hover::-moz-placeholder {
  color: transparent
}

:hover:-moz-placeholder {
  color: transparent
}

:hover:-ms-input-placeholder {
  color: transparent
}

textarea::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.3s ease;}
textarea::-moz-placeholder                {opacity: 1; transition: opacity 0.3s ease;}
textarea:-moz-placeholder                 {opacity: 1; transition: opacity 0.3s ease;}
textarea:-ms-input-placeholder            {opacity: 1; transition: opacity 0.3s ease;}
textarea:hover::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
textarea:hover::-moz-placeholder          {opacity: 0; transition: opacity 0.3s ease;}
textarea:hover:-moz-placeholder           {opacity: 0; transition: opacity 0.3s ease;}
textarea:hover:-ms-input-placeholder      {opacity: 0; transition: opacity 0.3s ease;}

input::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.3s ease;}
input::-moz-placeholder                {opacity: 1; transition: opacity 0.3s ease;}
input:-moz-placeholder                 {opacity: 1; transition: opacity 0.3s ease;}
input:-ms-input-placeholder            {opacity: 1; transition: opacity 0.3s ease;}
input:hover::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
input:hover::-moz-placeholder          {opacity: 0; transition: opacity 0.3s ease;}
input:hover:-moz-placeholder           {opacity: 0; transition: opacity 0.3s ease;}
input:hover:-ms-input-placeholder      {opacity: 0; transition: opacity 0.3s ease;}

/* РёРєРѕРЅРєР° РІС‹Р±РѕСЂР° С„Р°Р№Р»Р° РґР»СЏ Р·Р°РіСЂСѓР·РєРё */
.file {vertical-align:middle; display:inline-block; overflow:hidden; width:16px; height:16px; background-image:url(//mpchat.com/blank/img/image.png);}
.file input {cursor:pointer; width:16px; height:16px;	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); -moz-opacity: 0; -khtml-opacity: 0; opacity: 0;}

/* СЃС‚РёР»СЊ Р·Р°РіРѕР»РѕРІРєР° С‚Р°Р±Р»РёС†С‹ .title */
.title   {color:white; background-color:#7897BB; font-weight:bold;}
.title a {color:white;}
.title a:active {color:white;}
.title a:hover {color:white;}
.low {color:gray; font: normal 11px Verdana;} 

/* СЃС‚РёР»СЊ РЅРёРєР»РёСЃС‚Р° РІ С„СЂРµР№РјРµ СѓС‡Р°СЃС‚РЅРёРєРѕРІ РґР»СЏ #id=users */
#users table {border:0px;}
#users td {border:0px; }
#users a { font: bold 12px Verdana; }

/* СЃС‚РёР»СЊ РґР»СЏ РёРіСЂС‹ - РІРёРєС‚РѕСЂРёРЅР° */
#gamediv table {border-collapse:collapse;} 
#gamediv td {padding:2px; font:18px Verdana;text-align:center; width:20px; height:15px;}

/* СЃС‚РёР»СЊ РІС‹РІРѕРґРёРјРѕРіРѕ СЃРјР°Р№Р»Р° */
.sm {cursor:pointer;}

/* STYLESATOR */




/* РіР»Р°РІРЅР°СЏ СЃС‚СЂР°РЅРёС†Р°*/

.menu {	
	color:white; 
	font-weight:bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 20px;
	top: 0;
    position: sticky;
    z-index: 1;
	box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.menu li {
	color: #555555;
}

.img__logo {
	max-height: 60px;
	margin-left: 20px;
}

nav {
    max-width: 50rem;
	padding: 25px 20px 24px 20px;
	font-family: 'kurale';
    font-size: 18px;
	transition: background 0.5s ease;
}

nav ul {
    list-style: none;
}

.menu__background {
    display: none;    
    flex-direction: column;      
    position: relative;
}  

@media (min-width: 40rem) {    
    .menu__background {   
        display: flex;     
        flex-direction: row;              
    }  
}


.menu__background.activated {
    display: flex;
}
.menu__background a {
	font-family: 'kurale';
  font-size: 18px;
}

.menu__button {    
    padding: 1.3em 1em;
    cursor: pointer;
	text-decoration: none;
    text-align: center;    
    flex: 1 0 auto;
    position: relative;   
}

.menu__button:hover {
    background: #68686840;
	text-decoration: none;
	transition: background 0.5s ease;
}

@media (min-width: 40rem) {    
    .menu__button--arrow {   
        position: relative;        
    }  
}

.block__avtorization {
    display: flex;
	margin-top: 48px; 
	flex-direction: inherit; 
	justify-content: space-between;
}

.block__page {
    display: flex;
    flex-direction: column;
}

.block_content  { 
border:1px solid #ffffff; 
margin-bottom:5px; 
background:white; 
opacity: 0.9; 
border-radius: 5px; 
color: #555555; 
text-align:center; 
padding: 0 30px; 
font-size:14px;
 width:450px; 
 margin-top: 60px;
 box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.login-submit, .login-submit:before, .login-submit:after {
  background: #fff;
}


.login p {
  margin: 0 0 20px;
}

.avtorization_title {
	font-family: 'CoquetteC';
	text-align:center;
	color: #929292;
	font-size: 25px;
	font-weight: bold;
}

.logo__btn {
background: linear-gradient(180deg,#8C83F7 0,#655BE2 100%);
color:#fff;
border: none;
border-radius: 5px;
height: 42px;
}

.anim-show {
opacity:0; 
	transition: 0.5s; 
	animation: show 2s 1; 
       animation-fill-mode: forwards;
       animation-delay: 1s; 
}

@keyframes show{
 0%{ opacity:0; }
 100% { opacity:1; }
}

.avtorization__login {
  font-family: 'Comfortaa';
  font-size: 15px;
  font-weight: 300;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
    background: #f3f3f3;
  outline: 0;
  transition: background 0.7s ease;
  	padding: 10px 35px 10px 13px;
    border-radius: 5px;
    width: 100%;
}


.avtorization__login[type=text]:focus, .avtorization__login[type=password]:focus {
  color: #858585;
    outline: rgb(223, 230, 254) solid 2px;
    border: 1px solid #3866ff;
}


.avtorization__content {
	border:1px solid #ffffff; 
	margin-bottom:5px; 
	background:white; 
	z-index: 1;
	border-radius: 5px 50px 5px 50px;
	font-size:14px; 
	width:500px;
	box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.login-submit {
  position: absolute;
  top: 18px;
  right: 0;
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 32px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
}
.login-submit:before, .login-submit:after {
  content: '';
  z-index: 1;
  position: absolute;
}
.login-submit:before {
  top: 28px;
  left: -4px;
  width: 4px;
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}
.login-submit:after {
  top: -4px;
  bottom: -4px;
  right: -4px;
  width: 36px;
}


.table__index {
	width:24%; 
	font-family: 'kurale'; 
	font-size: 15px; 
	font-weight: 500; 
	padding-left: 10px;
	color:white; 
	background-color:#7897BB;
}

.footer__content {
	margin-top: 50px;
	margin-bottom: 20px;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
	transition: color 0.7s ease;
}

.footer__content a  {
	color: #fff;
	transition: color 0.7s ease;
}

.footer__content a:visited, .footer__content a:hover {
	color: #51c2e4;
}

/* СЂРµРіРёСЃС‚СЂР°С†РёСЏ */

#regform {
	font-family: 'kurale'; 
	font-size: 15px; 
	width:300px;
	background:white;
	padding: 30px;
	border-radius: 0 25px;
	color: #555555;
}

.search__form {
	font-family: 'kurale'; 
	font-size: 15px; 
	width:350px;
	background:white;
	padding: 30px;
	border-radius: 0 25px;
	color: #555555;
}

.title__page {
	font-family: 'kurale';
	font-size: 20px; 
	color: #005db5;
	font-weight: bold;
	margin-bottom: 0px;
	text-align: center;
}


.info-dj {
    position: absolute;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-family: tahoma;
    border-radius: 10px;
    border: 1px solid #9e9e9e;
    z-index: 1;
	margin-top: 6px;
    width: 80px;
    text-align: center;
}

.marq {
	font-family: 'kurale';
	font-size: 20px; 
	color: #005db5;
	background: white;
	width: 100%;
}

#leftdiv {
	background: #f3f3f3;
	
}


#leftdiv::-webkit-scrollbar {
    width: 9px;
	height: 9px;
    background-color: #eee;
}

#leftdiv::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
	border-radius:20px;
}

#smdiv {
	background: #f3f3f3; 
}

#smdiv::-webkit-scrollbar {
    width: 9px;
	height: 9px;
    background-color: #eee;
}

#smdiv::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
	border-radius:20px;
}

#privatdiv{
background: #f3f3f3; 
}

#privatdiv::-webkit-scrollbar {
    width: 9px;
	height: 9px;
    background-color: #eee;
}

#privatdiv::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
	border-radius:20px;
}

#usersdiv {
	background: #f3f3f3;
}

#usersdiv::-webkit-scrollbar {
    width: 9px;
	height: 9px;
    background-color: #eee;
}

#usersdiv::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
	border-radius:20px;
}

#privatdiv img {
    max-height: 100px;
}



#snow {
position: absolute;
width: 100%;
left: 0;
}




.standartStile {
	transition: 0.5s ease;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.standartStile:hover {
	transition: 0.5s ease;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.neboStile:hover {
	transition: 0.5s ease;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.summerStile:hover {
	transition: 0.5s ease;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.blueStile {
	box-shadow: none;
}

.blueStile:hover {
	transition: 0.5s ease;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.florStile {
	box-shadow: none;
}

.florStile:hover {
	transition: 0.5s ease;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.blackStile {
	box-shadow: none;
}

.blackStile:hover {
	transition: 0.5s ease;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.pinkStile {
	box-shadow: none;
}

.pinkStile:hover {
	transition: 0.5s ease;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.dropdown-main { 
font-family: Verdana;
font-size: 12px;
}


.checkbox + label {
    position: relative;
    padding: 0 0 0 31px;
    cursor: pointer;
}

.checkbox + label:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 30px;
    height: 20px;
    border-radius: 13px;
    background: #CDD1DA;
    box-shadow: inset 0 2px 3px rgb(0 0 0 / 20%);
    transition: .2s;
	}
	
	.checkbox + label:after {
    content: '';
    position: absolute;
    top: 0;
    left: 3px;
    width: 15px;
    height: 15px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
    transition: .2s;
	}
	
	.checkbox:checked + label:after {
    left: 13px;
}
	



.profile__navi {
	justify-content: flex-end;
    display: flex;
    align-items: center;
	margin-right:10px;
	height: 26px;
}

.navi__link {
	display: flex;
    align-items: center;
	height: 20px;
	padding-left: 10px;
	height: 26px;
	transition: background-color 0.7s ease;
}

.navi__link:hover {
	background-color: #ffffff1a;
	transition: background-color 0.7s ease;
}



.profile__photo{
	text-align: center;
	margin: 30px;
	width: 40%;
}

.photo__img {
	color: rgb(255 255 255 / 6%);
}

.photo__img:hover {
	color: white;
}

.nagrads__wrap {
text-align: center;
}

#show__nagrads {
	font-family:kurale;
	font-size:15px; 
	text-align:center;
}

.profile__content {
	margin: 30px 0 30px 0;
	font-family:kurale;
	font-size:15px; 
	width: 50%;
}

.stol {
	width: 140px;
	height: 40px;
	margin-top: 10px;
	transition: background 0.5s ease;
}

.stol:hover {
	cursor: pointer;
	width: 140px;
	height: 40px;
	margin-top: 10px;
	transition: background 0.5s ease;
}

.tooltip {
 position:absolute;
 z-index:999;
 left:-9999px;
 background:white;
 padding:5px;
 border:1px solid #fff;
 border-radius: 3px;
 box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.tooltip p{
 margin:0;
 background: #fff;
 padding:2px 7px;
}

div > .delete {
color: #CCCCCC;
cursor: pointer;
display: block;
float: right;
font: 14px Verdana;
height: 6px;
margin: -3px 5px;
text-decoration: none;
visibility: hidden;
}
div > .delete span {
color: #AAAAAA;
font: bold 14px "Arial Black";
}
div > .delete:hover {
color: #666666;
font: 14px Verdana;
text-decoration: none;
}
div > .delete:hover span {
color: #666666;
font: bold 14px "Arial Black";
text-decoration: none;
}
div:hover > .delete {
display: block;
visibility: visible;
}

.listNick img {
	border-radius: 5px;
}

.clan-body td {
	background-color: #ffffff;
border: none;
padding: 10px;
}


.clan-body table {
	border: none;
}

.in_chat {
	color:#005db5;
}

.error-msg {
color: #ab2828;
    background-color: #ffe3e3f5;
    border-radius: 5px;
    width: 200px;
    padding: 15px 250px 30px;
}
