/*********** Main container 100% x 100% ***********/
html, 
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	background-color: #2e3440;
}

#page {
    position: relative;
	top: 0;
	width: auto;
	height: auto;
	min-height: 95%;
	text-align: center;
}
/**************************************************/

/*********** Small resolution devices *************/
@media screen and (max-height: 450px) {
    .menu {padding-top: 15px;}
    .menu a {font-size: 18px;}
}
/**************************************************/

/********** Graphics and text formatting **********/
img {
    border: 0;
}

p, 
input, 
a {
    color: #ffffff;
    font-size: 18px;
	font-weight: 300;
	text-align: justify;
    text-shadow: 0px 0px 1px;
}

a, 
a:visited, 
a:active {
    text-decoration: none;
}

.pageFontLight {
    font-family: 'QanelasUltraLight';
}

.pageFontBold {
    font-family: 'QanelasMedium';
}

.bold {
	font-weight: bold;
}

.green {
	color: #00cc1b !important;
}

.red {
	color: #f52929 !important;
}

.grey {
	color: #7c7e83 !important;
}

.required {
	color: #b82121;
}

#errorList {
	width: 100%;
	text-align: center;
	color: #f52929;
	font-size: 12px;
}
/**************************************************/

/******************* Login page *******************/
/* Login page background */
.indexPage {
	background: url('images/background.jpg') no-repeat center center fixed;
	background-size: cover;
	min-height: 100% !important;
}

#login p.error {
    position: relative;
    top: 50px;
	font-size: 16px;
	text-align: left;
    color: #f00;
}

#login {
    position: absolute;
    width: 400px;
    height: 300px;
    z-index: 3;
    top: 50%;
    left: 70%;
    margin: -160px 0 0 -200px;
}

#login p {
    display: inline;
    margin-left: -4px;
	padding-top: 10px;
	font-size: 35px;
	color: #E8E8E8;
}

#login img {
    width: auto;
    height: 100px;
    vertical-align: middle;
    margin-right: 40px;
}

#login form {
	position: relative;
	top: 30px;
}

#login input {
    width: 230px;
    height: 25px;
    padding: 5px;
    font-size: 20px;
    margin-top: 11px;
    border: 1px solid rgba(0, 0, 0, 0);
    background-color: transparent;
	background-size: 25px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 40px;
    opacity: 0.6;
	border-radius: 3px;
	background-color: #3f3f3f;
	color: #fff;
	transition: opacity .2s ease-in-out;
}

/* "Login" and "password" text inside input forms */
#login input::-webkit-input-placeholder {
    opacity: 0.5;
}

#login input:-moz-placeholder {
    opacity: 0.5;
}

#login input::-moz-placeholder {
    opacity: 0.5;
}

#login input:-ms-input-placeholder {
    opacity: 0.5;
}

#login input[type=text] {
    background-image: url("images/login.png");
	transition: border .5s ease-in-out;
}

#login input[type=text]:focus {
    opacity: 1;
}

#login input[type=password] {
    background-image: url("images/password.png");
	transition: border .5s ease-in-out;
}

#login input[type=password]:focus {
    opacity: 1;
}

#login input[type=submit] {
    width: 275px;
    height: 32px;
	padding: 0;
    text-align: center;
    font-size: 18px;
	line-height: 18px;
	border-radius: 3px;
	background-color: #006bae;
	color: #E8E8E8;
}

#login input[type=submit]:hover {
    opacity: 1;
}
/**************************************************/

/******************** Top menu ********************/
#topMenu {
	position: relative;
	top: 0;
	width: 100%;
	height: 80px;
	margin: auto;
	background-color: rgb(27, 99, 158);
    align-items: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

#innerBox {
	position: relative;
	width: 100%;
	height: 85%;
	margin: auto;
}

/* Logo */
#logo {
	float: left;
	margin-left: 50px;
	height: 100%;
	width: auto;
}

#logo img {
	height: 100%;
	width: auto;
}

/* kowalczyk.online */
#pageTitle {
	position: relative;
	display: table;
	float: left;
	width: 170px;
	height: 100%;
}

#pageTitle p {
	display: table-cell;
	vertical-align: middle;
	font-size: 18px;
	margin: 0;
}

#pageTitle p span {
	margin-left: 10px;
}

#pageTitle p span.online {
	margin-left: -4px !important;
}

#pageTitle .subTitle {
	font-size: 12px !important;
}

