@charset "UTF-8";
/* GENERAL STYLES*/

/*html, */ 
body {
	margin: 0;
	padding: 0;
	text-align: center;
	background-color: #9C99F2;
}

.base{
	background-color: #9C99F2;
}


#main{
	display:flex;
	justify-content: center;
}

.footer {
	/*position: absolute;*/
	position: relative; 
	bottom: 10px;
	width: 100%;
	text-align: right;
	margin-right: 100px;
}

.footer a{
	font-weight: bold;
	text-decoration: none;
	color: #000;
}

/*********LOGIN*********/
.login_main{
	width: 60%;
	min-width:400px;
}

.login_main * {
  box-sizing: border-box;
}

.login_main > .header{
	background-color: #9C99F2;
	margin: 0 auto;
	height: 30px;
	font-size: 30px;
	font-weight: bold;
	color:#FFF;
	text-align:center;
}

.mnemarea textarea{
	margin-top: 150px;
	padding: 10px;
	display: inline-block;
	background-color: #F2D5CE;
	min-height: 140px;
	width: 100%;
	/*font-size: calc(0.85vw + 10px);*/
	font-size:max(calc(0.85vw + 10px),16px);
	
	border: 3px solid #FFF;
	border-radius: 20px 20px 0px 0px;
	resize:none;
	word-spacing: 20px;
	word-wrap: break-word;
	height:auto;
	font-family: monospace;
}


#viewprivate, #viewmnemonic, #viewadress{
	word-break: break-all;
	padding: 5px;
	padding-top: calc(1em + 0.75vw);
	padding-bottom: calc(0.2em + 0.25vw);
	border-top: 2px solid rgba(0,0,0,0.6);
	border-left: 2px solid rgba(0,0,0,0.6);
	border-right: 2px solid rgba(0,0,0,0.6);
	/*font-size:calc(0.70em + 0.65vw);*/
	font-size:max(calc(0.70em + 0.65vw),16px);
	
	font-weight:bolder;
}
/*
#pass, #pass_repite {
	word-break: break-all;
	margin-top: 25px;
	width:45%;
	padding-top: calc(1em + 0.75vw);
	height:15px;
}

#pass{
	margin-left: auto;
}

*/
.pswd{
	display: flex;
	word-break: break-all;
    width: 100%;
	border-top: 2px solid rgba(0,0,0,0.6);
	border-right: 2px solid rgba(0,0,0,0.6);
    border-left: 2px solid rgba(0,0,0,0.6);
	min-height: 35px;
	box-sizing: border-box;
}

.pswd div{
	margin-top:35px;
	margin-bottom: 5px;
    width: 50%;
    padding-top: 10px;
	padding-bottom: 10px;
	font-size:max(calc(0.4em + 0.4vw),16px);
	/*font-size: calc(0.4em + 0.4vw);*/
}

#pass, #pass_repite{
    word-break: break-all;
	border-left: none;
	border-right: none;
	margin-bottom: 5px;
    width: 80%;
    padding-top: 10px;
	padding-bottom: 10px;
	/*font-size:calc(0.7em + 0.85vw);*/
	font-size:max(calc(0.7em + 0.85vw),16px);
	border-radius: 0;
}

#pass{
	float:left;
	margin-left: 10px;
}
#pass_repite{
	float:right;
	margin-right: 10px;
}



#viewmnemonic {
	word-break: normal;
}

#signin{
	display: inline-block;
	cursor: pointer;
	text-align:center;
	position: relative;
	width: 100%;
	height: 50px;
	font-size: 22px;
	border: 2px solid rgba(0,0,0,0.6);
	border-radius: 0px 0px 20px 20px;
}

.butarea{
	display: inline-block;
	width: 100%;
}

.butarea * {
	height: 60px;
	border: 0px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	padding:0px;
}

.butarea > .tb0{
	width: 35%;
	float: left;
	border-radius: 0px 0px 0px 20px;
	background-color: #F2F8F8;
}

.butarea > .tb1{
	width: 35%;
	float: left;
	background-color: #CCC;
}

