/* --- Variables --- */
$width: 100%;
$height: 100%;
/* --- Mixins --- */
@mixin border () {
	border: 1px solid #eed3d7;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
//border
@mixin font () {
	font-family: Arial, Sans-serif;
	font-weight: normal;
	font-size: 12px;
}
// font
/* --- Styles --- */
#comment-image-wrapper {
	width: $width;
	clear: both;

	label {
		position: inherit;
		display: block;
		width: $width !important;
	}

	#comment-image-error {
		display: none;
		color: #b94a48;
		text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
		background-color: #f2dede;
		padding: 8px 35px 8px 14px;
		margin-bottom: 18px;
		@include font();
		@include border();
	}
	// #comment-image-error
}
// #comment-image-wrapper

.comment-image {
	display: block;

	a {
		display: block;
		outline: none;
		border: none;
	}

	img {
		max-width: $width;
		height: auto;
	}
	// img
}
// .comment-image
