@charset "UTF-8";

html, body, .container {
	width:1280px;
	height:800px;
	overflow:hidden;
	margin:0px;
	padding:0px;
}

div, img {
	position:absolute;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.container {
	position:relative;
}

.objects, .buttons { width:100%; height:100%; }

.button {
	cursor:pointer;
}

#btn_reset {
	top: 15px;
	right: 20px;
}

#btn_answer {
	right:25px;
	bottom:26px;
}


#content_area {
    top: 127px;
    left: 240px;
    width: 800px;
	/* height: 583px; */
	height:635px;
    background: rgba(255,255,255,0.0);
}

.etr_input {
	font-family: 'Baloo Paaji', 'Nanum Gothic', sans-serif;
	width: 142px;
	height: 103px;
	background: url(input_bg01.png)  no-repeat 49% 49%;
	font-size: 55px;
	text-align: center;
	line-height: 103px;
	cursor:pointer;

	color:#880015;
}

.input_active {
	-webkit-animation:input_blink 1.5s steps(1,end) infinite;
	-moz-animation:input_blink 1.5s steps(1,end) infinite;
	animation:input_blink 1.5s steps(1,end) infinite;
}

.etr_input.selected {
	/* filter:sepia(1); */
	background: url(input_bg03.png)  no-repeat 49% 49%;
	color:#e44817;
}

.etr_input.selected.input_active {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

@-webkit-keyframes input_blink {
	0%  { background-image: url(input_bg01.png); }
	50% { background-image: url(input_bg02.png); }
}
@-moz-keyframes input_blink {
	0%  { background-image: url(input_bg01.png); }
	50% { background-image: url(input_bg02.png); }
}
@keyframes input_blink {
	0%  { background-image: url(input_bg01.png); }
	50% { background-image: url(input_bg02.png); }
}

@-webkit-keyframes input_blink2 {
	0%  { background-image: url(input_bg01.png); }
	50% { background-image: url(input_bg03.png); }
}
@-webkit-keyframes input_blink2 {
	0%  { background-image: url(input_bg01.png); }
	50% { background-image: url(input_bg03.png); }
}
@keyframes input_blink2 {
	0%  { background-image: url(input_bg01.png); }
	50% { background-image: url(input_bg03.png); }
}

.etr_operation {
	width: 32px;
	padding-top:38px;
}

#etrKeyPad {
	transform-origin:50% 0%;
	-webkit-transform-origin:50% 0%;
}

#desc {
    font-family: 'Rix밝은굴림', 'SM태명조','Nanum Gothic Bold', 'Baloo Tammudu','ConcertOne', sans-serif;
    font-weight: bold;
    padding: 10px;
    top: 32px;
    left: 30px;
    width: 800px;
    height: 30px;
    color: #565252;
    font-size: 36px;
    line-height: 36px;
    text-align: left;
}


#obj_train { left:50px; top:522px; }

#obj_train {
	animation:obj_train 7s ease-in-out 0s ;
}

#obj_trainc {
	left:242px;
	transform-origin: 80% 100%;
	animation:obj_trainc 2.5s ease-in-out 0s infinite;
}

@keyframes obj_train {
	0% {
		transform: translateX(-700px);
	}
	100% {
		transform: translateX(0px);
	}
}

@keyframes obj_trainc {
	0% {
		transform: scale(0.1);
		opacity:0.0;
	}
	50% {
		transform: scale(1);
		opacity:1;
	}
}

input[type=number], .etr_input {
	border: 0px!important;
}

