/*
Theme Name: IPOSharks - Theme
Template: hello-elementor
Author: byAlchakov.ru
Version: 2
Updated: 2025-09-26 15:02:36
Text Domain: iposharks
Domain Path: /languages
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body, button, input, select, textarea, h1, h2, h3, h4, h5, h6, p, span {
    font-family: 'Montserrat', sans-serif!important
}

 


[type=button], [type=submit], button {
	border: 1px solid #0d7886!important;
    border-radius: 3px;
    color: #0d7886;
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
	    background-color: #0d7886!important;
}
 

/* Сделки */ 

.header-flex {
    display: flex;              /* Включаем Flexbox */
    justify-content: space-between; /* Заголовок слева, кнопка справа */
    align-items: center;        /* Вертикальное выравнивание по центру (опционально, чтобы h1 и button были на одной линии) */
    margin-bottom: 20px;        /* Отступ снизу, если нужно (опционально) */
    width: 100%;                /* Полная ширина контейнера */
}

/* Дополнительно: стили для h1 и button, если нужно (чтобы они не растягивались) */
.page-title {
    margin: 0;                  /* Убираем стандартные отступы у h1 */
    flex-shrink: 0;             /* Предотвращаем сжатие заголовка */
}

.btn {
    margin: 0;                  /* Убираем отступы у кнопки */
    flex-shrink: 0;             /* Предотвращаем сжатие кнопки */
    white-space: nowrap;        /* Текст кнопки не переносится */
}


.deal-card {
    text-decoration: none;
    color: inherit;
}

