@charset "UTF-8";

.mh_zoom_wrap {
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
	margin: 10px 8px 12px 0;
}

.mh_zoom_img_box {
	position: relative;
	display: inline-block;
	max-width: 100%;
	line-height: 0;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.mh_zoom_row {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 8px;
	max-width: 100%;
	margin-bottom: 12px;
}

.mh_zoom_row .mh_zoom_wrap {
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
}

.mh_zoom_bottom_text {
	box-sizing: border-box;
	display: block;
	text-align: center;
	padding: 10px 16px;
	background: #1e1e1e;
	color: #fff;
	font-size: 14px;
	line-height: 1.6;
	border-radius: 0 0 6px 6px;
}

.cloud-zoom-lens {
	border: 4px solid #888;
	margin: -4px;
	background-color: #fff;
	cursor: move;
}

.cloud-zoom-title {
	position: absolute !important;
	background-color: #000;
	color: #fff;
	padding: 3px;
	width: 100%;
	text-align: center;
	font-size: 16px;
	top: 0px;
}

.cloud-zoom-big {
	border: 4px solid #ccc;
	overflow: hidden;
	background-color: #fff;
}

.cloud-zoom-loading {
	color: #fff;
	background: #222;
	padding: 3px;
	border: 1px solid #000;
}

.mh_zoom_scale_control {
	position: absolute;
	top: -26px;
	right: 0px;
	width: 90px;
	height: 26px;
	z-index: 20;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	line-height: 1.2;
	font-size: 11px;
	font-weight: bold;
	color: #444;
	background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 40%, #e6e6e6 100%);
	border: 1px solid #bbb;
	border-bottom: none;
    border-radius: 12px 12px 4px 4px;
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.9), 
		0 -2px 5px rgba(0, 0, 0, 0.05),
		0 -4px 10px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(4px);
	padding: 0 8px;
	transition: all 0.2s ease;
}

.mh_zoom_scale_input {
	box-sizing: border-box;
	width: 44px;
	height: 18px;
	padding: 0 2px;
	border: 1px solid #aaa;
	border-top-color: #888;
	border-left-color: #999;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 600;
	text-align: center;
	background-color: #fafafa;
	color: #222;
	box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease;
}

.mh_zoom_scale_input:focus {
	outline: none;
	background-color: #fff;
	border-color: #000;
	box-shadow: inset 1px 1px 2px rgba(0,0,0,0.05), 0 0 3px rgba(0, 123, 255, 0.4);
}

.mh_zoom_scale_unit {
	font-size: 11px;
	font-weight: bold;
	color: #555;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* 버턴 희미하게 */
    /*.mh_zoom_scale_control {
    position: absolute;
    top: -24px;
    right: 0px;
    width: 85px;
    height: 24px;
    z-index: 20;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1.2;
    padding: 0 8px;
    font-size: 11px;
    color: #333;
    background: linear-gradient(145deg, #fdfdfd, #e8e8e8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: all 0.2s ease;
}

.mh_zoom_scale_control:hover {
    background: linear-gradient(145deg, #ffffff, #efefef);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.mh_zoom_scale_input {
    box-sizing: border-box;
    width: 42px;
    padding: 0 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    background-color: #fff;
    color: #222;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mh_zoom_scale_input:focus {
    outline: none;
    border-color: #888;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.06);
}

.mh_zoom_scale_unit {
    font-size: 11px;
    font-weight: 600;
    color: #111;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}*/