﻿* {
	-webkit-appearance: none;
}

img {
   vertical-align:bottom
}

body {
	margin: 0!important;
	padding: 16px!important;
	font-family: 'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
	background-color: #fbfbfb;
}

.container{
    position: relative;
	width: 100%;
	height: 100%;

	margin: auto;
	text-align: center;
}
.action{
    width: 600px;
    margin: 10px auto;
	text-align: center;
}

.action:after {
	display: block;
	content: "";
	clear: both;
}

.cropped>img{
    margin-right: 0;
}
.imageBox{
    position: relative;
    height: 600px;
    width: 600px;
	margin: auto;
	text-align: center;
    border:1px solid #aaa;
    background: #fff;
    overflow: hidden;
    background-repeat: no-repeat;
    cursor:move;
}
.imageBox .thumbBox{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
    box-sizing: border-box;
    border: 1px solid rgb(102, 102, 102);
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
    background: none repeat scroll 0% 0% transparent;
}
.imageBox .spinner{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    line-height: 600px;
    background: rgba(0,0,0,0.7);
}

input {
	border: 1px solid #bbbbbb;
	border-radius: 4px;
	font-size: 18px;
	padding: 10px 20px;
	line-height: 1.5!important;
	background-color: #ffffff;
    cursor: pointer;
    outline: none;
    appearance: none;
}

input[type="file"] {
	display: none;
}

#btnCrop, #btnZoomIn, #btnZoomOut, #btnRotation {
	margin-left: 6px;
}

#btnCrop {
	background-color: #35c1eb;
	border: 1px solid #35c1eb;
	color: #ffffff;

}

label {
	color: #000000;	
	background-color: #ffffff;
	padding: 10px;
	border: solid 1px #bbbbbb;
	border-radius: 4px;
	line-height: 27px!important;
}

.description {
	line-height: 1.8!important;
}

.confirmbutton {
	display: inline-block;
	margin: 10px 6px 0 6px;
	background-color: #35c1eb;
	border: 1px solid #35c1eb;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 20px;
	font-weight: bold;
	padding: 12px 0px;
	min-width: 300px;
	transition: all .4s ease-in-out;
}

.confirmbutton:hover {
	background-color: #ff0000;
	border: 1px solid #ff0000;
}

.cancelbutton {
	display: inline-block;
	margin: 10px 6px 0 6px;
	background-color: #ffffff;
	border: 1px solid #bbbbbb;
	color: #000000;
	text-decoration: none;
	border-radius: 4px;
	font-size: 20px;
	font-weight: normal;
	padding: 12px 0px;
	min-width: 200px;
	transition: all .4s ease-in-out;
}