@charset "utf-8";

/* top */

.v2_table_name {
	padding: 54px 0 20px 20px;
	font-size: 19px;
    font-weight: 600;
    width: max-content;
}

.v2_table {
	padding: 0 20px 20px; 
	border-radius:12px; 
	width: inherit;
    box-sizing: border-box;
}


.chat_off * {
	.v2_table {
		max-width: 100vw; 
	}
}
.chat_on * {
	.v2_table {
		max-width: calc(100vw - 335px);
	}
}

.v2_table_nav {
    position: sticky;
    top: 57px;
    z-index: 1;
	padding-top: 20px; 
}

.v2_table_function {
	display:flex; 
	margin:0 -10px 25px;
}

.theme_Light * {
	.v2_table_name {
		color: #94a1ad;
	}
	.v2_table, .v2_table_nav {
		background: #fff;
	}
	.v2_table_search_field {
		color: #000;
	}
}

.theme_Dark * {
	.v2_table_name {
		color: #c9ceddd9;
	}
	.v2_table, .v2_table_nav {
		background: #1f3749;
	}
	.v2_table_search_field {
		color: #fff;
	}
}

/* filter */

.table_options {
	padding: 7px 14px;
	border-radius:5px;
	cursor: pointer;
	position:relative;
	margin:0 10px;
    min-width: max-content;
	z-index:2;
	user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; 
}

.table_options_display {
	display:flex; 
	align-items: center;
	padding: 7px 14px;
    margin: -7px -14px;
}

.table_options_name {
	margin: 0 15px;
	width: max-content;
}

.table_options_body {
	display:none;
	position: absolute;
    right: -1px;
    top: -1px;
    border-radius: 5px;
    padding: 54px 0 0;
    border-top: none;
	z-index:1;
	min-width:min-content;
	width: -webkit-fill-available;
    margin-left: -1px;
}

.table_options_items {
	padding: 0 6px 0 16px;
	border-radius: 0 0 5px 5px;
	
}

.table_options_item {
	padding:6px 9px;
    border-radius: 4px;
	transition:0.1s;
	width: -webkit-fill-available;
	display: flex; 
	justify-content: space-between; 
	min-width: max-content;
}

.table_options_side {
    transition: transform 0.3s ease-in-out;
	height: 16px; 
	margin: 1px -4px -1px
}

.table_options_item > div:nth-child(2) {
    margin-left: 25px;
}

.table_options_search_body {
	padding:15px 15px 0;
	position: relative;
	height: 31px; 
}

.table_options_search {
	display: flex;
	margin: 0;
    border-radius: 5px;
	padding:0;
	overflow:hidden;
	position: absolute; 
	left:15px; 
	right:15px;
}

.table_options_search_field {
	padding:  6px 9px;
	width: calc(100% - 40px);
	outline: none;
	border: none;
	font-size: 14px;
	font-family: Segoe, Segoe UI, DejaVu Sans, Trebuchet MS, Verdana, sans-serif;
	letter-spacing: 0.5px;
	background: inherit;
}

.table_options_search_hide {
	opacity: 0;
    width: 20px;
    padding: 2px 5px 0px 0;
	cursor: pointer;
}

.table_options_no_search {
	 padding: 5px 10px; 
	 display:none; 
	 width:max-content;
}

.table_options_scroll {
	overflow-y: scroll; 
	overflow-x: hidden; 
	max-height: 341px; 
	margin-right: 6px;
}

.table_options_data {
	padding: 15px 0;
	border-radius: 0 0 5px 5px;
}

.v2_table_sandwich_function {
	padding: 8px 22px;
	width: 19px;
    height: 19px;
    display: block;
    cursor: pointer;
	transition:0.1s;
}