/* Menu buttons */
#menuBox {
	width: 500px;
	height: 100%;
	float: right;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: 150px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

#menuBox #statsLink,
#menuBox #statsLink a,
#menuBox #statsLink a img,
#menuBox form,
#menuBox form input {
	position: relative;
	display: inline-block;
	margin: auto;
	height: 30px;
	width: auto;
}

/* Tooltip text */
#menuBox form span.toolTip, 
#menuBox #statsLink span.toolTip {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	z-index: 2;
    left: -35px;
    top: 40px;
	width: 105px;
	background-color: #242424;
	font-size: 11px;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
}

#menuBox form span.toolTip::after, 
#menuBox #statsLink span.toolTip::after { /* Arrow */
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent black transparent;
}

#menuBox form:hover span.toolTip,
#menuBox #statsLink:hover span.toolTip {
	visibility: visible;
	opacity: 0.85;
}

/* Avatar */
#avatar {
	position: relative;
	width: 80px;
	height: 100%;
	float: right;
}

#avatar img {
	position: relative;
	height: 100%;
	width: auto;
	margin: auto;
}
/**************************************************/

/************ Open positions database *************/
/* Open positions section */
#openPositionsLine, 
#closedPositionsLine {
	position: relative;
	width: 98%;
	margin: auto;
	margin-top: 20px;
}

#closedPositionsLine {
	margin-top: 40px !important;
}

.line1, 
.line2, 
.line3, 
.line4 {
	position: relative;
	bottom: 4px;
	display: inline-block;
	border-bottom: solid 1px #888ea7;
} 

.line1 {
	width: calc(98% - 290px);
	margin-right: 15px;
}

.line2 {
	width: 150px;
	margin-left: 15px;
} 

#openPositionsLine p, 
#closedPositionsLine p {
	display: inline-block;
	line-height: 2px;
	font-size: 12px;
	color: #888ea7;
	margin-left: 8px;
} 

#openPositionsLine img.arrow, 
#closedPositionsLine img.arrow {
	position: relative;
	display: inline-block;
	height: 8px;
	width: auto;
}

#openPositionsArrow {
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
	-webkit-transition: -webkit-transform .5s ease-in-out;
	transition: -webkit-transform .5s ease-in-out;
	-o-transition: transform .5s ease-in-out;
	transition: transform .5s ease-in-out;
	transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out; 
}

/* Table with database records */
table#openPositions {
	position: relative;
	width: 98%;
	margin: auto;
	display: table;
	height: auto;
	overflow: hidden;
	border-collapse: collapse;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

/* Header row with categories */
#tableHeaderOpenPositions, 
#tableHeaderClosedPositions {
	position: relative;
	display: table-row;
	height: 40px;
	width: 100%;
}

#tableHeaderOpenPositions th, 
#tableHeaderClosedPositions th {
	font-weight: bold;
	font-size: 14px;
	color: #888ea7;
	text-align: left; 
    vertical-align: middle;
}

/* A row to add spacing between records */
table#openPositions .rowSeparator, 
table#closedPositions .rowSeparator {
	padding-top: 4px;
}

/* First row with information from database - name, ticker, etc. */
table#openPositions .record, 
table#closedPositions .record {
	position: relative;
	display: table-row;
	height: 60px;
	width: 100%;
	background-color: #383e54;
}

/* A single column in the first row */
table#openPositions .record td, 
table#closedPositions .record td {
	font-weight: 300;
	font-size: 12px;
	color: #fff;
	text-align: left; 
	vertical-align: middle;
}

/* Second row with information from database - comment, tags */
table#openPositions .secondRow, 
table#closedPositions .secondRow  {
	position: relative;
	display: none;
	height: 0px;
	width: 100%;
	background-color: #383e54;
	border-left: solid 3px #2096F5;
}

/* The only column in the second row */
table#openPositions .secondRow td, 
table#closedPositions .secondRow td {
	font-weight: 300;
	font-size: 12px;
	color: #fff;
	text-align: left; 
	vertical-align: middle;
}

.record, 
.secondRow {
	-webkit-transition: background-color 0.5s ease 0s;
	-o-transition: background-color 0.5s ease 0s;
	transition: background-color 0.5s ease 0s;
}

/* DIV wrapper around content of above column for hiding transition */
table#openPositions .hidingComment, 
table#closedPositions .hidingComment {
	display: flex;
	max-height: 0px;
	margin-bottom: 5px;
	opacity: 0;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

