@charset "utf-8";
/*!
 * CSS for Select Image (jQuery Plugin) v0.9
 *
 * Copyright(c) Hideki Terada
 * https://cube-group.jp/
 *
 * Date: 2020-03-15
 */
.selectimage_selected i {
  top: 10%;
  right: 10%;
  font-size: 14px;
  color: dimgray;
  padding: 2px;
  border: 1px solid dimgray;
  border-radius: 2px;
  background-color: white;
  cursor: pointer;
  position: absolute;
}
.selectimage_selected img {
  max-width: 100%;
	width: auto;
	max-height: 100%;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  position: absolute;
}
#selectimage_container {
	width: 80%;
	margin: 0px 10%;
	position: relative;
}
.selectimage_container_box {
	border: 1px solid black;		
}
.selectimage_container_box img {
  max-width: 100%;
	width: auto;
	max-height: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#selectimage_overlay { /* z-index,background指定 */
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 10;
}