.butarea > .tb2{
	width: 30%;
	float: right;
	border-radius: 0px 0px 20px 0px;
	background-color: #555;
	color: #CCC;
}


/*********LANG*********/
#lang {
	margin: 0 auto;
	float: right;
	height: 30px;
	width: 50px;
	position: relative;
	z-index: 100;
	border-radius: 0px 0px 0px 10px;
}

/*********MODAL**********/
.modal {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		background-color: rgba(0,0,0,0.6);
		z-index: 10000;
		color: #000;
	}

.modalErr {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		background-color: rgba(0,0,0,0.6);
		z-index: 10001;
		color: #000;
	}

.modalErr .modal_error {
		background-color: #fefefe;
		margin: 8vh auto;
		border-radius: 20px 20px 20px 20px;
		padding: 20px;
		border: 1px solid #888;
		width: 60%;
		display: inline-block;
	}	
	

	
.modal .modal_content{
		background-color: #fefefe;
		margin: 8vh auto;
		border-radius: 20px 20px 20px 20px;
		padding: 20px;
		border: 1px solid #888;
		width: 60%;
		display: inline-block;
	}
		
.modal_content .close_modal_window{
	outline: 2px solid #aaa;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 40px;
	font-weight: bold;
	float: right;
	margin-top:-18px;
	margin-right:-18px;
	transform: rotate(45deg);
}

.modal_main > #modallogin{
	display:inline-block;
	font-size: 20px;
	font-weight: bold;
	padding-bottom:10px;
}

.modal_main > #newdataBalanceHTML{
	border-bottom: 0px;
}


.modal_main > .form_title, .modal_main_error > .form_title{
	font-size:calc(0.65em + 0.65vw);
	font-weight: bold;
	padding-bottom:5px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	width: 100%;
}


.pointer{
		cursor: pointer;
}

.box {
  margin: 0;
  float: left;
  display: block;
  box-shadow: -1px 0 0 rgba(0, 0, 0, 0.6) inset, 1px 0 0 rgba(0, 0, 0, 0.6) inset, 0 -1px 0 rgba(0, 0, 0, 0.6) inset, 0 1px 0 rgba(0, 0, 0, 0.6) inset;
  min-height: 50px;
}
.one{
	width:100%;
}

/*.half {
  width: calc(50% - 1px);
}*/

.third {
  width: calc(33.333%);
}

.quarter {
  width: calc(25% - 1px);
}

.half {
	margin: 0;
	width:calc(100%/2);
	float: left;
	display: inline-block;
	box-shadow: -1px 0 0 rgba(0,0,0,0.6) inset, 1px 0 0 rgba(0,0,0,0.6) inset, 0 -1px 0 rgba(0,0,0,0.6) inset, 0 1px 0 rgba(0,0,0,0.6) inset;
	height: 50px;
}


.signed{
	color:green;
	font-weight: bold;
}
.unsigned{
	color:red;
	font-weight: bold;
}

.pubkey:hover{
	text-decoration: underline;
}

.tx_info{
	vertical-align: middle;	
	font-family: monospace;
}

.heightvalue{
	cursor: pointer;
	font-weight: bold;
}
.heightvalue:hover{
	text-decoration: underline;
}

.hover:hover{
	cursor: pointer;
	text-decoration: underline;
}

.gaddress{
	color:blue;
	font-size:calc(0.55em + 0.55vw);
	white-space: nowrap;
}

.click:hover{ 
	cursor: pointer;
	text-decoration: underline;
}

.swapool{
	color:green;
	word-break: break-all;
	font-size: 0.75rem;
}

.nodeaddress{
	color:orange;
	font-size:calc(0.6em + 0.55vw);
}
.gexValue{
	font-size:calc(0.5em + 0.50vw);
}
.nodeaddress:hover{
	color:red;
}

.blocknumber{
	font-weight: bold;
}

.gvalue{
	font-weight: bold;
}

.gcoin{
	color:green;
	font-size:calc(0.55em + 0.55vw);
}