.theme_Light * {
	.table_options_body {
		box-shadow: rgba(221, 221, 221, 0.75) 0px 0px 6px 3px;
	}
	.table_options_search_hide:hover {
		color: #E88100;
	}
	.table_options, 
	.table_options_search_body,
	.table_options_data {
		background: #fff; 
	}
	.table_options, .table_options_body {
		border: 1px #dbdcde solid; 
	}
	.table_options_body {
		border-top: none;
	}
	.table_options_item:hover, .table_options_search {
		background: #f0f3f6;
	}
	.table_options {
		border-bottom: 1px #dbdcde solid; 
	}
	.table_options_line {
		background: #e6eaef;
		height:1px;
	}
	.v2_table_sandwich_function {
		color: #94a1ad;
	}
	.v2_table_sandwich_function:hover {
		color: #E88100;
	}
}

.theme_Dark * {
	.table_options_body {
		box-shadow: #1616168f 0px 0px 6px 3px;
	}
	.table_options_search_hide:hover {
		color: #E88100;
	}
	.table_options, 
	.table_options_search_body,
	.table_options_data {
		background: #1f3749; 
	}
	.table_options, .table_options_body {
		border: 1px #465d73 solid; 
	}
	.table_options_body {
		border-top: none;
	}
	.table_options_item:hover, .table_options_search {
		background: #294258;
	}
	.table_options_line {
		background: #465d73;
		height:1px;
	}
	.v2_table_sandwich_function {
		color: #94a1ad;
	}
	.v2_table_sandwich_function:hover {
		color: #E88100;
	}
}

/* search */

.v2_table_search_body {
	display:flex;
    flex: 1;
    margin: 0 10px;
    padding: 7px 12px;
    border-radius: 5px;
	width: 70px;
	background: inherit;
}

.v2_table_search_field {
	width: -webkit-fill-available;
    outline: none;
    border: none;
    font-size: 14px;
    font-family: Segoe, Segoe UI, DejaVu Sans, Trebuchet MS, Verdana, sans-serif;
    letter-spacing: 0.5px;
    background: none;
	padding:0;
}

.v2_table_search_hide {
	cursor: pointer;
    padding: 8px 9px;
    margin: -7px -12px -10px;
    width: 20px;
    display:none;
}

.theme_Light * {
	.v2_table_search_body {
		border: 1px #dbdcde solid;
	}
}

.theme_Dark * {
	.v2_table_search_body {
		border: 1px #465d73 solid;
	}
}

/* line */

.table_low_height_line {
	position:relative;
	width: min-content;
    display: flex;
    padding-bottom: 5px;
    font-size: 11px;
}

.table_low_height_dot {
	height: 4px;
    width: 4px;
    bottom: -3px;
    position: absolute;
    border-radius: 100%;
}

.table_low_height_line {
	border-bottom: 2px #e6eaef solid;
}

.table_low_height_dot {
	background: #ccc;
}

/* button */

.table_red_button, .table_green_button, .table_grey_button {
	padding: 8px 12px;
    letter-spacing: 1px;
    border-radius: 5px;
    width: fit-content;
    cursor: pointer;
    transition: 0.2s;
	margin:0 10px;
}

.theme_Light * {
	.table_red_button {
		color: #df0000;
		background: #f8edf0;
	}
	.table_red_button:hover {
		color: #fff;
		background: #ce5757;
	}
	.table_green_button {
		color: #1fba8b;
		background: #e3f2f0;
	}
	.table_green_button:hover {
		color: #fff;
		background: #2a9b7e;
	}
	.table_grey_button {
		color: #000;
		background: #eef0f5;
	}
	.table_grey_button:hover {
		color: #E88100;
	}
}

.theme_Dark * {
	.table_red_button {
		color: #e57f7f;
		background: #573c48;
	}
	.table_red_button:hover {
		color: #fff;
		background: #ce5757;
	}
	.table_green_button {
		color: #1fba8b;
		background: #144b4a;
	}
	.table_green_button:hover {
		color: #fff;
		background: #2a9b7e;
	}
	.table_grey_button {
		color: #dfe2ecd9;
        background: #294258;
	}
	.table_grey_button:hover {
		color: #febc58;
	}
}

/* adaptive */

#table_adaptive {
	position: relative;
	display:none
}

.table_adaptive_body {
	position:absolute; 
	right:0; 
	z-index:6; 
	direction: rtl;
}