/* Formatting of specific cells */
table#openPositions .record .recordId {
	padding-left: 10px;
	border-left: solid 3px #2096F5;
}

table#openPositions .record .recordName span, 
table#openPositions .record .recordStatus span.block {
	display: block;
	line-height: 20px;
}
table#openPositions .record .recordStatus span.inline {
	display: inline;
}

.recordEdit {
	width: 100px;
}

.recordComment {
	min-height: 40px;
	margin: auto 10px;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

.recordTags {
	width: 400px;
	min-height: 40px;
	margin: auto 10px;
}

/* Edit and new record buttons */
.editButton,
#newRecordButton {
	padding: 5px 10px;
	border: 0px;
	color: #fff;
	background-color: #2096F5;
	font-size: 12px;
	font-weight: bold;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	   transition-duration: 0.5s;
}

.editButton:hover {
	background-color: rgb(1, 106, 243);
}

#newRecordButton {
	float: right;
	margin: 10px 15px 0px 0px;
	background-color: #444b64;
}

#newRecordButton:hover {
	background-color: rgb(1, 106, 243);
}
/**************************************************/

/*********** Closed positions database ************/
.line3 {
	width: calc(98% - 300px);
	margin-right: 15px;
}

.line4 {
	width: 150px;
	margin-left: 15px;
}

#closedPositionsArrow {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
	-webkit-transition: -webkit-transform .5s ease-in-out;
	transition: -webkit-transform .5s ease-in-out;
	-o-transition: transform .5s ease-in-out;
	transition: transform .5s ease-in-out;
	transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out; 
}

table#closedPositions {
	position: relative;
	width: 98%;
	margin: auto;
	opacity: 0;
	visibility: 0;
	display: inline-block;
	max-height: 0px;
	overflow: hidden;
	border-collapse: collapse;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

/* Formatting of specific cells */
table#closedPositions .record .recordId {
	padding-left: 10px;
	border-left: solid 3px #2096F5;
}

table#closedPositions .record .recordName span,
table#closedPositions .record .recordProfit span,
table#closedPositions .record .recordTotalProfit span {
	display: block;
	line-height: 20px;
}

.recordProfit {
	width: 160px;
}
/**************************************************/

/************** Add/edit record page **************/
#editRecord {
	position: relative;
	top: 20px;
	width: 47%;
	height: auto;
	overflow: auto;
	margin: 0 auto 40px;
	padding: 10px;
	color: #fff;
	background-color: #383e54;
	border-left: solid 3px #2096F5;
}

#recordForm label {
	float: left;
	margin: 1px 5px;
	width: 30%;
	text-align: right;
}

.formSeparator {
	line-height: 30px;
}

#recordForm input, 
#recordForm select,
#recordForm textarea,
.recordDropDown,
#tagsList
{
	float: left;
	margin: 1px 5px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #fff;
	background-color: #2e3440;
	border: 1px solid #2e3440;
	width: 150px;
	padding: 3px;
	border-radius: 5px;
	-webkit-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
}

#recordForm input:focus,
#recordForm textarea:focus,
#recordForm select:focus {
	-webkit-box-shadow: 0 0 6px #2096F5;
			box-shadow: 0 0 6px #2096F5;
			outline: none;
}

#formName {
	width: 280px !important;
}

#formId,
#formSubmit {
	width: 80px !important;
}

#formTicker {
	width: 100px !important;
}

#formBuyDate,
#formSellDate {
	padding: 2px !important;
}

#formHistoryDate,
#formHistoryType,
#formHistoryAmount,
#formHistoryCurrency,
#formHistoryVolume,
#formHistoryRate {
	margin: 2px 5px !important;
	font-family: 'Open Sans', sans-serif;
	font-size: 10px !important;
	width: 107px !important;
}

#formHistoryType,
#formHistoryCurrency,
#formHistoryDate {
	padding: 1px !important;
}

#formHistoryDate {

	width: 103px !important;
	height: 17px;
}

#formHistoryType {
	width: 115px !important;
}

#formComment,
#formHistory {
	width: 350px !important;
	height: 80px;
	margin: 5px !important;
	overflow: auto;
	resize: none;
}

/* Tag checkboxes */
#tagsList {
	display: inline-block;
	list-style: none; 
	width: 350px;
	min-height: 130px;
}

#tagsList li {
	display: inline-block;
	margin: 1px;
	width: 170px;
	text-align: left;
}

#tagsList li input {
	width: auto;
}

#tagsList li label {
	float: none;
	width: 150px !important;
}