.gcoin:hover{
	font-weight: bold;
	text-decoration: underline;
}

/*
.gswappool{
	display: inline-block;
	color:#d15c22;
	font-size:calc(0.55em + 0.55vw);
	width:100%;
}

.gswappool div{
	display: flex;
}



.gswappool:hover{
	font-weight: bold;
	text-decoration: underline;
}

*/

.gswappool {
	color: #d15c22;
	font-size: calc(0.55em + 0.55vw);
	display: flex;
	align-items: center;
	cursor: pointer;
	width: min-content;
	white-space: nowrap;
}

.gswappool div {
    display: flex;
}

.gswappool:hover {
    font-weight: bold;
}

.gswappool:hover div {
    text-decoration: underline;
}


.coinlabel:hover{
	font-weight: bold;
}

.txfaled{
	color:red;
	font-weight: bold;
}


.midaddress{
	display: inline-block;
	font-family: monospace;
	width: 2ch;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: bold;
	vertical-align: middle;
	text-indent: 0;
	letter-spacing: normal;
	margin-left: 0px;
}

.staddress,
.fiaddress{
	font-family: monospace;
	display: inline-block;
	white-space:nowrap;
	vertical-align: middle;
	font-weight: bold;
	width: min-content;
	text-indent: 0;
	letter-spacing: normal;
	margin-left: 0px;
}

.gaddress:hover .staddress,
.gaddress:hover .midaddress,
.gaddress:hover .fiaddress {
  text-decoration: underline;
}

.child td{
	background: #F2F8F8;
	height: 20px;
	border-left: 0px;
}

.child td div{
	display: inline-block;
	white-space: nowrap;
	margin-left:10px;
}

.child td .txinf div{
	margin-left: 0px;
}

.txinf:hover .staddress,
.txinf:hover .midaddress,
.txinf:hover .fiaddress {
  text-decoration: underline;
}



.active{
	background-color: #CCC;
}

.hide_table{
	display: none;
}


.modal_titles{
	position:absolute;
	margin-top:10px;
	margin-left:10px;
	color:rgba(0,0,0,0.6);
	font-size:calc(0.6em + 0.6vw);
	/*font-size:min(calc(0.6em + 0.6vw),16px);*/
}



.view_data{
	word-break: break-all;
	font-size: 20px;
	padding-top: 25px;
}


#menuHTML > #header{
	text-align:center;
	font-family: Impact;
	font-size: 26px;
	text-shadow: 0px 0px 1px black;
	letter-spacing: 1px;
	background-color: #FFF;
	width: 100%;
	height: 70px;
	border-bottom: 4px solid #9C99F2;
}

.menu{
	width: 100%;
	display: inline-block;
	margin-top:3px;
}

.menu .partofmenu{
	display: block;
	font-size: 20px;
	cursor: pointer;
	border-bottom: 3px solid #9C99F2;	
	width: 100%;
	text-indent: 1.5em;
	padding-top: 15px;
	padding-bottom: 15px;
	font-weight:bolder;
}

.menu .noborder{
	border-bottom: 1px solid #9C99F2;		
}

.submenu{
	background-color: #FFF;
	cursor: default;
	padding: 0px;
	text-align:right;
}

.submenu:last-of-type{
	cursor: default;
	padding: 0px;
	text-align:right;
	border-bottom:3px solid #9C99F2;
}

.submenu > div{
	margin-left:10%;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: none;
	cursor: pointer;
	background-color: #c0d2de;
	font-size: 16px;
	width: 90%;
	border-bottom: 1px solid #9C99F2;
	border-right:3px solid #9C99F2;
}

.submenu:last-of-type > div{
	border-bottom: none;
}

.submenu.marked div{
	font-weight:bolder;	
	background-color: #FFF;
}

#menuBottom{
	display: none;
}

.partofmenu.marked{
	background-color: #FFF;
	position: static;
	border-right: 3px solid Red;	
}

