/*
======================================== 
ch/js-such/css/act-loading.scss 
======================================== 
*/
.act-loading {
	&, * {
		cursor: progress;
	}
}




/*
======================================== 
ch/js-such/css/act-working.scss 
======================================== 
*/
.act-working {
	&, * {
		cursor: progress;
	}
}






/*
======================================== 
ch/cookielaw/css/svgClose.mixin.scss 
======================================== 
*/
@mixin svgClose($color, $size: 14px) {
	/* Encode image for IE & Firefox */
	$image: '/file/images/x.svg?fill=##{str-slice(inspect($color),2)}&height=#{$size}&width=#{$size}';

	content: url($image);
	width: $size;
	height: $size;
	display: inline-block;
	vertical-align: middle;
}





/*
======================================== 
ch/cookielaw/css/such-cookielaw.scss 
======================================== 
*/
@import "compass/css3/transition";

#cookielaw-box {
    background-color: rgba(255, 255, 255, 0.75);
	max-height: 512px;
	@include transition(
		max-height .5s ease-in-out 0s,
	    opacity .5s ease-in-out 0s,
		visibility .5s ease-in-out .5s
	);

	visibility: visible;
	&.cookielaw-closed {
		max-height: 0;
		opacity: 0;
		visibility: hidden;
		@include transition-delay(0s, 0s, 0s);
	}

	.container { position: relative; }
}

#cookielaw-content {
	padding: 10px 0px;
    padding-right: 30px;
}

#cookielaw-close {
	display: inline-block;
    border: 1px solid #000;
    border-radius: 2px;
    padding: 2px;
	line-height: 1;
	position: absolute;
    right: 10px;
	top: 10px;

	&:before {
		@include svgClose(#000);
	}
}




/*
======================================== 
ch/framework-mvc/css/mvc-debug.css 
======================================== 
*/
.mvc_debug_pre {
	white-space: pre-wrap;
}
.mvc_debug_exception .popover {
	max-width: 80em;
}
.mvc_debug_exception .popover-title {
	white-space: nowrap;
}

#mvc_debug .panel {
	margin-bottom: 10px;
}






/*
======================================== 
ch/framework-mvc/css/tablecol-click.css 
======================================== 
*/
.tablecol-click {
	cursor: pointer;
}