/* Submit button */
#formSubmit {
	padding: 5px 10px;
	border: 0px;
	color: #fff;
	background-color: #2096F5 !important;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}

.buttonSeparator {
	line-height: 340px;
}

/* Info, calculate, unlock, add icons */
.toolIcon {
	padding: 3px;
	height: 17px;
	width: auto;
	float: left;
	cursor: pointer;
}

.tooltipIcon {
	cursor: default !important;
}

#unlockHistory {
	margin-top: 64px;
}

.tooltipContainer {
	float: left;
	width: auto;
	padding-right: 4px;
}

.historyTooltipContainer {
	position: relative;
	top: 40px;
	margin-left: -24px;
}

/* Tooltip windows. More info at cooltipz.jackdomleo.dev */
:root {
	--cooltipz-bg-color: #252628;
	--cooltipz-text-color: #ffffff;
	--cooltipz-font-size: 10px;
	--cooltipz-large: 250px;
	--cooltipz-small: 90px;
}
/**************************************************/

/********************* Footer *********************/
#footer {
	position: relative;
	bottom: 0px;
	width: 100%;
	height: 5%;
}

#footer p {
	font-size: 10px;
	vertical-align: middle;
	float: right;
	margin-right: 15px;
}
/**************************************************/

/********************** Stats *********************/
#stats {
	position: relative;
	width: 100%;
	height: auto;
	overflow: auto;
}

/* Title of every section */
.sectionTitle {
	position: relative;
	top: 0;
	width: calc(100% - 20px);
	height: 20px;
	margin: 0 auto;
	border-left: solid 3px #2096F5;
}

.sectionTitle p {
	margin-left: 10px;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
}

/* First row with two charts */
#chartContainer {
	display: table;
	width: 96%;
	height: auto;
	padding: 5px 2% 5px 2%;
	border-spacing: 10px;
	border-collapse: separate;
}

#categoryChart, 
#strategyChart {
	display: table-cell;
	width: 48%;
	height: 250px;
	background-color: #333a47;
}

/* Section with deposits table and with history */
#funds,
#history {
	float: left;
	width: calc(96% - 20px);
	margin-left: calc(2% + 10px);
	margin-bottom: 15px;
	background-color: #333a47;
}

#funds {
	height: 330px;
}

/* Table with deposits + new deposit button */
#fundsContainer {
	float: left;
	top: 10px;
	margin-left: 4px;
	width: 40%;
	height: auto;
}

/* Scrollable table with deposits */
#fundsList {
	width: 100%;
	height: 234px;
	margin-top: 10px;
	padding-right: 10px;
	overflow-y: auto;
}

table#fundsTable {
	position: relative;
	top: 10px;
	width: 98%;
	margin: auto;
	display: table;
	height: auto;
	overflow: hidden;
	border-collapse: collapse;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

/* Header row */
#fundsTableHeader {
	position: relative;
	display: table-row;
	height: 30px;
	width: 100%;
}

#fundsTableHeader th {
	font-weight: bold;
	font-size: 12px;
	color: #888ea7;
	text-align: left; 
	vertical-align: middle;
}

/* A row to add spacing between records */
table#fundsTable .rowSeparator {
	padding-top: 4px;
}

/* A single row of the deposit table */
table#fundsTable .record {
	position: relative;
	display: table-row;
	height: 60px;
	width: 100%;
	background-color: #383e54;
}

table#fundsTable .record td {
	font-weight: 300;
	font-size: 12px;
	color: #fff;
	text-align: left; 
	vertical-align: middle;
}

/* Formatting of specific cells */
table#fundsTable .record .fundsId {
	padding-left: 10px;
	border-left: solid 3px #2096F5;
}

/* New deposit button */
#newDeposit {
	width: 100%;
	height: 40px;
}

#newDepositButton {
	float: right;
	padding: 5px 10px;
	border: 0px;
	margin: 7px 6px 0px 0px;
	background-color: #444b64;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	   transition-duration: 0.5s;
}

#newDepositButton:hover {
	background-color: rgb(1, 106, 243);
}

/* Section with deposits summary */
#fundsInfo {
	float: left;
	margin: 40px 0 0 50px;
	width: 30%;
	height: auto;
}

/* Current rates */
#currencyRates {
	position: relative;
	top: -25px;
	width: 100%;
	height: 30px;
}

table#currencyRatesTable {
	text-align: left; 
	width: 100%;
	color: #fff;
}

