object {
	width: 100%;
	height: 100%;
}

.region {
	fill: #4d4131;
	transition: fill 0.5s;
	stroke: white;
	stroke-width: 1px;
}

.region:hover {
	fill: #7d6e57;
}

.marker {
	display: none;
	opacity: 0.8;
	transition: opacity 0.2s, transform 0.2s;
	/*transform: none;*/
}

svg.new .marker.new {
	display: initial;
}

svg.original .marker.original {
	display: initial;
}

.marker:hover, .marker.active {
	opacity: 1;
	/*transform: translate(0, -0.3rem);*/
	cursor: pointer;
}

.marker.active {
	stroke: white;
}

.marker.new {
	fill: #9dce01;
}

label.new {
	color: #9dce01;
}

.marker.original {
	fill: #be6a1c;
}

label.original {
	color: #be6a1c;
}

#detail {
	position: absolute;
	right: -30%;
	top: 0;
	opacity: 0;
	width: 33.33333%;
	max-width: 450px;
	max-height: 100%;
	transition: right 0.3s, opacity 0.3s;
	color: white;
	overflow-y: auto;
}

#roubenky-screen-wrapper[data-fullscreen=true] #detail {
	top: 35px;
}

#detail.active {
	right: 0;
	opacity: 1;
}

#roubenky-screen-wrapper[data-fullscreen=true] #detail.active {
	right: 35px;
}

#detail a {
	display: block;
	position: relative;
	border: #cdcdcd 1px solid;
	padding: 3px;
	margin-bottom: 5px;
	background-color: #fff;
	border-radius: 3px;	
}

#detail .noimage a {
	background-color: #9a8163;
	min-height: 80px;
}

#detail img {
	width: 100%;
	height: auto;
}

#detail a h1 {
 	position:absolute;
	bottom: 0;    
	margin: 0 15px 10px 15px;
	font-weight: bold;
}

#detail button.more {
	background-color: #4d4131;
    color: white;
    border: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    padding: 3px 10px;
}

#detail a {
	text-decoration: none;
}

#detail .texts {
	padding: 1rem;
}

#detail h1 {
	font-size: 1.3rem;
    text-align: center;
    line-height: 1.5rem;
    color: #fff;
}

#detail-template {
	display: none;
}