.menuHTML{
	min-height: 100vh;
	display: inline-block;
	text-align:left;
	width: 256px;
	background-color: #c0d2de;
	position: static;
	z-index: 8000;
}

.menuHTML > #footer{
	background-color: #c0d2de;
	color : #000;	
	position: absolute;
	bottom: 0px;
}

/*.absolute{
	position:absolute;
	background-color: #CCC;
	border:3px solid Red;
	right:25px;
	border-radius:10px 10px 10px 10px;
	z-index:99999;
	margin-top: -30px;
}
.absolute1{
	position:absolute;
	background-color: #CCC;
	border:3px solid Red;
	border-radius:10px 10px 10px 10px;
	z-index:99999;

	margin-top: -25px;
}*/
.addressData{
	position:relative;
	display:inline-block;	
	margin-left: 3%;
	margin-top: 10px;
	white-space: nowrap;
}



.dataHeaderAdressHTML{
	display:inline-block;
	font-size: min(calc(0.32em + 1.25vw), 25px);
}
.copy_address{
	margin-left:2px;
	display:inline-block;
	height:min(calc(0.32em + 1.25vw), 25px);
	width:min(calc(0.32em + 1.25vw), 25px);
}

#wallet_address{
	margin-left: 25px;
	color: #9C99F2;
}

#newdataBalanceHTML{
	border-bottom: 4px solid #9C99F2;
}


#dataHeaderHTML{
	width: 100%;
	height: 70px;
	background-color: #F2F8F8;
	text-align:left;
	vertical-align: top;
	border-bottom: 4px solid #9C99F2;
}

#dataMainHTML{
	margin-top: 20px;
	width: 100%;
	text-align:center;
	background-color: #F2F8F8;
}

.dataHTML{
	width: 60%;
	min-height: 100vh;
	text-align:center;
	display: inline-block;
	vertical-align: top;
	background: #F2F8F8;
	margin-left: 4px;
}

#menuTop{
	display:none;
}

/*********TABLES***********/
.table{
	width: 95%;
	margin-bottom: 20px;
	margin-left:2.5%;
	border-top: 5px solid #F2F8F8;
	border-collapse: collapse; 
	border-spacing: 0px;
	table-layout: auto;
}

.table td{
	padding: 5px;
	border: none;
	text-align: center;	
	background-color: #FFF;
	border-bottom: 5px solid #F2F8F8;
	height:40px;
}

.table td:first-child{ 
	padding: 5px;
	border: none;
	text-align: left;	
	background-color: #FFF;
	border-bottom: 5px solid #F2F8F8;
	height:40px;
}


.table thead th {
	height:50px;
	position:relative;
	text-align: left;
	border: none;
	background: #c0d2de;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 5px solid #F2F8F8;
}

#table_tx_data > .child td{
	display:flex;
	gap: 10px;
}

/*
.table thead th .var_balance div:first-child{
	border-left:0px solid #F2F8F8;
}
.table thead th .var_balance div:last-child{
	border-right:4px solid #F2F8F8;
}
*/
.table_add {
	width: 100%;
	margin-bottom: 20px;
	border-top: 5px solid #F2F8F8;
	border-collapse: collapse; 
	table-layout: fixed;
	border-spacing: 0px;
}

.table_add td {
	padding: 5px 20px;
	border: none;
	text-align: left;	
	background-color: #FFF;
	border-bottom: 5px solid #F2F8F8;
	min-height:20px;
}

.coin_pools .tb_1 {
	/*width: 30px;*/
}

.table_add thead th {
	min-height:20px;
	position:relative;
	font-weight: normal;
	text-align: left;
	border: none;
	background: #c0d2de;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 5px solid #F2F8F8;
}

.table_add .tb_1{
	width: 20%;
	min-width:100px;
}

.coin_pools .tb_1{
	width: 30px;
	min-width:10px;
}

/* table_height_txs */	
.table_height_txs {
	width: 100%;
	margin-bottom: 20px;
	border-top: 5px solid #F2F8F8;
	border-collapse: collapse; 
	table-layout: fixed;
	border-spacing: 0px;
}