.columnSeparator {
	width: 25px;
}

/* Broker list with sum of all the deposits */
table#fundsSummaryTable,
table#fundsSummaryTable2 { 
	position: relative; 
	top: -20px;
	font-size: 12px;
	margin: 0 auto;
}

/* Header row */
table#fundsSummaryTable tr th {
	text-align: left; 
	vertical-align: bottom;
	height: 30px;
	color: #888ea7;
}

table#fundsSummaryTable tr td,
table#fundsSummaryTable2 tr td {
	text-align: left;
	width: 100px;
	color: #fff;
}

table#fundsSummaryTable tr td:nth-child(1),
table#fundsSummaryTable2 tr td:nth-child(1) {
	width: 130px;
}

/* Total amount */
table#fundsSummaryTable2 tr td:nth-child(2) {
	font-weight: bold;
}

/* The line before brokers list and total amount */
#separatorLine {
	position: relative;
	top: -24px;
	left: -68px;
	width: 200px;
	height: 10px;
	margin: 0 auto;
	border-bottom: 1px solid #fff;
}

/* Chart with deposits' distribution */
#fundsChart {
	float: left;
	margin: 40px 0 0 10px;
	width: 23%;
	height: auto;
}

/* History section */
#history {
	height: 250px;
}

/* First column of the history section */
#historyOverview {
	float: left;
	position: relative;
	top: 10px;
	margin-left: 4px;
	width: 25%;
	height: auto;
}

/* Select year dropdown list */
#historyYearSelect {
	float: left; 
	margin-left: 8px;
	color: #fff;
	font-size: 12px;
}

#historyYearList {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #fff;
	background-color: #2e3440;
	border: 1px solid #2e3440;
	padding: 3px;
	border-radius: 5px;
	width: 100px;
	margin-left: 10px;
}

/* Detailed statistics about selected year */
#historyStats {
	float: left;
	position: relative;
	top: 20px;
	width: 100%;
	margin-left: 10px;
}

#historyStats div,
#historyDetailsContainer1 div,
#historyDetailsContainer2 div  {
	text-align: left;
	padding: 2px;
}

.historyListDetails {
	margin-left: 10px;
}

#historyStats div span, 
#historyDetailsContainer1 div span,
#historyDetailsContainer2 div span {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #fff;
}

#historyStats div span:nth-child(2),
.historyDetailsBroker span {
	font-weight: bold;
}

#historyStats div span:nth-child(2),
#historyStats div span:nth-child(3),
#historyDetailsContainer1 div span:nth-child(2), 
#historyDetailsContainer1 div span:nth-child(3),
#historyDetailsContainer2 div span:nth-child(2), 
#historyDetailsContainer2 div span:nth-child(3) {
	margin-left: 10px;
}

/* Second column of the history section */
#historyDetails {
	float: left;
	margin: 10px 0 0 20px;
	width: 40%;
	height: auto;
}

#historyDetailsContainer1,
#historyDetailsContainer2  {
	float: left;
	width: 50%;
}

/* Chart with historical data */
#historyChart {
	float: left;
	margin: 10px 0 0 20px;
	width: 33%;
	height: auto;
}
/**************************************************/

/********************** Charts ********************/
.highcharts-figure, .highcharts-data-table table {
    min-width: 320px; 
    max-width: 500px;
    margin: 1em auto;
}

.highcharts-data-table table {
	font-family: Verdana, sans-serif;
	border-collapse: collapse;
	border: 1px solid #EBEBEB;
	margin: 10px auto;
	text-align: center;
	width: 100%;
	max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
	font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}
/**************************************************/

/**************** Simple scrollbar ****************/
.ss-wrapper {
	overflow: hidden;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	float: left;
  }
  
  .ss-content {
	height: 100%;
	width: calc(100% + 18px);
	padding: 0 0 0 0;
	position: relative;
	overflow-x: auto;
	overflow-y: scroll;
	box-sizing: border-box;
  }
  
  .ss-content.rtl {
	width: calc(100% + 18px);
	right: auto;
  }
  
  .ss-scroll {
	position: relative;
	background: rgba(0, 0, 0, 0.1);
	width: 9px;
	border-radius: 4px;
	top: 0;
	z-index: 2;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.25s linear;
  }
  
  .ss-hidden {
	display: none;
  }
  
  .ss-container:hover .ss-scroll,
  .ss-container:active .ss-scroll {
	opacity: 1;
  }
  
  .ss-grabbed {
	-o-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
  }