.table_adaptive_body_2 {
	width: max-content;
	position: fixed;
	direction: ltr;
	display: flex;
	top:57px;
}

.table_adaptive_scroll {
	padding: 0 16px 20px 20px;
	overflow-y: scroll;
    overflow-x: hidden;
	height: calc(100vh - 118px);
}

.table_adaptive_close {
	padding: 10px;
	border-radius: 100%;
	margin: 25px auto;
	display: block;
	cursor: pointer;
	width: 21px;
}

.table_adaptive_botton_items {
	cursor:pointer; 
	margin-bottom: 15px; 
	border-radius:5px;
}

.table_adaptive_botton_item {
	padding: 8px 15px;
	transition:0.1s;
}

.table_adaptive_item {
	padding: 10px 15px; 
	display: flex; 
	justify-content: space-between;
	align-items: center;
}

.table_adaptive_item > div:last-child {
    text-align:right;
	margin-left:25px
}

.table_line {
	height:1px;
}

.theme_Light * {
	.table_adaptive_scroll {
		border-left: 3px #eef0f5 solid;
		background: #fff;
	}
	.table_adaptive_close {
		background: #e6eaef;
	}
	.table_adaptive_close:hover {
		color: #E88100;
	}
	.table_adaptive_botton_items {
		background: #eef0f5; 
	}
	.table_adaptive_botton_item:hover {
		color: #E88100;
	}
	.table_adaptive_botton_item_border {
		border-top: 2px #fff solid;
	}
	.table_line {
		background: #e6eaef;
	}
}

.theme_Dark * {
	.table_adaptive_scroll {
		border-left: 3px #152836 solid;
        background: #1f3749;
	}
	.table_adaptive_close {
		background: #30485d;
	}
	.table_adaptive_close:hover {
		color: #febc58;
	}
	.table_adaptive_botton_items {
		background: #294258; 
	}
	.table_adaptive_botton_item:hover {
		color: #febc58;
	}
	.table_adaptive_botton_item_border {
		border-top: 2px #fff solid;
	}
	.table_line {
		background: #465d73;
	}
}

/* sotr */

.v2_table_sotr {
	overflow: scroll; 
	scrollbar-width: none; 
	-ms-overflow-style: none; 
	z-index:0;
}

.table_field {
    position: absolute;
    top: 0;
    padding: 0 0 0 12px;
    margin: 0 12px 0 -12px;
	max-width: -webkit-fill-available;
	cursor:pointer;
	top: 50%; 
	transform: translateY(-50%);
}
.table_field_data {
	display:flex;
	align-items: center;
	height: 33px;
}
.table_field_container {
	display:flex; 
	overflow: auto;
	z-index:1
}
.table_field_sort {
	display:flex; 
	overflow: auto;
	cursor:pointer;
}
.table_field_name {
	overflow: hidden;
	margin-right:6px;
	user-select: none;
    -webkit-user-select: none; /* Для Safari */
    -moz-user-select: none;    /* Для Firefox */
    -ms-user-select: none;
}
.table_field_sorts {
	position:relative; 
	width: 8px; 
	height:18px; 
	margin-right:6px
}

.table_info {
	min-height: 24px;
	min-width: 24px;
	margin-right: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	font-weight: 500;
	font-size: 15px;
	display:none;
	transition:0.1s;
	margin-left: auto;
	user-select: none;
    -webkit-user-select: none; /* Для Safari */
    -moz-user-select: none;    /* Для Firefox */
    -ms-user-select: none;  
}

.table_field:hover .table_info {
	display: flex;
}

.table_list_option {
	padding: 4px 0;
	cursor:pointer;
}

#table_popup {
	display:none; 
	position: absolute; 
	max-width: 200px; 
	z-index: 6; 
	padding: 15px 20px 15px;
    border-radius: 5px;
	margin: -7px 0 0 -8px;
}

.table_popup_content {
	display:none; 
	margin: 11px -20px 0; 
	padding: 12px 20px 0px;
}