.table_height_txs td {
	padding: 5px 20px;
	border: none;
	text-align: left;	
	background-color: #FFF;
	border-bottom: 5px solid #F2F8F8;
	min-height:20px;
}

.table_height_txs .tb_1{
	width: 20%;
	min-width:100px;
}



/* table_height_val */
.table_height_val {
	width: 100%;
	margin-bottom: 20px;
	border-top: 5px solid #F2F8F8;
	border-collapse: collapse; 
	table-layout: fixed;
	border-spacing: 0px;
}

.table_height_val td {
	padding: 5px 20px;
	border: none;
	text-align: left;	
	background-color: #FFF;
	border-bottom: 5px solid #F2F8F8;
	min-height:20px;
}

.table_height_val .tb_1{
	width: 100px;
}

/*.var_balance , */
.txs_title{
	line-height: 40px;
	height:50px;
}
.var_balance{
	display: flex;
	flex-direction: row;
}

.v_balance, .t_balance{
	position: absolute;
	width: 100%;
}
.flexedelem{
	column-count: 3;
	column-gap: 0px;
}

.m_bal{
	font-size: 16px;
	cursor: pointer;
	color: #9C99F2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 25px;
	text-align: center;
	background: #F2F8F8;
	box-shadow: -1px 0 0 #c0d2de inset, 1px 0 0 #c0d2de inset, 0 -1px 0 #c0d2de inset, 0 1px 0 #c0d2de inset;
}

.b_bal{
	display: inline-block;
	font-size: 20px;
	cursor: pointer;
	position: relative;
	z-index:2;
	padding-left:10px;
	height:50px;
	padding-right:5px;
	text-overflow: ellipsis;
	text-align: center;
	flex-direction: row;
	width: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
}




.hide_tr{
	display: none;
}


.table_menu div{
	float: left;
	display: block;
	width: 30%; 
}

.table_menu .table_menu_main{
	padding-left: 10px;
	padding-right: 10px;
}

.table_menu .table_menu_previous, .table_menu .table_menu_next{
	cursor: pointer;
}


.coins_hide_show, .menu_hide_show, .tx_hide_show{
	display: inline-block;
	float: right;
	cursor: pointer;
	font-size: 30px;
	font-weight: bold;
	font-family: monospace;
	width: 20px;
}

.v_balance > .coins_hide_show , .t_balance > .tx_hide_show {
	position:absolute;
	right: 0;
	height:20px;
	width:20px;
	margin-top: -40px;
	margin-right: 15px;
/*	margin-top: -41px;
	box-shadow: -1px 0 0 #F2F8F8 inset, 1px 0 0 #F2F8F8 inset, 0 -1px 0 #F2F8F8 inset, 0 1px 0 #F2F8F8 inset;
	margin-right: 15px;
	border-left: 5px solid #F2F8F8;
	padding-left: 20px;
	padding-right: 12px;*/
}

.tx_hide_show svg, .coins_hide_show svg{
	position:absolute;
	margin-left:-5px;
	margin-top: 2px;
}


.last_txs_table{
	width: 95%;
	margin-bottom: 20px;
	margin-left:2.5%;
	border-top: 5px solid #F2F8F8;
	border-collapse: collapse; 
	table-layout: fixed;
	border-spacing: 0px;
}


.last_txs_table td {
	min-height: 25px;
	max-height:50px;
	padding: 5px 20px;
	width: auto;
	border: none;
	text-align: left;	
	background-color: #FFF;
	border-bottom: 5px solid #F2F8F8;
}

.last_txs_table thead th {
	height:50px;
	position:relative;
	/*font-weight: bold;*/
	text-align: left;
	border: none;
	background: #c0d2de;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 5px solid #F2F8F8;
}
.last_txs_table .txs_title{
	margin-left: 20px;
	font-weight: bold;
	font-size: 20px;
}

.last_txs_table .tb_1{
	text-align: center;
	width: 120px;
}

