/*
 * Mapplic - Custom Interactive Map Plugin by @sekler
 * Version 6.0
 * https://www.mapplic.com/
 */

/* STYLES */
.mapplic-element {
	position: relative;
	overflow: hidden;
	font-size: 0;
	height: 420420px;
}

.mapplic-element input,
.mapplic-element button,
.mapplic-element a,
.mapplic-element a:active {
	outline: none;
	box-shadow: none;
	text-decoration: none !important;
}

.mapplic-element a:focus {
	outline: none;
}

.mapplic-element > * {
	opacity: 1;
	transition: opacity 0.4s;
}

.mapplic-element.mapplic-loading > * {
	opacity: 0;
}

.mapplic-element strong {
	color: #333;
}

/* Preloader & Error */
.mapplic-element.mapplic-loading { background: url(images/loader.gif) no-repeat center; }
.mapplic-element.mapplic-error { background: url(images/error-icon.png) no-repeat center; }

/* Map container */
.mapplic-container {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 100%;
	/*margin-top: -200px*/
}

.mapplic-map {
	transform-origin: 0 0;
}

/* Map layer */
.mapplic-layer { visibility: hidden; }
.mapplic-visible.mapplic-layer { visibility: visible; }
.mapplic-layer img {
	width: 100%;
}

.mapplic-map .mapplic-map-image {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/* IE Fix END */

.mapplic-map.mapplic-zoomable .mapplic-map-image {
	cursor: url(images/openhand.cur), default;
}

.mapplic-map.mapplic-zoomable.mapplic-dragging .mapplic-map-image {
	cursor: url(images/closedhand.cur), move;
}

/* Marker types */
.mapplic-pin {
	/*background-color: #fb7575;*/
	background-image:url("images/01.png");
    background-size: 60px 70px;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 70px;
    margin-top: -70px;
    margin-left: -30px;
    position: absolute;
}

.mapplic-pin:before {
	box-sizing: content-box !important;
}

.mapplic-pin.hide {
	display: none;
}

.mapplic-pin.mapplic-active {
	display: block !important;
	opacity: 0;
	visibility: hidden
}

.mapplic-pin.pin-classic {
	background-color: #f23543;
	background-image: none;
	border-color: #f23543;
	border-radius: 10px;
	line-height: 22px !important;
	width: 20px;
	height: 20px;
	margin-top: -22px;
	margin-left: -10px;
	transform-origin: 50% 140%;
}

.mapplic-pin.pin-classic:before {
	border-style: solid;
	border-width: 9px 8px 0 8px;
	border-color: inherit;
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	content: '';
	display: block;
	position: absolute;
	top: 16px;
	left: 2px;
}

.mapplic-pin.pin-marker {
	background-color: #fdca2a;
	background-image: none;
	border-color: #fdca2a;
	border-radius: 8px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	margin-left: -8px;
	transform-origin: 50% 50%;
}

.mapplic-pin.pin-marker:before {
	border-color: inherit;
	border-style: solid;
	border-width: 6px;
	border-radius: 16px;
	content: '';
	display: block;
	opacity: 0.2;
	width: 16px;
	height: 16px;
	position: absolute;
	left: -6px;
	top: -6px;
}

.mapplic-pin.pin-disk {
	background-color: white !important;
	background-image: none;
	border-color: #f19819;
	border-radius: 8px;
	color: #333 !important;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	margin-left: -8px;
	transform-origin: 50% 50%;
}

.mapplic-pin.pin-disk:before {
	border-color: inherit;
	border-style: solid;
	border-width: 3px;
	border-radius: 16px;
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	left: -3px;
	top: -3px;
}

.mapplic-pin.pin-ribbon {
	background-color: #46b450;
	background-image: none;
	border-color: #46b450;
	border-radius: 2px 2px 2px 0;
	height: 16px;
	min-width: 10px;
	width: auto;
	padding: 0 3px;
	margin-left: -8px;
	margin-top: -20px;
	transform-origin: 8px 20px;
}

.mapplic-pin.pin-ribbon:after {
	border-style: solid;
	border-width: 0 8px 4px 0;
	border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
	content: '';
	display: block;
	position: absolute;
	top: 16px;
	left: 0px;
}

.mapplic-pin.pin-ribbon:before {
	border-style: solid;
	border-width: 0 8px 4px 0;
	border-color: inherit;
	border-top-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	content: '';
	display: block;
	position: absolute;
	top: 16px;
	left: 0px;
}

.mapplic-pin.pin-dot {
	background-color: transparent !important;
	background-image: none;
	border-color: #29afa1;
	color: #333 !important;
	height: 16px;
	min-width: 10px;
	width: auto;
	padding: 0 3px;
	margin-left: 4px;
	margin-top: -8px;
	transform-origin: -4px 8px;
}

.mapplic-pin.pin-dot:before {
	border-color: inherit;
	border-style: solid;
	border-width: 3px;
	border-radius: 12px;
	content: '';
	display: block;
	width: 0px;
	height: 0px;
	position: absolute;
	top: 5px;
	left: -7px;
}

.mapplic-pin.pin-image {
	background-size: 32px;
	border: 2px solid #fff;
	border-radius: 50%;
	box-sizing: border-box;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	font-size: 0 !important;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	margin-left: -16px;
	transform-origin: 50%;
}

.mapplic-pin.pin-icon {
	background-size: 16px;
	background-color: transparent;
	border: none;
	border-radius: 0;
	font-size: 0 !important;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	margin-left: -8px;
	transform-origin: 50%;
}

.mapplic-pin.pin-circle {
	background: none !important;
	border: 2px solid #fb7575;
	width: 8px;
	height: 8px;
	margin-left: -6px;
	margin-top: -6px;
	transform-origin: 50% 50%;
}

.mapplic-pin.pin-transparent {
	background-image: none;
	background-color: #795ecd;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	margin-left: -10px;
	margin-top: -10px;
	opacity: 0.5 !important;
	transform-origin: 50% 50%;
}

.mapplic-pin.pin-label {
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	line-height: 16px;
}

.mapplic-pin.pin-label:visited {
	color: #fff;
}

.mapplic-pin.pin-md {
	border-radius: 50%;
	margin-left: -10px;
	margin-top: -10px;
	line-height: 20px;
	width: 20px;
	height: 20px;
}

.mapplic-pin.pin-lg {
	border-radius: 50%;
	margin-left: -15px;
	margin-top: -15px;
	line-height: 30px;
	width: 30px;
	height: 30px;
}

.mapplic-pin.pin-pulse:before {
	content: '';
	border: 2px solid #888;
	border-radius: 30px;
	height: inherit;
	width: inherit;
	top: -2px;
	left: -2px;
	position: absolute;
	animation: pulsate 1.8s ease-out;
	animation-iteration-count: infinite;
	animation-delay: 1s;
	opacity: 0;
	box-sizing: content-box;
}

@-webkit-keyframes pulsate {
	0% {-webkit-transform: scale(1, 1); opacity: 0.0;}
	25% {opacity: 0.5; }
	50% {-webkit-transform: scale(1.6, 1.6); opacity: 0.0;}
}

/* Minimap */
.mapplic-minimap {
	border: 1px solid rgba(0, 0, 0, 0.1);
	position: absolute;
	margin: 12px;
	bottom: 0;
	left: 0;
	opacity: 0.5;
	overflow: hidden;
	transition: opacity 0.4s;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mapplic-minimap-layer { line-height: 0; }
.mapplic-minimap img { width: 100%; }

.mapplic-minimap-overlay {
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.mapplic-minimap .mapplic-minimap-active {
	position: absolute;
	opacity: 1;
	top: 0;
	left: 0;
}

.mapplic-minimap-background {
	width: 140px !important;
	-webkit-filter: blur(2px);
}

/* UI Buttons */
.mapplic-button {
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	border: none !important;
	cursor: pointer;
	width: 28px;
	height: 28px;
	transition: background-color 0.2s;
	position: relative;
}

.mapplic-container > .mapplic-button {
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
	position: absolute;
	margin: 12px;
	visibility: hidden
}

.mapplic-icon {
	box-sizing: content-box;
	fill: #222;
	width: 16px;
	height: 16px;
	margin: 6px;
	position: absolute;
	top: 0;
	left: 0;
}

/* Clear Button */
.mapplic-clear-button {
	background-size: 16px 16px;
	display: none;
	bottom: 69px;
	right: 0;
}

/* Zoom Buttons */
.mapplic-zoom-buttons {
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
	margin: 12px;
	position: absolute;
	right: 0;
	bottom: 0;
	visibility:hidden
}

.mapplic-zoom-buttons button {
	display: block;
}

.mapplic-zoom-buttons .mapplic-disabled {
	background-color: #eee;
	cursor: default;
}

button.mapplic-zoomin-button {
	background-size: 10px 10px;
	border-bottom: 1px solid #eee;
}

button.mapplic-zoomout-button {
	background-size: 10px 10px;
}

/* Fullscreen */
.mapplic-fullscreen {
	background-color: rgba(248, 248, 248, 0.95);
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100% !important;
	margin: 0 !important;
	max-width: 100% !important;
	max-height: 100% !important;
	z-index: 99980;
}

.mapplic-fullscreen-button {
	background-size: 14px 14px;
	top: 0;
	left: 0;
}

.mapplic-fullscreen-button .mapplic-icon-fullscreen-exit,
.mapplic-fullscreen .mapplic-fullscreen-button .mapplic-icon-fullscreen { display: none; }
.mapplic-fullscreen .mapplic-fullscreen-button .mapplic-icon-fullscreen-exit { display: block; }

.mapplic-fullscreen .mapplic-container { width: 100%; }
.mapplic-fullscreen .mapplic-sidebar { width: 20%; }

/* Levels */
.mapplic-levels {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
	position: absolute;
	top: 0;
	right: 0;
	margin: 12px;
	overflow: hidden;
}

.mapplic-levels > * {
	display: block;
	box-sizing: border-box;
}

.mapplic-levels-select {
	background-color: #fff;
	border: none;
	border-radius: 0;
	color: #2f3435;
	margin: 0;
	padding: 10px 8px;
	margin-right: 20px;
	font-size: 13px;
	font-weight: 600;
	outline: none;
	-webkit-appearance: none;
	visibility: hidden
}

.mapplic-levels button {
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 8px 4px;
	border: none;
	cursor: pointer;
	height: 50%;
	width: 20px;
	position: absolute;
	right: 0;
}

.mapplic-levels .mapplic-levels-down { bottom: 0; }

.mapplic-levels .mapplic-icon {
	width: 8px;
	height: 4px;
	margin: 0;
	margin-left: -4px;
	margin-top: -2px;
	left: 50%;
	top: 50%;
}

.mapplic-levels .mapplic-disabled {
	background-color: #eee;
	cursor: default;
}

/* Sidebar */
.mapplic-sidebar {                     /*************************************************************************/
    background-color: #4d2936;
    width: 20%;
    height: 100%;
    float: right;
	    position: fixed;
	top: 0;
	left: 1700px;
	  -webkit-transform: skew(15deg); /* Chrome, Opera */
      -ms-transform: skew(15deg); /* IE */
          transform: skew(15deg); /* Padrão */
	
}

:-webkit-full-screen .mapplic-sidebar {
 width: 20%;
}

@media (max-width: 667px) {
.mapplic-sidebar {
    visibility: hidden
}
	
	:-webkit-full-screen .mapplic-sidebar {
 width: 5%;
}
}
/* Search */
.mapplic-search-form {
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #f4f4f4;
    padding: 14px 12px;
    margin: 0;
    width: 100%;
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.mapplic-search-input {
    background-image: url(images/viewer.png);
    background-size: 17px 16px;
    background-repeat: no-repeat;
    background-position: 8px;
    border: 2px solid #eee;
    border-radius: 2px;
    font-size: 14px;
    font-family: inherit;
    line-height: 20px;
    height: 38px;
    margin: 0;
    padding: 8px 32px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border-color 0.1s;
    -moz-transition: border-color 0.1s;
    transition: border-color 0.1s;
}
.mapplic-search-input:focus {
    border-color: #6ed8dd;
}
.mapplic-search-clear {
    background-image: url(images/cross.png);
    background-size: 8px 8px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
    border: none;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 14px;
    right: 14px;
    margin: 2px 0;
    width: 34px;
    height: 34px;
}
.mapplic-not-found {
    color: #bbb;
    display: none;
    font-size: 13px;
    padding: 0 30px;
    position: absolute;
    text-align: center;
    top: 100px;
}
/* List */
.mapplic-list-container {
    padding-top: 0px;
    height: 100%;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	
}
.mapplic-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    height: 100%;
}
.mapplic-list-container ol {
    border-color: #eee;
    list-style: none;
    padding: 0;
    margin: 0;
}
.mapplic-list-container li {
    border-color: inherit;
}
.mapplic-list-category > a {                  /*******************************************************************/
    /*background-color: #aeadad;*/
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.05) inset;
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 26px;
    padding: 10px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
font-family: 'Idlewild', sans-serif;
	font-weight: bold;
	letter-spacing: 2.7px;
		  -webkit-transform: skew(-15deg); /* Chrome, Opera */
      -ms-transform: skew(-15deg); /* IE */
          transform: skew(-15deg); /* Padrão */
	opacity: 0;
	visibility: hidden
}
.mapplic-list-category ol {
    border-bottom: 0px solid #eee !important;   /*  linha e scrool */
}
.mapplic-list-thumbnail {
    border-radius: 2px;
    float: left;
    margin-right: 10px;
}
.mapplic-list-category > a .mapplic-list-count {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    float: right;
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    padding: 0 6px;
    margin-left: 10px;
    text-align: center;
    margin-top: 4px;
    -webkit-transition: border-radius 0.2s;
    -moz-transition: border-radius 0.2s;
    transition: border-radius 0.2s;
    visibility: hidden
}
.mapplic-list-location {
    border-bottom: 0px solid #01929d;
    margin: 0;
	
}
.mapplic-list-location > a {
    background-color: #542b3a;                      /***********************************************************************/
    border-left: 1px solid transparent;
    display: block;
    font-size: 14px;
    /*padding: 10px;*/
	padding-right: 10px;
	padding-bottom: 10px;
	padding-top: 10px;
    min-height: 50px;
    -webkit-transition: border 0.2s;
    -moz-transition: border 0.2s;
    transition: border 0.2s;
	padding-left: 40px;
	  -webkit-transform: skew(-15deg); /* Chrome, Opera */
      -ms-transform: skew(-15deg); /* IE */
          transform: skew(-15deg); /* Padrão */
	
}
.mapplic-list-location > a:hover {
    background-color: #transparent;
    border-left: 2px solid;
    border-color: inherit;
    color: #000000
}
.mapplic-list-location h4 {
    color: #ffffff;
    /*font-size: 15px;*/
    font-weight: normal;
    margin: 15px 0 8px 0;
    text-align: left;
	margin-left: 60px;
	margin-top: -35px
}
.mapplic-list-location span { /* 42 -20 13 30*/
    color: #bbb;
    font-size: 13px;
    font-weight: normal;
}
/* Tooltip */
.mapplic-tooltip {
    background-color: #ffffff;
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    display: none;
    max-width: 300px;
    min-width: 120px;
    margin-top: -550px;
	margin-left: -170px;
    padding: 16px;
    position: absolute;
    -webkit-transition: margin 0.1s;
    -moz-transition: margin 0.1s;
    transition: margin 0.1s;
	transform: scale(1.5) !important;
}
.mapplic-tooltip-title {
    color: #000000;
    font-size: 20px;
    font-weight: normal;
    margin: 5px 10px 10px 10px;
	text-align: left
}
.mapplic-hovertip {
    min-width: 30px;
    padding: 6px 14px;
    pointer-events: none;
	opacity: 0
}
.mapplic-hovertip .mapplic-tooltip-title {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
	opacity: 0
}
.mapplic-bottom .mapplic-tooltip-triangle {
    border-color: transparent transparent #fff transparent;
    border-width: 0 7px 8px 7px;
    top: 0;
    margin-top: -8px;
}
.mapplic-tooltip-content {
    max-height: 160px;
    overflow-y: auto;
}
.mapplic-tooltip-content p {
    margin-top: 0;
}
.mapplic-tooltip-image {
    width: 46%;
    height: 100%;
    /*margin: 5px 20px 5px 0;*/
    margin: -16px 16px -16px -16px;
    float: left;
}
.mapplic-tooltip-description, .mapplic-tooltip p {
    color: #aaa;
    font-size: 13px;
    line-height: 20px;
}
.mapplic-tooltip-link {
    background-color: #6CB5F4;
    border-radius: 2px;
    color: #fff !important;
    float: right;
    font-size: 14px;
    line-height: 32px;
    padding: 0 12px;
    margin-top: 10px;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.mapplic-tooltip-link:hover {
    background-color: #888;
}
.mapplic-tooltip img {
    max-width: 100%;
}
.mapplic-tooltip-close {
    background-image: url(images/cross.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 8px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    float: right;
    margin: -10px -14px 0 0;
    padding: 10px 12px;
    width: 10px;
    height: 10px;
    opacity: 0.5;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.mapplic-tooltip-close:hover {
    opacity: 1.0;
}
.mapplic-tooltip-triangle {
    border-color: #ffffff transparent transparent transparent;
    border-style: solid;
    border-width: 8px 7px 0 7px;
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-bottom: -8px;
    margin-left: -7px;
    -webkit-transition: left 0.1s;
    -moz-transition: left 0.1s;
    transition: left 0.1s;
}
/* Tooltip down */
.mapplic-tooltip-down .mapplic-tooltip-triangle {
    border-width: 0 7px 8px 7px;
    border-color: transparent transparent #fff transparent;
    top: 0;
    margin-top: -8px;
}
/* Coordinates */
.mapplic-coordinates {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    position: absolute;
    margin: 10px;
    margin-left: -80px;
    padding: 4px 6px;
    font-size: 14px;
    top: 0;
    left: 50%;
    pointer-events: none;
}

/* Responsive layout */
@media all and (max-width: 667px) {
.mapplic-container,  .mapplic-sidebar {
    width: 100%;
}
.mapplic-tooltip {
    max-width: 240px;
}
.mapplic-minimap {
    width: 120px;
}
.mapplic-element {
    height: auto !important;
}
.mapplic-fullscreen-button {
    display: none;
}
.mapplic-search-form {
    border-right: none;
}
}

/* RETINA */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
.mapplic-search-clear,  .mapplic-tooltip-close {
    background-image: url(images/cross@2x.png);
}
.mapplic-levels .mapplic-levels-up {
    background-image: url(images/arrow-up@2x.png);
}
.mapplic-levels .mapplic-levels-down {
    background-image: url(images/arrow-down@2x.png);
}
a.mapplic-zoomin-button {
    background-image: url(images/plus@2x.png);
}
a.mapplic-zoomout-button {
    background-image: url(images/minus@2x.png);
}
.mapplic-search-input {
    background-image: url(images/viewer@2x.png);
}
.mapplic-pin {
    background-image: url(images/pin@2x.png);
}
.mapplic-pin.orange {
    background-image: url(images/01.png);
}
.mapplic-pin.yellow {
    background-image: url(images/pin-yellow@2x.png);
}
.mapplic-pin.green {
    background-image: url(images/pin-green@2x.png);
}
.mapplic-pin.blue {
    background-image: url(images/pin-blue@2x.png);
}
.mapplic-pin.purple {
    background-image: url(images/pin-purple@2x.png);
}

	.mapplic-pin.red {
    background-image: url(images/santa.png);
}
		.mapplic-pin.pin8 {
    background-image: url(images/unip.png);
}
			.mapplic-pin.pin9 {
    background-image: url(images/tenis.png);
}
				.mapplic-pin.pin10 {
    background-image: url(images/praca.png);
}
				.mapplic-pin.pin11 {
    background-image: url(images/patio.png);
}	
				.mapplic-pin.pin12 {
    background-image: url(images/11.png);
}
					.mapplic-pin.pin13 {
    background-image: url(images/12.png);
}
					.mapplic-pin.pin14 {
    background-image: url(images/13.png);
}
						.mapplic-pin.pin15 {
    background-image: url(images/14.png);
}
						.mapplic-pin.pin16 {
    background-image: url(images/15.png);
}	
						.mapplic-pin.pin17 {
    background-image: url(images/16.png);
}	
	
	
	
	
	
.mapplic-pin.iconpin {
    background-image: url(images/pin-large@2x.png);
}
.mapplic-pin.iconpin.orange {
    background-image: url(images/pin-orange-large@2x.png);
}
.mapplic-pin.iconpin.yellow {
    background-image: url(images/pin-yellow-large@2x.png);
}
.mapplic-pin.iconpin.green {
    background-image: url(images/pin-green-large@2x.png);
}
.mapplic-pin.iconpin.blue {
    background-image: url(images/pin-blue-large@2x.png);
}
.mapplic-pin.iconpin.purple {
    background-image: url(images/pin-purple-large@2x.png);
}
.mapplic-pin.iconpin.red {
    background-image: url(images/santa.png);
}	
.mapplic-pin.iconpin.pin8 {
    background-image: url(images/unip.png);
}	
	.mapplic-pin.iconpin.pin9 {
    background-image: url(images/tenis.png);
}	
		.mapplic-pin.iconpin.pin10 {
    background-image: url(images/praca.png);
}	
			.mapplic-pin.iconpin.pin11 {
    background-image: url(images/patio.png);
}	
			.mapplic-pin.iconpin.pin12 {
    background-image: url(images/11.png);
}	
				.mapplic-pin.iconpin.pin13 {
    background-image: url(images/12.png);
}	
				.mapplic-pin.iconpin.pin14 {
    background-image: url(images/13.png);
}	
				.mapplic-pin.iconpin.pin15 {
    background-image: url(images/14.png);
}	
				.mapplic-pin.iconpin.pin16 {
    background-image: url(images/15.png);
}	
				.mapplic-pin.iconpin.pin17 {
    background-image: url(images/16.png);
}	
	
	
	
	
.mapplic-clear-button {
    background-image: url(images/reset@2x.png);
}
}
/* Map */
.mapplic-element svg {
    width: 0%;
    height: 0%;
}
.mapplic-element svg a {
    cursor: pointer;
}
.mapplic-active, a.mapplic-active > path, g.mapplic-active > * {
    fill: #343F4B;
    opacity: 1.0;
}
.mapplic-clickable:not(g), g.mapplic-clickable > * {
    cursor: pointer;
    opacity: 0.4;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.mapplic-clickable:not(g):hover, g.mapplic-clickable:hover > * {
    opacity: 0.8;
}
.mapplic-map-image *[id^=nopointer] {
    pointer-events: none;
}
[id^=landmarks] .mapplic-clickable {
    cursor: pointer;
}

/* Default color - Disable this if you want to use the colors from your SVG file! */
/*
.mapplic-clickable,
g.mapplic-clickable > * {
	fill: #4d5e6d;
}




.mapplic-list::-webkit-scrollbar-track {
    background-color: #F4F4F4;
}
.mapplic-list::-webkit-scrollbar {
    width: 6px;
    background: #F4F4F4;
}
.mapplic-list::-webkit-scrollbar-thumb {
    background: #dad7d7;
}*/



.mapplic-list::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
 background-color: #4d2936;
 border-radius: 10px;
}
.mapplic-list::-webkit-scrollbar {
 width: 10px;
 background-color: #4d2936;
}
.mapplic-list::-webkit-scrollbar-thumb {
 border-radius: 10px;
 background-color: #4d2936;
 background-image: -webkit-gradient(linear,  40% 0%,  75% 84%,  from(#4d2936),  to(#4d2936),  color-stop(.6, #4d2936))
}


.mapplic-list-category {visibility: hidden}
.mapplic-list-expandable {visible:hidden; max-height:1px}