.theme_Light * {
	#table_popup {
		background: #fff; 
		box-shadow: rgba(221, 221, 221, 0.75) 0px 0px 6px 3px;
	}
	.table_popup_content {
		border-top:1px #edf0f4 solid; 
	}
}

.theme_Dark * {
	#table_popup {
		background: #1f3749; 
		box-shadow: #1616168f 0px 0px 6px 3px;
	}
	.table_popup_content {
		border-top:1px #2f4559 solid; 
	}
}

/* records */

.v2_table_record_top {
	display:flex; 
	align-items: center;
	cursor:pointer;
	transition:0.1s;
	min-width: fit-content;
	height:43px;
}

.v2_table_records {
	overflow-x: scroll; 
	scrollbar-width: none; 
	-ms-overflow-style: none;
	 z-index:0; 
	 position:relative
}

.table_record {
	display:flex; 
	align-items: center;
	cursor:pointer;
	transition:0.1s;
	min-width: fit-content;
	height: 44px;
}

.table_record_first_item, .table_record_first_item_border {
	z-index: 1;
	transition:0.1s;
	border-radius:8px 0 0 8px;
	position: sticky; 
	left:0;
	height: inherit;
    display: flex;
	padding: 0 0 0 12px;
}

.table_record_last_item, .table_record_last_item_border {
	padding:0 12px; 
	position: sticky; 
	right:0;
	color:#94a1ad;
	transition:0.1s;
	z-index: 1;
	transition:0.1s;
	border-radius:0 8px 8px 0;
	height: inherit;
	width: 19px;
    cursor: pointer;
}

.record_200 {
	flex: 200; 
	min-width:200px; 
	overflow:hidden;
	height: inherit;
	position:sticky;
}

.record_160 {
	flex: 160; 
	min-width:160px; 
	overflow:hidden;
	height: inherit;
	position:sticky;
	left:0;
}

.record_125 {
	flex: 125; 
	min-width:125px;
	overflow:hidden;
	height: inherit;
	position:sticky;
}


.table_record_item {
	width: max-content; 
	top: 50%; 
	transform: translateY(-50%); 
	position: absolute;
}



.table_gradient, .table_gradient_hover {
	position: absolute;
    right: 0;
    width: 25px;
    height: 100%;
    transition:0.1s;
}
.table_gradient_hover, .table_record:hover .table_gradient {
	opacity: 0;
}
.table_record:hover .table_gradient_hover {
	opacity: 1;
}


.subtable {
	margin: 20px 0;
    min-width: min-content;
}

