* {
touch-action: manipulation;	
}

#croppic{
	width: 400px;
	height: 208px;
	position: relative;
	margin: 50px 70px 20px;
	border: 3px  solid #FFF;
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	border-radius: 2px;
	background-image: url(../img/placeholder.png);
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: 8px 8px 0px rgba(0,0,0,0.1);
}


.crop-area {
	background-color:rgba(224,224,224,1.00);
	margin-bottom:30px;
}

/* DO NOT CHANGE FROM HERE ( unless u know what u are doing) */
.cropImgWrapper{
	cursor: -webkit-grab;
	cursor: grab;
}
.cropImgWrapper:active{
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.cropImgUpload{
	z-index:2;
	position:absolute;
	height:28px;
	display:block;
	top: -30px;
	right: -2px;
	font-family:sans-serif;
	width:20px;
	height:20px;
	text-align:center;
	line-height:20px;
	color:#FFF;
}

.cropControls{
	z-index:2;
	position:absolute;
	height:30px;
	bottom: -40px;
	right: -1px;
	font-family:sans-serif;
	display: flex;
	flex-wrap: wrap;
}

.cropControls.cropControlsUpload {
    bottom: -30px;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    height: 144px;
}
.cropControls.cropControlsUpload i {
	flex-shrink:1;
	width:100%;
    height: 144px;
	background-image:none;
	font-weight: 500;
	display:flex;
	align-items: center;
	justify-content:center;
	font-size:17px;
	font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.cropControls.cropControlsUpload:hover i:before {
	content:'';
	color:#FFFFFF;
	font-family: "FontAwesome";
	margin-right:5px;
}


#cover_select {
	height: 280px;
}
@media screen and (max-width:900px){
	#cover_select {
		height: 124px;
	}
}
.select_photo.cover .photo_view .cropControls.cropControlsUpload,
.select_photo.cover .photo_view .cropControls.cropControlsUpload i {
	height: 100%;
}


.cropControls i{
	display:block;
	margin:0;
	cursor:pointer;
	background-image:url('../img/cropperIcons.png');	
	width:30px;
	height:30px;
	text-align:center;
	line-height:20px;
	color:#FFF;
	font-size:13px;
	font-weight: bold;
	font-style: normal;
}

.cropControls i:hover{   }
.cropControls i.cropControlZoomMuchIn{ background-position:0px 0px;}
.cropControls i.cropControlZoomIn{ background-position:-30px 0px; }
.cropControls i.cropControlZoomOut{ background-position:-60px 0px; }
.cropControls i.cropControlZoomMuchOut{ background-position:-90px 0px; }
.cropControls i.cropControlRotateLeft{ background-position:-210px 0px; }
.cropControls i.cropControlRotateRight{ background-position:-240px 0px; }
.cropControls i.cropControlCrop{ background-position:-120px 0px;}
.cropControls i.cropControlUpload{ background-position:-150px 0px;}
.cropControls i.cropControlReset{ background-position:-180px 0px;}
.cropControls i.cropControlRemoveCroppedImage{ background-position:-180px 0px; background-image:#f08b89; }

.cropControls i:last-child{
	margin-right:none;
}

#croppicModal{
	position:fixed;
	width:100%;
	height:100%;
	top: 0;
	left: 0;
	display:block;
    background: rgb(29, 29, 29);
	z-index: 10000;
	touch-action: manipulation;
}


/*
*		PRELOADER 
*		With courtesy of : http://cssload.net/
*/

.bubblingG {
	text-align: center;
    width: 23px;
    height: 23px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -18px auto auto -40px;
	z-index:2;
}

.bubblingG span {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	margin: 25px auto;
	background: #FFF;
	box-shadow: 5px 5px 0px rgba(0,0,0,0.2);
	-moz-border-radius: 50px;
	-moz-animation: bubblingG 1s infinite alternate;
	-webkit-border-radius: 50px;
	-webkit-animation: bubblingG 1s infinite alternate;
	-ms-border-radius: 50px;
	-ms-animation: bubblingG 1s infinite alternate;
	-o-border-radius: 50px;
	-o-animation: bubblingG 1s infinite alternate;
	border-radius: 50px;
	animation: bubblingG 1s infinite alternate;
	
}

