#tabmenu {
	background: rgba(0,0,0);
	width: 290px;
	position: relative;
	height: 250px;
	margin-left: 875px;
	top: 225px;
	padding: 5px;
}

#tabmenu [type="radio"] {
 display: none;
}

#tabmenu [for^="tab"] {
    position: absolute;
    top: 10px;
    width: 25px;
	height: 25px;
    background: rgba(0,0,0,0.0);
}

#tabmenu [for="tab-1"] {
 left: 265px; top: 25px; color: #eacdef;
}

#tabmenu [for="tab-2"] {
 left: 265px; top: 75px; color: #eacdef;
}

#tabmenu [for="tab-3"] {
 left: 265px; top: 125px; color: #eacdef;
}

#tabmenu .tab-content {
    position: absolute;
    box-sizing: border-box;
    top: 20px;
	left:;
    width: 240px;
    height: 240px;
    opacity: 0;
    overflow: auto;
	background: rgba(0,0,0,0.0);
	margin-left: 5px;
	padding-left: 10px;
	color: #eacdef;
}

#tabmenu input:checked + label {
   font-weight: bold;
}

#tabmenu input:checked + label + .tab-content {
    z-index: 1;
    opacity: 1;
}


		