/*

.last_txs_table thead th .var_balance div:first-child{
	border-left:0px solid #F2F8F8;
}
.last_txs_table thead th .var_balance div:last-child{
	border-right:4px solid #F2F8F8;
}

*/

.table1 {
	width: 95%;
	margin-left: 2.5%;
	margin-bottom: 20px;
	border-top: 5px solid #F2F8F8;
	border-collapse: collapse; 
}

.table1 td {
	padding: 5px 20px;
	/*text-align: left;	*/
	background-color: #FFF;
	min-height: 20px;
	border-bottom: 5px solid #F2F8F8;
}




.table1 td:last-child {
	white-space: nowrap;
    width: auto;
}

.table1 thead th {
	height:40px;
	position:relative;
	/*font-weight: bold;*/
	/*text-align: left;*/
	border: none;
	background: #c0d2de;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 5px solid #F2F8F8;
}

.table1 thead th .txs_title{
	padding-left:10px;
	height:40px;
	font-size: 20px;
}

.table1 .tx_height{
    width: 50px;
	text-align: left;
}
.table1 .tx_hash{
    width: 50px;
	text-align: left;
}
.table1 td{
	width: auto;
}



.ord_table .tb_2, .ord_table .tb_3{
	width: auto;
}
.ord_table .tb_1{
	width: 80px;
}
.ord_table .tb_4{
	width: 40px;
}
.ord_table  th{
	text-align:center;
}



.deleg_table td {
	padding: 5px 20px;
	text-align: left;
	background-color: #FFF;
	min-height: 20px;
	border-bottom: 5px solid #F2F8F8;
}

.deleg_table .tb_2{
	width: auto;
	text-align: left;
}
.deleg_table .tb_1{
	min-width: 80px;
	width: 25%;
	text-align: left;
}
.deleg_table .tb_3{
	width: 60px;
}
.deleg_table  th{
	text-align:center;
}

.withborder{
	border-left: 5px solid #F2F8F8;
}


.hashvalue{
	font-size:min(calc(0.6em + 0.5vw),16px);
}

.header:hover{
	cursor: pointer
}


		
.txparam {
	width: 47.5%;
	margin-left:10px;
	display: inline-block;
}


.tooltip {
	margin-left: 5px;
	margin-top: 5px;
	position: relative;
	display: inline-block;
	height:min(5vw, 20px);
	width:min(5vw, 20px);
}

.tooltiptext {
	visibility: hidden;
	width: 100px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px;
	position: absolute;
	height:20px;
	margin-left:-80px;
	margin-top:30px;
	transition: opacity 1s;
	z-index: 1000;
}	

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}



.horisont {
	width: 95%;
	display: inline-block;
}

.horisont span{
	padding-top: 10px;
	text-align: left;
	color: #c0d2de;
	font-weight: bolder ;
}

.horisont input{
	width: 100%;
	margin-top:5px;
	display: inline-block;
	border-width: 2px 0px;
	border-radius: 0;
	border-color: #c0d2de;
	height:50px;
	text-transform: uppercase;
}

.horisont .publicKey, .horisont .txhash{
	text-transform: none;
}

.horisont .act_field{
	display: inline-block;
	position:abslolute;
	color:red;
	float:right;
}

.horisont .err{
	color:red;
	border-color : #003822;
}

.horisont .payload, .horisont .to, .horisont .multisig{
	text-transform:none;
}

/*, .horisont .coin, .horisont .value*/
.horisont .type_zero label:first-child{
	width: 100%;
	display: inline-block;
	text-align: left;
}

.horisont .type_one label:first-child{
	width: 70%;
	display: inline-block;
	text-align: left;
	float:left;
	margin-right:2.5%;
}

.horisont .payload{
	height: 98px;
}

.horisont .gascoin, .horisont .nonce{
	height: 35px;
}



.horisont .type_one label:last-child{
	width: 27.5%;
	display: inline-block;
	text-align: left;
	float:left;
}

.horisont .type_two label{
	position: relative;
	width: 47.5%;
	display: inline-block;
	text-align: left;
	float:left;
	margin-right:2.5%;
}