#bubblingG_1 {
	-moz-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	-ms-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
}

#bubblingG_2 {
	-moz-animation-delay: 0.3s;
	-webkit-animation-delay: 0.3s;
	-ms-animation-delay: 0.3s;
	-o-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

#bubblingG_3 {
	-moz-animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
	-ms-animation-delay: 0.6s;
	-o-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

@-moz-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:#FFF;
		-moz-transform: translateY(0);
	}

	100% {
		width: 24px;
		height: 24px;
		background-color:#FFF;
		-moz-transform: translateY(-21px);
	}

}

@-webkit-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:#FFF;
		-webkit-transform: translateY(0);
	}

	100% {
		width: 24px;
		height: 24px;
		background-color:#FFF;
		-webkit-transform: translateY(-21px);
	}

}

@-ms-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:#FFF;
		-ms-transform: translateY(0);
	}

	100% {
		width: 24px;
		height: 24px;
		background-color:#FFF;
		-ms-transform: translateY(-21px);
	}

}

@-o-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:#FFF;
		-o-transform: translateY(0);
	}

	100% {
		width: 24px;
		height: 24px;
		background-color:#FFF;
		-o-transform: translateY(-21px);
	}

}

@keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:#FFF;
		transform: translateY(0);
	}

	100% {
		width: 24px;
		height: 24px;
		background-color:#FFF;
		transform: translateY(-21px);
	}

}


/* some reset stlyes */
body.hidden {
	overflow:hidden;
	max-height:100%;
	max-width:100%;
}




/* ボタンカスタム */
.cropControls {
    z-index: 2;
    position: absolute;
    height: 30px;
    bottom: -40px;
    left: 50%;
    font-family: sans-serif;
    display: flex;
    flex-wrap: wrap;
    width: 341px;
    margin-left: -170px;
}

.cropControls i.cropControlZoomIn,
.cropControls i.cropControlZoomOut,
.cropControls i.cropControlCrop,
.cropControls i.cropControlReset {
	background-image:none;
	height:45px;
	margin:0;
    background-color: #444444;
	display:flex;
    justify-content: center;
    align-items: center;
	touch-action: manipulation;
}
.cropControls i.cropControlZoomIn:after,
.cropControls i.cropControlZoomOut:after,
.cropControls i.cropControlCrop:after,
.cropControls i.cropControlReset:after {
    color: #FFFFFF;
    font-weight: normal;
}

.cropControls i.cropControlZoomIn {
    width: 70px;
}
.cropControls i.cropControlZoomIn:after {
	font-family: "Font Awesome 5 Free";
	content: "\f00e";
    font-size: 30px;
	font-weight: bold;
}

.cropControls i.cropControlZoomOut {
    width: 70px;
}
.cropControls i.cropControlZoomOut:after {
	font-family: "Font Awesome 5 Free";
	content: "\f010";
    font-size: 30px;
	font-weight: bold;
}

.cropControls i.cropControlCrop {
    width: 100px;
}
.cropControls i.cropControlCrop:after {
	content: "保存";
    font-size: 16px;
}


.cropControls i.cropControlReset {
    width: 100px;
}
.cropControls i.cropControlReset:after {
	content: "キャンセル";
    font-size: 16px;
 }

@media screen and (max-width:480px){
	.cropControls {
	    justify-content: center;
	}
	.cropControls i.cropControlZoomIn,
	.cropControls i.cropControlZoomOut,
	.cropControls i.cropControlCrop,
	.cropControls i.cropControlReset {
		height: 50px;
	}
	.cropControls i.cropControlCrop,
	.cropControls i.cropControlReset {
		width:90%;
		margin:0 5%;
		position: fixed;
		bottom: 20px;
		left: 0;
		border: solid 1px #0d0d0d;
		border-radius:7px;
	}
	.cropControls i.cropControlCrop {
		bottom: 80px;
	}
	
}

.icon_cropContainer_imgUploadForm {
	position:absolute;	
}