#parent td {
	min-width: 25%;
	width: 25%;
	max-width: 25%;
}
#parent .large td {
	min-width: 50%;
	width: 50%;
	max-width: 50%;
}

#upgradeCanvas {
    top: 0;
    left: 0;
    position: absolute;
    z-index: -999;
}

#parent .verylarge td {
	min-width: 100%;
	width: 100%;
	max-width: 100%;
}
.button {
	background: #F2F2F2;
	height: auto;
	line-height: 21px;
	text-align: center;
	width: auto;
	border: 1px solid #127A20;
	border-radius: 4px;
	padding: 5px;
	color: #000000;
	transition-duration: 0.2s;
}
.button:hover {
    color: #FFFFFF;
    background: #5AC467;
}
.buttonlocked {
	background: #A3A3A3;
	height: auto;
	line-height: 21px;
	text-align: center;
	width: auto;
	border: 1px solid #B84B5F;
	border-radius: 4px;
	padding: 5px;
	color: #000000;
	transition-duration: 0.2s;
}
.buttonlocked:hover {
    color: #000000;
    background: #B84B5F;
}
.tab {
	display: none
}
.tabNotification{
	background: #20B2AA;
}
.buttonbought {
	color: #FFF;
	background: #5AC467;
	height: auto;
	line-height: 21px;
	text-align: center;
	width: auto;
	border: 1px solid #127A20;
	border-radius: 4px;
	padding: 5px;
	color: #000000;
	transition-duration: 0.2s;
}
.buttonbought:hover {
	border-color: #5AC467;
}
.upgradebtn {
	width: 170px;
	height: 80px;
}
.achbtn{
	width: 120px;
	height: 80px;
}


[ach-tooltip] {
    position: relative;
    z-index: 2;
}

[ach-tooltip]:before,
[ach-tooltip]:after {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

[ach-tooltip]:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-bottom: 5px;
    margin-left: -80px;
    padding: 7px;
    width: 160px;
    border-radius: 3px;
    background-color: #000;
    background-color: hsla(0, 0%, 5%, 0.9);
    color: #fff;
    content: attr(ach-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    transition-duration: .5s;
}

[ach-tooltip]:after {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #000;
    border-top: 5px solid hsla(0, 0%, 5%, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
    transition-duration: .5s;
}

[ach-tooltip]:hover:before,
[ach-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}