.theme_Light * {
	
	.table_record {
		border-top: 1px #e6eaefb5 solid; 
	}
	
	.table_record:hover {
		background:#eef0f5;
		border-top: 1px #fff solid; 
		border-radius:8px;
	}
	
	.table_record:hover + .table_record {
		border-top: 1px #fff solid; 
	}
	
	.table_record_first_item, .table_record_first_item_border {
		background: #fff;
	}
	.table_record_first_item {
		border-right: 3px #ffffff00 solid;
	}
	.table_record_first_item_border {
		border-right: 3px #eef0f5 solid;
	}
	.table_record:hover > .table_record_first_item_border {
		background: #eef0f5;
		border-right: 3px #d5d5d6 solid;
	}
	.table_record:hover > .table_record_first_item {
		background: #eef0f5;
	}
	
	.table_record_last_item, .table_record_last_item_border {
		background: #fff;
	}
	.table_record_last_item {
		border-left: 3px #ffffff00 solid;
	}
	.table_record_last_item_border {
		border-left: 3px #eef0f5 solid;
	}
	.table_record:hover > .table_record_last_item_border {
		background: #eef0f5;
		border-left: 3px #d5d5d6 solid;
	}
	.table_record:hover > .table_record_last_item {
		background: #eef0f5;
	}
	.table_record_last_item:hover, .table_record_last_item_border:hover {
		color:#E88100;
	}
	.table_gradient {
		background: linear-gradient(90deg, transparent, #ffffff);
	}
	.table_gradient_hover {
		background: linear-gradient(90deg, transparent, #eef0f5);
	}

	.subtable {
		border-top: 6px #eef0f5 solid;
	}
}

.theme_Dark * {
	.table_record {
		border-top: 1px #2f4559 solid; 
	}
	
	.table_record:hover {
		background:#294258;
		border-top: 1px #1f3749 solid; 
		border-radius:8px;
	}
	
	.table_record:hover + .table_record {
		border-top: 1px #1f3749 solid; 
	}
	
	.table_record_first_item, .table_record_first_item_border {
		background: #1f3749;
	}
	.table_record_first_item {
		border-right: 3px #ffffff00 solid;
	}
	.table_record_first_item_border {
		border-right: 3px #294258 solid;
	}
	.table_record:hover > .table_record_first_item_border {
		background: #294258;
        border-right: 3px #465d73 solid;
	}
	.table_record:hover > .table_record_first_item {
		background: #294258;
	}
	
	.table_record_last_item, .table_record_last_item_border {
		background: #1f3749;
	}
	.table_record_last_item {
		border-left: 3px #ffffff00 solid;
	}
	.table_record_last_item_border {
		border-left: 3px #294258 solid;
	}
	.table_record:hover > .table_record_last_item_border {
		background: #294258;
		border-left: 3px #465d73 solid;
	}
	.table_record:hover > .table_record_last_item {
		background: #294258;
	}
	.table_record_last_item:hover, .table_record_last_item_border:hover {
		color:#febc58;
	}
	.table_gradient {
		background: linear-gradient(90deg, transparent, #1f3749);
	}
	.table_gradient_hover {
		background: linear-gradient(90deg, transparent, #294258);
	}

	.subtable {
		border-top: 6px #152836 solid;
	}
}

/* pagination */

.pagination {
	display: flex; 
	justify-content: space-between; 
	padding: 25px 0px 0px;;
	background:none;
}
.pagination_items {
	display: flex; 
	justify-content: space-between;
	border-radius: 5px;
	overflow:hidden;
}
.pagination_item, .pagination_item_active {
	display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
    text-align: center;
    padding: 7px 14px;
	transition:0.1s;
}
.pagination_items > div:last-child {
    border-right: none; 
}

.theme_Light * {
	.pagination_items {
		border: 1px #dbdcde solid; 
	}
	.pagination_item {
		background: #fff; 
		border-right: 1px #dbdcde solid; 
	}
	.pagination_item_active {
		border-right: 1px #dbdcde solid; 
	}
	.pagination_item_active, .pagination_item:hover {
		background: #f0f3f6; 
	}
}

.theme_Dark * {
	.pagination_items {
		border: 1px #465d73 solid; 
	}
	.pagination_item {
		background: #1f3749; 
		border-right: 1px #465d73 solid; 
	}
	.pagination_item_active {
		border-right: 1px #465d73 solid; 
	}
	.pagination_item_active, .pagination_item:hover {
		background: #294258; 
	}
}

/* pagination limit */

.pagination_limit {
	display: flex; 
	justify-content: space-between;
	border-radius: 5px;
	overflow:hidden;
	cursor: pointer;
	transition:0.1s;
	user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; 
}
.pagination_limit_data {
	display:flex; 
	padding: 7px 14px; 
	align-items: center;
}
.pagination_limit_items {
	display:none;
}
.pagination_limit_item, .pagination_limit_item_active {
	padding: 7px 14px;
}
.pagination_limit_side {
	width: 16px;
	height: 16px;
	MARGIN: 0 -4px;
}
.pagination_limit_items > div:last-child {
    border-right: none; 
}

.theme_Light * {
	.pagination_limit {
		border: 1px #dbdcde solid; 
	}
	.pagination_limit_item, .pagination_limit_item_active {
		border-right: 1px #dbdcde solid; 
	}
	.pagination_limit_item:hover, .pagination_limit_item_active {
		background: #f0f3f6; 
	}
}

.theme_Dark * {
	.pagination_limit {
		border: 1px #465d73 solid; 
	}
	.pagination_limit_item, .pagination_limit_item_active {
		border-right: 1px #465d73 solid; 
	}
	.pagination_limit_item:hover, .pagination_limit_item_active {
		background: #294258; 
	}
}

/* medis */

.chat_off * {
	@media (max-width: 500px) {
		.v2_table {
			padding: 0 0 10px; 
		}
		.v2_table_nav {
			padding-top: 10px;
		}
		.v2_table_function {
			margin:0 0 10px;
		}
		.table_logo, .pagination_limit {
			display:none;
		}
		.pagination {
			justify-content: center;
		}
		.v2_table_record_top, .table_record, #table_popup, .pagination {
			font-size:11px;
			letter-spacing:0;
		}
		.record_160, .record_125 {
			min-width:95px; 
		}
		.v2_table_sandwich_function {
			padding: 8px 10px 8px 0px;
		}
		.v2_table_record_top, .table_record {
			height:40px;
		}
		.table_record_first_item, .table_record_first_item_border {
			padding: 0 0 0 10px;
		}
		.table_record_last_item, .table_record_last_item_border {
			padding: 0 10px;
		}
		.v2_table_name {
			font-size:15px;
		}
	}
}

.chat_on * {
	@media (max-width: calc(500px + 325px)) {
		.v2_table {
			padding: 0 0 10px; 
		}
		.v2_table_nav {
			padding-top: 10px;
		}
		.v2_table_function {
			margin:0 0 10px;
		}
		.table_logo, .pagination_limit {
			display:none;
		}
		.pagination {
			justify-content: center;
		}
		.v2_table_record_top, .table_record, #table_popup, .pagination {
			font-size:11px;
			letter-spacing:0;
		}
		.record_160, .record_125 {
			min-width:95px; 
		}
		.v2_table_sandwich_function {
			padding: 8px 10px 8px 0px;
		}
		.v2_table_record_top, .table_record {
			height:40px;
		}
		.table_record_first_item, .table_record_first_item_border {
			padding: 0 0 0 10px;
		}
		.table_record_last_item, .table_record_last_item_border {
			padding: 0 10px;
		}
		.v2_table_name {
			font-size:15px;
		}
	}
}


/* table functions */

.table_functions {
	align-items: center;
    display: none;
	position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: max-content;
}
.table_functions {
    background: #f0f3f6;
}

.table_functions_item {
	padding: 5px 15px; 
	display: flex; 
	align-items: flex-end;
}
.table_functions_item > svg {
    margin-right: 6px;
}

.mode_reinvest_icons {
	transition:0.1s;
	height: 18px;
}
.mode_reinvest_icon {
	width:18px;
	height: 18px;
}

.table_functions {
    background: #eef0f5;
	border-left: 3px #d5d5d6 solid;
}

/* table_record_hover */

.table_record_hover {
	border-radius: 8px;
}
.table_record_hover .table_gradient {
	opacity: 0;
}
.theme_Light * {
	.table_record_hover {
		background: #eef0f5;
		border-top: 1px #fff solid;
	}
	.table_record_hover > .table_record_first_item,
	.table_record_hover > .table_record_last_item {
		background: #eef0f5;
	}
	.table_record_hover + .table_record {
		border-top: 1px transparent solid;
	}
	.table_record_hover > .table_record_first_item_border {
        background: #eef0f5;
        border-right: 3px #d5d5d6 solid;
    }
	.table_record_hover > .table_record_last_item_border {
        background: #eef0f5;
        border-left: 3px #d5d5d6 solid;
    }
}
.theme_Dark * {
	.table_record_hover {
		background: #294258;
		border-top: 1px #1f3749 solid;
	}
	.table_record_hover > .table_record_first_item,
	.table_record_hover > .table_record_last_item {
		background: #294258;
	}
	.table_record_hover + .table_record {
		border-top: 1px transparent solid;
	}
	.table_record_hover > .table_record_first_item_border {
        background: #294258;
        border-right: 3px #465d73 solid;
    }
	.table_record_hover > .table_record_last_item_border {
        background: #294258;
        border-left: 3px #465d73 solid;
    }
}

#table_popup_select {
	z-index:1; 
	position: absolute; 
	display: none; 
}





