#messages {
	z-index:15;
}



.popup {
  position: relative;
  display: none;
	background-color: rgba(20, 20, 20, 0.9);
	color: rgba(255, 255, 55, 0.9);
	position: fixed;
	z-index: 1000;
	top: 20px;
	width: auto;
	min-width: 50%;
	max-width: 80%;
	height: auto;
	border: 1px solid rgba(255,255,255,0.9);
	border-radius: 6px;
	left: 50%;
	transform: translate(-50%,0);
	cursor: pointer;
}
.popup p {
	margin: 3px;
	padding: 13px !important;
	border-radius: 6px;

}

/* The actual popup (appears on top) */
.popup .popuptext p {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext p::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup.show {
  visibility: visible;
  display: inline-block;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

.popup.hide {
  visibility: hidden;
  display: none;
  -webkit-animation: fadeOut 0.3s;
  animation: fadeOut 0.3s
}

.popup p.success {
	background-color: rgba(0,200,40,0.9);
	color: rgba(255,255,255,1);
	border: 2px solid rgba(20,220,60,1);
	box-shadow: 0px 0px 6px rgba(20,220,60,1);
}

.popup p.error {
	background-color: rgba(200,40,0,0.9);
	color: rgba(255,240,220,1);
	border: 2px solid rgba(220,60,20,1);
	box-shadow: 0px 0px 6px rgba(220,60,20,1);
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

#theNest {
	border: 1px solid rgba(255,255,255,0.7);
	border-radius: 6px;
	background-color: rgba(250,125,10,0.5);
}

#theNest ul {
	padding:0px 2px;
	margin-top: 10px;
	margin-bottom: 10px;
}

#theNest ul li {
	line-height: 30px;
    float: left;
    margin: 2px 5px;
    list-style-type: none;
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 6px;
    background: rgba(0,0,0,0.2);
    padding: 0px 5px;
    box-shadow: inset 0px 0px 30px gold;
    text-shadow: 1px 1px 2px black;
	cursor:pointer;
}

#theNest ul li:hover {
	border: 1px solid rgba(255,255,255,0.3);
	box-shadow: inset 0px 0px 30px rgba(255, 225, 10,1);
}

input, select {
	text-align: right;
    float: right;
    color: black;
    font-size: 0.7em;
}

select {
	color: darkgreen !important;
    font-weight: bold;
    font-size: 1em;
}

.swapRow {
	width: 100%;
	line-height: 24px;
	height:32px;
}

label {
	color: white;
	text-align:left;
	float:left;
}

u-overlap-style {
	.u-overlap:not(.u-sticky-scroll) .u-header {
		background-image: linear-gradient(to right, black, #012339) !important
	}
}

#theNest ul li.selected {
	border: 1px solid rgba(255,255,255,0.9);
	box-shadow: inset 0px 0px 30px rgba(55, 255, 69,1);
	
}

#withdrawBtn {
	position: absolute;
    bottom: 45px;
    right: 15px;
    border: 1px solid black;
    border-radius: 6px;
    padding: 3px 10px;
    background: #aacb01;
    text-shadow: 1px 1px 0px black;
    cursor: pointer;
}

#withdrawBtn:hover {
    background: #badb01;
}

#blurred {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	width:100%;
	height:100%;
	z-index:10;
	display:inline-block;
	visibility: visible;
	padding: 0;
	margin: 0;
	background: rgba(0,0,0,0.9);
}
#blurred p {
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 16px;
	transform: translate(-50%, -50%);
	colour: white;
	text-shaodw: 1px 1px 0px black;
}

.hidden {
	display: none !important;
	visibility: hidden !important;
}
	