.horisont .type_two label:last-child{
	width: 50%;
	display: inline-block;
	text-align: left;
	float:left;
	margin-right:0;
}

.horisont .type_three label{
	position: relative;
	width: 22.5%;
	display: inline-block;
	text-align: left;
	float:left;
	margin-right:2.5%;
}

.horisont .type_three label:first-child{
	width: 47.5%;
	display: inline-block;
	text-align: left;
	float:left;
}

.horisont .type_three label:last-child{
	width: 25%;
	display: inline-block;
	text-align: left;
	float:left;
	margin-right:0;
}

.horisont .first_coin, .horisont .second_coin{
	position: absolute; 
	top: 50%; 
	right: 8px; 
	/*font-style: italic;"*/
}

.horisont .type_four label{
	position: relative;
	width: 22.5%;
	display: inline-block;
	text-align: left;
	float:left;
	margin-right:2.5%;
}

.horisont .type_four label:last-child{
	width: 25%;
	display: inline-block;
	text-align: left;
	float:left;
	margin-right:0;
}


.horisont .advanced{
	width: 47.5%;
	float: left;
}

.horisont .advanced .button2{
	width: 100%;
	float: left;
	background-color: #FFFFFF;
	color: #c0d2de;
/*	border-style: solid;
	border-width: 1px;*/
}

.horisont .advanced .proleft{
  width: 47.5%;
}

.horisont .advanced .proright{
  width: 47.5%;
  float: right;
}
.horisont .button2{
  float:right;
  display: inline-block;
/*  border-radius: 4px;
  border-width: 1px;
  border: #c0d2de;*/
  background-color: #c0d2de;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 15px;
  width: 47.5%;
  transition: all 0.5s;
  cursor: pointer;
  margin-top: 25px;

}

.horisont .button2{
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.horisont .button2:hover{
  padding-right: 25px;
}

.horisont .multisig{
	margin-top: 25px;
	margin-bottom: 5px;
}

.horisont .spec_line {
	border-style: solid;
	border-width: 2px 0px;
	border-color: #fff;
	margin-top: 5px;
	width: 100%;
	display: inline-block;
	text-align: left;
	height: 20px;
}

.horisont #viewhash{
	margin-top: 20px;
}

.litle_symb{
	display: inline-block;
	height:25px;
	width: 25px;
}

.multiform{
	cursor: pointer;
	display: inline-block;
	font-size: 25px;
	position:absolute;
	margin-left:25px;
	margin-top:-5px;
}

.coinCheckbox{
	position:absolute;
	display:block;
	z-index: 100;
	font-size: 20px;
	background-color: #c0d2de;
	border-width: 1px;
	border: #c0d2de;
	padding-left: 0;
	margin-left: 0;
}
.coinCheckbox ul{
	padding-top:0px;
	padding-bottom:0px;
	margin-top:0px;
	margin-bottom:0px;
	padding-left: 0;
	max-width: 200px;
}

.coinCheckbox li{
	text-transform: uppercase;
	list-style-type: none; 
	margin-left:0px;
	width: 100%;
	float:left;
	border-top: none;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #000;
	border-left: 1px solid #000;
}
.coinCheckbox li:last-child{
		border-bottom: 1px solid #000;
}

.valueCheckbox{
	position:absolute;
	display:block;
	z-index: 100;
	font-size: 15px;
	background-color: #c0d2de;
	border-width: 1px;
	border: #c0d2de;
}
.valueCheckbox ul{
	padding-left:0px;
	padding-right:0px;
	padding-top:0px;
	padding-bottom:0px;
	margin-top:0px;
	margin-bottom:0px;
	width: 100%;
}

.valueCheckbox li{
	text-transform: uppercase;
	list-style-type: none; 
	margin-left:0px;
	padding:5px;
	border-top: none;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #000;
	border-left: 1px solid #000;
}
.valueCheckbox li:last-child{
		border-bottom: 1px solid #000;
}

}
/*