input {
    width: 40px;
    text-align: center;
}

.wide{
    width: 200px;
}

body {
	font-family: 'Nunito', sans-serif;
	/*font-family: 'Titillium Web', sans-serif !important;*/
	background-color: #ffffff;
    color: #000000;
    line-height: 2em;
}

input[type=checkbox] {
	visibility: hidden;
}

/**
 * Checkbox Three
 */
 .checkboxThree {
	width: 130px;
	height: 40px;
	background: rgba(0,0,0,0.3);
	/*margin: 0px auto;*/
	border-radius: 50px;
	position: relative;
    display: block;
    line-height: 1em;
}

/**
 * Create the text for the On position
 */
.checkboxThree:before {
	content: 'Igen';
	position: absolute;
	top: 12px;
	left: 15px;
	height: 2px;
	color: #2dceaa;
	font-size: 16px;
}

/**
 * Create the label for the off position
 */
.checkboxThree:after {
	content: 'Nem';
	position: absolute;
	top: 10px;
	left: 80px;
	height: 2px;
	color:#ff7575;
	font-size: 16px;
}

/**
 * Create the pill to click
 */
.checkboxThree label {
	display: block;
	width: 52px;
	height: 22px;
	border-radius: 50px;
    text-align: center;
    color: rgba(0,0,0,0.3);
    font-weight: bold;
	transition: all .2s ease;
	cursor: pointer;
	position: absolute;
	top: 9px;
	z-index: 1;
	left: 12px;
	background: #ff7575;
}

.checkboxThree label:hover {
	background-color: #fff900;
}

.checkboxThree input[type=checkbox]:checked + label:hover {
	background-color: #fff900;
}
/**
 * Create the checkbox event for the label
 */
.checkboxThree input[type=checkbox]:checked + label {
	left: 70px;
	background: #2dceaa;
}
/*
#result{
    
}
*/
.hide {
    display: none;
}

textarea{
	width: 500px;
	height:200px;
}

table{
	width: 100%;
	text-align: center;
}

td {
	padding: 5px;
}

.good{
	background-color: #2dceaa;
	color: #333333;
}

.bad{
	background-color: #ff7575;
	color: #333333;
}

.acceptable{
	background-color: #fff900;
	color: #333333;
}

.noop{
	background-color: #bdbdbd;
	color: #333333;
}

.extra{
	background-color: #9626ff;
	color: #ffffff;
}