[type="button"]:focus, [type="button"]:hover, [type="submit"]:focus, [type="submit"]:hover, button:focus, button:hover { background: #0d7886; }
.deals-row { vertical-align: middle;}

.page-title { font-size: 2.5em; color: #1a1a1a; margin-bottom: 20px; }
.tabs { display: flex; gap: 20px; margin-bottom: 20px; }
.tab { padding: 10px 0; border: none; background: none; color: #000; cursor: pointer; font-weight: 500; border-bottom: 2px solid transparent; transition: border-color 0.3s ease; }
.tab span { color: #000; font-weight: 400; }
.tab.active { color: #6a6a6a}
.tab-content { display: none; }
.tab-content.active { display: block; }
.deal-card { border: 1px solid #eee; border-radius: 8px; margin-bottom: 15px; padding: 15px; background: #fff; transition: box-shadow 0.3s ease; }
.deal-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.deal-header { display: flex; align-items: center; margin-bottom: 15px; }
.deal-logo { width: 50px; height: 50px; object-fit: cover; border-radius: 5px; margin-right: 15px; }
.deal-info { flex: 1; }
.info-row { display: flex; gap: 20px; margin-bottom: 10px; }
.info-item { display: flex; flex-direction: column; flex: 1; }
.info-item span:first-child { font-size: 1.2em; font-weight: 600; color: #1a1a1a; }
.info-item .label { font-size: 0.9em; color: #666; }
.positive { color: #28a745; }
.negative { color: #dc3545; }
.documents-btn { padding: 8px 16px; background: #0d7886; color: #fff; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s ease; }
.documents-btn:hover { background: #0d7886; }
.deal-documents { margin-top: 15px; padding: 10px; background: #f8f9fa; border-radius: 5px; }
.documents-list { list-style: none; padding: 0; }
.documents-list li { display: flex; align-items: center; margin: 5px 0; color: #333; }
.documents-list i { margin-right: 10px; color: #000; }
.documents-list a { color: #0d7886; text-decoration: none; transition: color 0.3s ease; }
.documents-list a:hover { color: #000; }
.no-deals { color: #666; font-style: italic; }
@media (max-width: 768px) {
    .deal-header { flex-direction: column; text-align: center; }
    .deal-logo { margin-bottom: 10px; }
    .info-row { flex-direction: column; gap: 10px; }
    .info-item { text-align: center; }

}



/* Профиль */ 


/* ==== ОБЩИЕ СТИЛИ ЛК ==== */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Exo 2', sans-serif;
    /*background: url('https://login.iposharks.pro/wp-content/uploads/2025/09/bg.webp') no-repeat center center fixed;
    background-size: cover;*/
    min-height: 90vh;
}
.container {
    max-width: 1250px;
    margin: 80px  auto 20px;
    background: white;
    border-radius: 5px;
	padding: 0px;
   /* box-shadow: 0 8px 30px rgba(0,0,0,0.15);*/
    overflow: hidden;
}

/* ==== ВКЛАДКИ: иконки слева от текста (Font Awesome) ==== */
 
.tab {
    /*flex: 1;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    font-weight: 500;
    gap: 8px;
    font-size: 18px;
}
.tab i {
    font-size: 18px;
    color: #eee;
}
 
/* Мобильная версия — только иконка */
@media (max-width: 767px) {
    .tab span.text {
        display: none;
    }
    .tab {
        gap: 0;
    }
    
    .tabs { flex-wrap: wrap; gap: 0px }
	

}
/* ВКЛАДКИ */
.tab:hover {
     
    color: #6a6a6a;
}
.tab i {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}
.tab span.text {
    display: none; /* По умолчанию только иконка */
}
.tab-content {
    display: none;
    
}
.tab-content.active {
    display: block;
}
/* ==== АДАПТИВ: ПК — показываем текст === */
@media (min-width: 768px) {
    .tab span.text {
        display: block;
        font-size: 14px;
    }
    .tab i {
        margin-bottom: 6px;
    }
}
/* ==== СДЕЛКИ ==== */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}
@media (max-width: 767px) {
    .deals-grid {
        grid-template-columns: 1fr;
    }
	
	
	
}
.deal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.deal-header {
    display: flex;
    align-items: center;
    padding: 15px;
     
}
.deal-header img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    margin-right: 15px;
}
.deal-info {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}
.deal-info strong {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 4px;
}
.deal-details {
    padding: 0 15px 15px;
    background: #f9f9f9;
    font-size: 14px;
    color: #000;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    border-top: 1px dashed #ddd;
}
.deal-card.expanded .deal-details {
    max-height: 200px;
    opacity: 1;
    padding: 15px;
}
.spoiler-btn {
    color: #407e82;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    font-weight: 500;
    padding: 10px 15px;
    font-size: 14px;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
}
.spoiler-btn:hover {
    background: #f0f0f0;
    border-radius: 6px;
}
.profit {
    font-weight: 600;
    font-size: 15px;
}
.profit.positive { color: #28a745; }
.profit.negative { color: #d63638; }

	
/* ==== ДОКУМЕНТЫ ==== */


.a-doc {
    font-size: 22px
}
.upload-area {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .upload-label {
            background: #407e82;
            color: white;
            padding: 10px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .upload-input { display: none; }
        
        
        .delete-btn {
            color: #d63638!important;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            padding-left: 20px;
        }
        .notice {
            padding: 12px 16px;
            margin: 10px 0;
            border-radius: 6px;
            font-size: 14px;
        }
        .notice.success { background: #d4edda; color: #155724; }
        .notice.error { background: #f8d7da; color: #721c24; }
        #upload-loader {
            display: none;
            color: #407e82;
            font-size: 14px;
            margin-left: 10px;
        }

.docs-table-container {
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #eee;
    border-radius: 8px;
}
table.docs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
table.docs-table th,
table.docs-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
table.docs-table th {
    background: #f9f9f9;
    font-weight: 500;
}

.upload-section {
    background-color: #f9f9f9;
    padding: 20px;
}
/* ==== АКЦИИ ==== */
/* ==== АКЦИИ: 2 на ПК, 1 на моб === */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 767px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}
.promo-card img {
    width: 100%;
    height: 180px;
}
.promo-body {
    padding: 16px;
}
.promo-text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
    max-height: 4.8em;
    overflow: hidden;
}
.promo-spoiler-btn {
    color: #407e82;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    font-weight: 500;
    padding: 0;
    font-size: 14px;
}


`


/* ==== КНОПКИ ==== */
.btn {
    padding: 8px 14px;
    background: #407e82;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    margin: 10px 0px 0px 0px;
}
.btn:hover {
    background: #366b6e;
}
.upload-section {
    margin: 20px 0;
}
.akcii-img {
    object-fit: cover;
}
/* ==== МОБИЛЬНЫЙ РАЗМЕР ==== */
@media (max-width: 767px) {
    .container { margin: 80px 20px 20px 20px; }
    .header {
        font-size: 20px;
        padding: 15px;
    }
    .tab {
        padding: 12px;
    }
    .tab i {
        font-size: 16px;
    }
    .tab span.text {
        display: none !important;
    }
    .tab-content {
        padding: 20px 15px;
    }
    .akcii-img {
        object-fit: contain;
    }
    
    .a-doc {
    font-size: 15px
}
}

/* История событий */ 

.timeline {
    position: relative;
    padding-left: 60px;
    margin-top: 20px;
    background: #fff; /* Белый фон */
    border-radius: 12px;
    box-sizing: border-box;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 30px;
    width: 4px;
    background: linear-gradient(to bottom, #41bd41 45%, #d1d1d1 100%);
    opacity: 0.15;
    z-index: 0;
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    min-height: 42px;
    margin-bottom: 38px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: 15px;
    top: 24px;
    width: 28px;
    height: 28px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(40,167,69,0.14);
    opacity: 0.9;
    z-index: 1;
    transition: transform 0.25s, opacity 0.25s;
    border: 4px solid #fff;
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    opacity: 0.65;
}
.timeline-content {
    padding-left: 65px;
    min-height: 18px;
    position: relative;
    top: 2px;
}
.timeline-date {
    font-size: 14px;
    color: #888;
    text-align: left;
    margin-bottom: 2px;
    margin-left: 1px;
    font-weight: 500;
}
.timeline-content strong {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}
@media (max-width: 600px) {
    .timeline { padding-left: 20px; }
    .timeline-dot { left: 3px; width: 18px; height: 18px; }
    .timeline-content { padding-left: 36px; }
}
/* Profile */ 


.language-switcher {
    display: flex;
    gap: 12px;
	justify-content: center;
}

.language-switcher button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: white;
    border: 2px solid #e1e5eb;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
     
    cursor: pointer; /* Для кнопок */
}

.language-switcher button:hover {
    text-decoration: auto !important;
    background-color: #0d7886;
    border-color: #0d7886;
     
}

.language-switcher button i {
   
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Специфические цвета для иконок (аналогично оригиналу) */
.ru-btn i {
    color: #ff0000; /* Красный для RU (или любой другой) */
}

.en-btn i {
    color: #0000ff; /* Синий для EN (или любой другой) */
}

/* Активное состояние (выделение) */
.language-switcher button.active {
    background-color: #0d7886; /* Темно-синий фон для активной */
    color: white;
    border-color: #0d7886;
}

.language-switcher button.active i {
    color: white; /* Иконка белая в активном состоянии */
}




 

.user-id-block {    margin-left:18px;    background:#0d7886;    color:#FFF;    padding:7px 14px;    border-radius:7px;    font-weight:600;    letter-spacing:1px;    font-size:1.05em;    display:inline-block;}
.copy-tooltip {
    position: absolute;
    background: #407e82;
    color: #fff;
    padding: 6px 18px;
    border-radius: 6px;
 
    font-size: 15px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.97;
    transition: opacity .2s;
}


 .support-buttons {
      display: flex;
      
      gap: 12px;
    }
    .support-btn {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      background-color: white;
      border: 2px solid #e1e5eb;
      border-radius: 8px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: all 0.2s ease;
    }
    .support-btn:hover {text-decoration: auto!important;
      background-color: #f0f4ff;
      border-color:#0d7886;
      transform: translateY(-1px);
      
    }
    .support-btn i {
      margin-right: 12px;
      font-size: 20px;
      width: 24px;
      text-align: center;
    }
    .telegram-btn i {
      color: #0088cc;
    }
    .email-btn i {
      color: #ea4335;
    }

.verify-status {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.05em;
  margin-left: 16px;
  background: #e9e9e9;
  color: #555;
  border: none;
}

.verified {
  background: #5ac17f;
  color: #fff;
  
}

.not-verified {
  background: #eb5151;
  color: #fff;
   
}


 

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.profile-block {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 32px;
}
.profile-block h2, .profile-block h3 {
    color: #333;
    margin-top: 0;
}

/* Базовый стиль для label'ов в форме (для случаев вне .form-row, если они будут) */
.profile-form label {
    display: block;
    color: #555;
}

/* Новые стили для горизонтальных строк */
.form-row {
    display: flex;
    gap: 1rem; /* Расстояние между label'ами в строке */
    margin-bottom: 1rem; /* Расстояние между строками */
}

.form-row label {
    flex: 1; /* Равномерно распределяем ширину label'ов (по 33% для 3 элементов, по 50% для 2) */
    display: flex;
    flex-direction: column; /* Текст label и input вертикально внутри label */
    margin-bottom: 0; /* Убираем margin-bottom из базового стиля для .form-row */
}

.form-row input[type="text"],
.form-row input[type="password"] {
    margin-top: 0.25rem; /* Небольшой отступ от текста label */
}

.profile-form input[type="text"],
.profile-form input[type="password"] {
    width: 100%;
    padding: 7px 10px;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    border: 1px solid #e0e0e0;
    margin-top: 3px; /* Базовый margin-top, переопределяется в .form-row если нужно */
}

/* Новые стили для password-wrapper и toggle */
.password-wrapper {
    position: relative; /* Для абсолютного позиционирования иконки */
    width: 100%; /* Чтобы wrapper занимал всю ширину label */
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 16px; /* Размер иконки */
    user-select: none; /* Запрещаем выделение иконки */
    z-index: 1; /* Чтобы иконка была поверх input */
    transition: color 0.2s ease; /* Плавный hover */
}

.toggle-password:hover {
    color: #407e82; /* Цвет при hover, как у кнопки */
}

.toggle-password.visible {
    color: #407e82; /* Цвет когда пароль видим (иконка "скрыть") */
}

/* Padding для input'ов пароля, чтобы иконка не перекрывала текст */
.profile-form input[type="password"],
.profile-form input[type="text"] { /* Применяем к обоим, но type="text" для пароля тоже */
    padding-right: 40px; /* Место под иконку (10px padding + ширина иконки ~20px + отступ) */
}

.profile-form input[disabled] {
    color: #888;
    background: #eee;
    padding-right: 10px; /* Disabled input'ы без иконки, возвращаем базовый padding */
}
.btn {
    background: #407e82;
    color: white;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    display: inline-block;
    cursor: pointer;
    margin-top: 5px;
}


.btn:hover {
	cursor:pointer;
	background:#407e82;
	border:none;
}
.profile-auth {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 24px;
     
}
.profile-auth h4 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 1.08em;
}
.profile-auth ul { margin: 0 0 0 12px; padding: 0; }
.profile-auth li { margin-bottom: 6px; color: #444; }


 table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
	background: transparent!important;
}

.wp-2fa-configuration-form .button, #btn-save  {
    background: #0d7886;
    color: #fff;
    padding: 10px;
    border-radius: 5px; 
}
.wp-2fa-configuration-form .button:hover, #btn-save:hover{
	 background: #FFF!important;
    color: #0d7886!important;
	border: 1px solid #0d7886;
}

/* Адаптивность: на мобильных устройствах строки становятся вертикальными */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0.5rem; /* Меньший gap на мобильных */
    }
    
    .form-row label {
        flex: none; /* Label'ы занимают полную ширину, без flex */
        margin-bottom: 16px; /* Возвращаем базовый margin для вертикальной компоновки */
    }
    
    .form-row input[type="text"],
    .form-row input[type="password"] {
        margin-top: 3px; /* Возвращаем базовый margin-top */
    }
    
    /* На мобильных иконка остается, но можно уменьшить размер если нужно */
    .toggle-password {
        font-size: 14px;
        right: 8px;
    }
    
    .profile-form input[type="password"] {
        padding-right: 35px; /* Чуть меньше на мобильных */
    }
	
	
	.block-verif {
		display: grid;
		gap: 5px;
	}
}
 
/* меню */ 
.custom-header {
			background: url('https://login.iposharks.pro/wp-content/uploads/2025/11/header-bg.webp') center/cover no-repeat;
			padding: 1px;
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			z-index: 999;
			box-sizing: border-box;
		}
		.custom-header::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: rgba(0, 0, 0, 0.55);
			z-index: -1;
		}
		.header-container {
			max-width: 1250px;
			margin: 0 auto;
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 0 20px;
			position: relative;
		}
		.header-logo img {
			height: 50px;
			width: auto;
		}
		.desktop-menu {
			display: flex;
			align-items: center;
			gap: 30px;
		}
		.nav-link {
			color: white;
			text-decoration: none;
			font-weight: 600;
			font-size: 16px;
			 text-transform: uppercase;
		}
		.nav-link:hover {
			color: #a8d8ea;
		}
		.profile-toggle {
			background: rgba(255,255,255,0.15);
			backdrop-filter: blur(10px);
			border: 1px solid rgba(255,255,255,0.2);
			padding: 6px 12px;
			border-radius: 20px;
			cursor: pointer;
			display: flex;
			align-items: center;
			gap: 8px;
		}
		.profile-toggle img {
			width: 32px;
			height: 32px;
			border-radius: 50%;
		}
		.arrow {
			font-size: 0.7em;
			color: white;
			transition: transform 0.2s;
		}
		.profile-toggle:hover .arrow {
			transform: rotate(180deg);
		}
		.dropdown-menu {
			position: absolute;
			right: 0;
			top: 100%;
			margin-top: 8px;
			width: 260px;
			background: white;
			border-radius: 12px;
			box-shadow: 0 10px 30px rgba(0,0,0,0.15);
			overflow: hidden;
			display: none;
			z-index: 1000;
		}
		.verified-user {
			display: flex;
			align-items: center;
			gap: 12px;
			padding: 12px 16px;
			background: #f8f9fa;
			border-bottom: 1px solid #eee;
			font-weight: 600;
		}
		.verified-user img {
			width: 40px;
			height: 40px;
			border-radius: 50%;
		}
		.dropdown-menu a {
			display: flex;
			align-items: center;
			gap: 10px;
			padding: 12px 16px;
			text-decoration: none;
			color: #333;
			font-size: 14px;
			border-bottom: 1px solid #f1f1f1;
		}
		.dropdown-menu a:hover {
			background: #f8f9fa;
		}
		.dropdown-menu a i {
			width: 18px;
			text-align: center;
			color: #0d7886;
		}
		.verify-btn {
			background: #e7f3f5;
			color: #0d7886 !important;
			font-weight: 600;
			border-radius: 6px;
			margin: 8px 5px;
			padding: 10px !important;
			text-align: center;
		}
		.mobile-toggle {
			display: none;
			background: transparent;
			border: none;
			color: white!important;
			font-size: 20px;
			cursor: pointer;
			border: 1px solid #fff!important
			
		}
		.mobile-sidebar {
			display:none;
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100vh;
			background: white;
			z-index: 9999;
			transform: translateX(-100%);
			transition: transform 0.3s ease;
			overflow-y: auto;
		}
		.mobile-sidebar.open {
			transform: translateX(0);
			display:block;
		}
		.mobile-header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 0px 20px;
			background: #0d7886;
			color: white;
		}
 
		
		.mobile-header  img{
		max-width: 187px
		}
			
			
		.close-mobile {
			background: transparent;
			border: none;
			color: white!important;
			font-size: 18px;
			cursor: pointer;
		}
		.mobile-content {
			padding: 20px;
		}
		.mobile-user {
			text-align: center;
			padding: 20px 0;
		}
		.mobile-user img {
			width: 60px;
			height: 60px;
			border-radius: 50%;
			margin-bottom: 10px;
		}
		.mobile-user strong {
			display: block;
			font-size: 16px;
			color: #333;
		}
		.status {
			color: #e74c3c;
			font-size: 12px;
			margin-top: 5px;
		}
		.mobile-verify-block {
			background: #f8f9fa;
			padding: 15px;
			border-radius: 8px;
			margin-bottom: 20px;
		}
		.mobile-verify-block h4 {
			margin: 0 0 8px 0;
			font-size: 14px;
			color: #0d7886;
		}
		.mobile-verify-block p {
			margin: 0 0 12px 0;
			font-size: 13px;
			color: #555;
		}
		.mobile-links a {
			display: flex;
			align-items: center;
			gap: 10px;
			padding: 12px 16px;
			text-decoration: none;
			color: #333;
			border-bottom: 1px solid #f1f1f1;
		}
		.mobile-links a i {
			width: 18px;
			color: #0d7886;
		}
		@media (max-width: 768px) {
			.desktop-menu { display: none; }
			.mobile-toggle { display: block; }
		}
		#language-switch {
			cursor: pointer;
		}
		
		
		
		/* Template stock */ 
		.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.promo-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e6e6e6;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.18s;
}

.promo-card:hover {
     text-decoration: none!important;
	 cursor: pointer;
}

.promo-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* template single stock */ 
 .profile-block { background: #f9f9f9; border-radius: 9px; padding: 27px 26px; box-shadow: 0 4px 12px rgba(60,90,130,0.11); text-align: center; }
    .profile-block h4 { margin: 0 0 8px; color: #2474ab; font-size: 22px; }
    .support-buttons { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
    .support-btn { display: flex; align-items: center; padding: 12px 18px; background: white; border: 2px solid #e1e5eb; border-radius: 8px; text-decoration: none; color: #333; font-weight: 500; transition: all 0.18s; font-size: 16px; }
    .support-btn:hover { background-color: #f0f4ff; border-color: #0d7886; transform: translateY(-1px); }
    .support-btn i { margin-right: 10px; font-size: 20px; width: 24px; text-align: center; }
    .telegram-btn i { color: #0088cc; }
    .email-btn i { color: #ea4335; }
	
	
	/* single deal */
	
	
h1, h2, h3, h4, h5, h6 { color: #333; }
.deal-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.deal-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 8px; }
.deal-title { font-size: 24px; color: #333; }
.section { background: white; padding: 20px; border-radius: 8px; margin-bottom: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.section-title { font-size: 20px; margin-bottom: 15px; color: #333; }
table.summary { width: 100%; border-collapse: collapse; background: #f9f9f9; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
table.summary th,
table.summary td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eee; }
table.summary th { background: #f1f1f1; font-weight: 500; }

.timeline {
    position: relative;
    padding-left: 60px;
    margin-top: 20px;
    background: #fff; /* Белый фон */
    border-radius: 12px;
    box-sizing: border-box;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 30px;
    width: 4px;
    background: linear-gradient(to bottom, #41bd41 45%, #d1d1d1 100%);
    opacity: 0.15;
    z-index: 0;
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    min-height: 42px;
    margin-bottom: 38px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: 15px;
    top: 24px;
    width: 28px;
    height: 28px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(40,167,69,0.14);
    opacity: 0.9;
    z-index: 1;
    transition: transform 0.25s, opacity 0.25s;
    border: 4px solid #fff;
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    opacity: 0.65;
}
.timeline-content {
    padding-left: 65px;
    min-height: 18px;
    position: relative;
    top: 2px;
}
.timeline-date {
    font-size: 14px;
    color: #888;
    text-align: left;
    margin-bottom: 2px;
    margin-left: 1px;
    font-weight: 500;
}
.timeline-content strong {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}
@media (max-width: 600px) {
    .timeline { padding-left: 20px; }
    .timeline-dot { left: 3px; width: 18px; height: 18px; }
    .timeline-content { padding-left: 36px; }
}


.docs-list { list-style: none; padding: 0; }
.docs-list li { padding: 10px; background: #f9f9f9; margin: 5px 0; border-radius: 6px; display: flex; align-items: center; gap: 10px; }
.docs-list a { color: #407e82; text-decoration: none; }
.docs-list i { color: #407e82; }
.positive { color: green } .negative { color:tomato; }


/* Document */ 

    .docs-list {
        padding-top: 20px;
    }

    .doc-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px;
        font-size: 20px;
        margin: 5px 0;
        border-radius: 6px;
    }

    .doc-item a {
        color: #407e82;
        text-decoration: none;
        flex: 1;
    }

    .doc-company {
        font-size: 12px;
        color: #888;
    }
	
	
	/* Deal */ 
	.portfolio-stats {
    display:grid; grid-template-columns: 1fr 1fr 1fr 1fr; 
    gap: 30px;
}
@media (max-width: 900px) {
        .portfolio-stats {  grid-template-columns: 1fr 1fr; }
		.pstats-label { word-spacing: 100vw}
}
table tbody>tr:nth-child(odd)>th { width: 250px;}
.desc-card { font-size: 13px; color:#a7aaad;     margin-block-end: 0rem;}
 
.header-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;}
.deal-status { font-weight: 700; border-radius: 8px; padding: 8px 16px; }
.deal-card-link { display:block; }
.deal-card { border: 1px solid #e6e6e6;display: grid; grid-template-columns: 50px 1fr 1fr 1fr 145px; gap: 20px; align-items: center;    overflow: auto;}
.deals-year-header { margin-top: 40px;}
.deal-card:hover { cursor: pointer;}
.spoiler-block { display:none;}
@media (max-width: 800px) {

    .deal-card { grid-template-columns: 1fr 1fr;}
	
	
}



/* single stock */ 
    .profile-block { background: #f9f9f9; border-radius: 9px; padding: 27px 26px; box-shadow: 0 4px 12px rgba(60,90,130,0.11); text-align: center; }
    .profile-block h4 { margin: 0 0 8px; color: #2474ab; font-size: 22px; }
    .support-buttons { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
    .support-btn { display: flex; align-items: center; padding: 12px 18px; background: white; border: 2px solid #e1e5eb; border-radius: 8px; text-decoration: none; color: #333; font-weight: 500; transition: all 0.18s; font-size: 16px; }
    .support-btn:hover { background-color: #0d7886; border-color: #0d7886; transform: translateY(-1px); }
    .support-btn i { margin-right: 10px; font-size: 20px; width: 24px; text-align: center; }
    .telegram-btn i { color: #0088cc; }
    .email-btn i { color: #ea4335; }
	
	
	/* single deal */ 
	
	
.deal-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.deal-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 8px; }
.deal-title { font-size: 24px; color: #333; }
.section { background: white; padding: 20px; border-radius: 8px; margin-bottom: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.section-title { font-size: 20px; margin-bottom: 15px; color: #333; }
table.summary { width: 100%; border-collapse: collapse; background: #f9f9f9; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
table.summary th, table.summary td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eee; }
table.summary th { background: #f1f1f1; font-weight: 500; }

.timeline {
    position: relative;
    padding-left: 60px;
    margin-top: 20px;
    background: #fff;
    border-radius: 12px;
    box-sizing: border-box;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 30px;
    width: 4px;
    background: linear-gradient(to bottom, #41bd41 45%, #d1d1d1 100%);
    opacity: 0.15;
    z-index: 0;
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    min-height: 42px;
    margin-bottom: 38px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: 15px;
    top: 24px;
    width: 28px;
    height: 28px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(40,167,69,0.14);
    opacity: 0.9;
    z-index: 1;
    transition: transform 0.25s, opacity 0.25s;
    border: 4px solid #fff;
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    opacity: 0.65;
}
.timeline-content {
    padding-left: 65px;
    min-height: 18px;
    position: relative;
    top: 2px;
}
.timeline-date {
    font-size: 14px;
    color: #888;
    text-align: left;
    margin-bottom: 2px;
    margin-left: 1px;
    font-weight: 500;
}
.timeline-content strong {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.docs-list { list-style: none; padding: 0; }
.docs-list li {
    padding: 10px;
    background: #f9f9f9;
    margin: 5px 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.docs-list a { color: #407e82; text-decoration: none; }
.docs-list i { color: #407e82; }
.positive { color: green; }
.negative { color: tomato; }

@media (max-width: 600px) {
    .timeline { padding-left: 20px; }
    .timeline-dot { left: 3px; width: 18px; height: 18px; }
    .timeline-content { padding-left: 36px; }
}

/* referal */ 
.ref-deal-status { display: flex;  justify-content: flex-end; }
 
 
.desc-card { font-size: 13px; color:#a7aaad; margin-block-end: 0rem; }
 
.header-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.deal-status { font-weight: 700; border-radius: 8px; padding: 8px 16px; }
.deal-card-link { display:block; }
.deal-card-ref {    border: 1px solid #c3c4c7; background:#fff;border-radius:5px;margin:13px 0;padding:10px 15px;display:grid;grid-template-columns:1fr 1fr 1fr;align-items:center;gap:20px; }

.deal-card-ref-deals {    border: 1px solid #c3c4c7; background:#fff;border-radius:5px;margin:13px 0;padding:10px 15px;display:grid;grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr;align-items:center;gap:20px; }

.deals-year-header { margin-top: 40px; }
.deal-card:hover { cursor: pointer; }
.spoiler-block { display:none; }
@media (max-width: 800px) {
    .deal-card-ref-deals { grid-template-columns: 1fr 1fr;      align-items: start;}
     
		.deal-card-ref {
		    grid-template-columns: 1fr 1fr;
	}
	.header-flex {
	flex-direction: column;}
	.ref-deal-status { display: flex;  justify-content: start; }
}


/* Referral Policy*/ 
.aref {
	text-decoration: underline;
	color: #000;
	font-size: 16px
}

.aref:hover {
	color: #0d7886;
}

.desc-card-policy {
margin-bottom:35px; color: #000; position: relative;padding: 20px; border: 1px solid #eee; width: 40%;}


.btn-ref-policy { margin-top: 15px }


/* Deals */ 

.portfolio-stats-deals  {
	background: #F9f9f9; 
	padding: 25px; 
	border-radius: 7px;
	margin-bottom:35px; 
	display:grid; 
	gap:20px; 
	flex-wrap: wrap;
	grid-template-columns: 1fr 1fr;    
	overflow: auto;
}
.deal-card-deals  {
background:#fff;
border-radius:5px;
margin:13px 0;
padding:10px 15px 10px 15px;
display:grid;
grid-template-columns:50px 1fr 1fr 1fr 145px;
align-items:center;
gap:20px;
border: 1px solid #eee;
}

@media (max-width: 800px) { 
.deal-card-deals {
		    grid-template-columns: 1fr 1fr;
	}
}



.desc-card-ref {
	margin-bottom: 35px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
}

.profile-block h2, .profile-block h3, .profile-block h4, #your-profile > h2 {
	color: #000;
	    padding-bottom: 15px;
    text-align: center;
    font-size: 25px;
}
#your-profile > p {
text-align: center;
}



#ktrshield-otp-message {
    padding: 5px 25px 5px 10px;
}


.dropdown-user{
	display:flex;
	align-items:center;
	gap:10px;
	    padding: 15px 0 4px 16px;
}

.dropdown-user img.avatar{
	width:17px;
	height:17px;
	border-radius:50%;
	display:block;
}

.dropdown-user__name{
	font-size:14px;
	line-height:1;
	white-space:nowrap;
}

.dropdown-divider{
	height:1px;
	background:rgba(255,255,255,0.10);
	margin:0;
}



.desc-card-ref__list{
  margin: 0;
  padding-left: 1.2em; /* место под точки */
  list-style-type: disc; /* точки (по умолчанию) */
}

.desc-card-ref__list li{
  margin: 0 0 10px; /* отступ между пунктами */
}

.desc-card-ref__list li:last-child{
  margin-bottom: 0;
}
.desc-card-ref__list li::marker{
  color: #0d7886;
}



 