label {
  font-size: 14px;
}

span {
  font-size: 14px;
}

.container {
  display: flex;
  position: relative;
  /* outline: solid 2px #cccccc; */
  background-color: #F6F6F6;
}


.container_emoji_screen {
  display: flex;
  flex-direction: column;
  width: 400px;
  /* height: 430px; */
  outline: solid 2px #cccccc;
  background-color: #F6F6F6;
  margin: 12px auto 5px;
}

.container_drawer_screen {
  flex-direction: column;
  width: 400px;
  height: 415px;
  outline: solid 2px #cccccc;
  background-color: #F0F0F0;
}

.container_over {
  display: flex;
  flex: 1;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.image_title {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}

.btn_make_emoji {
  display: flex;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  color: white;
  border-radius: 5px;
  border: solid 1px;
  background-color: red;
  cursor: pointer;
}

button label {
  cursor: pointer;
}

.btn_left_menu {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 10px;
  padding: 0;
  border: solid 1px;
  background-color: white;
  cursor: pointer;
}

.container_btn_left_menu {
  display: flex; outline: solid 2px; margin-top: 10px;
}

.btn_cursor {
  cursor: pointer;
}

.btn_previous {
  display: flex;
  width: 60px;
  height: 30px;
}

.btn_previous {
  width: 60px;
}

.arrow{
  height: 25px;
  width: 25px;
  border: solid 2px #999;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  margin-top: 1px;
  line-height: 24px;
}

.btn_insert_blog {
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: 10px;
  cursor: pointer;
}

.ic_search {
  height: 30px;
}

.button_search {
  height: 30px;
	flex: 0 0 50px;
}

.round {
  position: relative;
}

.checkbox{
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.button_tool {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image {
  width: 20px;
  height: 20px;
}

.btn_create_new {
  display: flex;
  flex: 1;
  height: 30px;
  align-items: center;
}

.container-canvas-drawer {
  position: relative;
  width: 240px;
  height: 240px;
  margin-top: 5px;
  border: solid 5px #c7c7c7;
}

.canvas{
  background: url(https://static.fc2.com/image/blog_admin/pc/emoji/bg_canvas.png);
  background-size: 15px;
  top: calc(50% + 10px);
}

.canvasTemp{
  position: absolute;
  top: 0px;
  left: 0px;
  cursor: none;
}

.modal {
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  justify-content: center;
  align-items: center;
}

.modal-import {
  display: flex;
  flex-direction: row;
  background-color: #F5FBFB;
  border: 1px solid #888;
  padding: 10px;
  justify-content: center;
}

.close {
  width: 25px;
  height: 25px;
  position: absolute;
}

.input-search-tag {
  width: 150px;
  margin-bottom: 10px;
}

.card {
  box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.contain_center {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  font-size: 10px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  font-size: 10px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
  font-size: 10px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-size: 10px;
}

body{
  position: relative;
  padding: 0;
  margin: 2px 0;
}

.loading{
	position: relative;
	width: 50px;
	height:5px;
	margin: 10;
}

.circle{
	width: 9px;
	height: 9px;
	background-color: red;
	position: absolute;
	border-radius: 50%;
	animation: translate 1s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	animation-fill-mode: backwards;
	animation-direction: alternate;
	opacity: 0.5;
}

.circle:nth-of-type(2){
	animation-delay: 0.2s;
}

.circle:last-of-type{
	animation-delay: 0.5s;
}

@keyframes translate {
	0%{transform: rotateY(90deg)}
	30%{transform: translateX(0px); background-color: yellow}
	80%{transform: translateX(150px); background-color: green}
	100%{transform: translateX(150px); background-color: blue}
/*	80%{transform: translateX(100px); background-color: blue}
	100%{transform: translateX(0px); background-color: blue}*/
}

.btn_upload_image {
	width: 185px;
	background-color: #D8EEEE;
	display: flex;
	position: absolute;
	bottom: 106px;
	right: 85px;
	font-size: 13px;
}