@charset "utf-8";

div.map {
	height: 100%;
	overflow: hidden;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
	position: relative;
	background-color: #fff;
}
div.map table {
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
div.map .loader {
	position:absolute;
}
div.map .mask {
	position:relative;
}
div.map .wrapper {
	position:relative;
	cursor: url(https://www.google.com/intl/en_ALL/mapfiles/openhand.cur), pointer;
}
div.map .wrapperPressed {
	cursor: url(https://www.google.com/intl/en_ALL/mapfiles/closedhand.cur), pointer;
}
div.map .btnsPanel {
	display: flex;
	flex-direction: column;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 3;
}
div.map .btnsPanel a.upBtn,
div.map .btnsPanel a.rightBtn,
div.map .btnsPanel a.downBtn,
div.map .btnsPanel a.leftBtn ,
div.map .btnsPanel a.centerBtn,
div.map a.iBtn {
	display:block;
	position:absolute;
	margin:0;
	width:25px;
	height:25px;
}

div.map a.zoomInBtn, 
div.map a.zoomOutBtn {
	margin:0;
	width:25px;
	height:25px;
}

div.map .btnsPanel a.upBtn  {
	margin:6px 0 0 42px;
	background: transparent url('img/arrow-up.png') no-repeat;
}

div.map .btnsPanel a.rightBtn  {
	margin:37px 0 0 72px;
	background: transparent url('img/arrow-right.png') no-repeat;
}

div.map .btnsPanel a.downBtn  {
	margin:68px 0 0 42px;
	background: transparent url('img/arrow-down.png') no-repeat;
}

div.map .btnsPanel a.leftBtn  {
	margin:37px 0 0 10px;
	background: transparent url('img/arrow-left.png') no-repeat;
}

div.map .btnsPanel a.centerBtn  {
	margin:37px 0 0 42px;
	background: transparent url('img/center-pos.png') no-repeat;
}

div.map .btnsPanel a.zoomInBtn  {
	border-radius: 6px 6px 0 0;
	width:39px;
	height:39px;
	border:1px SOLID #DFDFDF;
	background: #fff url('img/zoom-in.png') center no-repeat;
	-webkit-box-shadow: 0px 3px 6px #00000029;
	-moz-box-shadow:    0px 3px 6px #00000029;
	box-shadow:         0px 3px 6px #00000029;
}

div.map .btnsPanel a.zoomOutBtn {
	border-radius: 0 0 6px 6px;
	width: 39px;
	height: 39px;
	border: 1px SOLID #DFDFDF;
	background: #fff url('img/zoom-out.png') center no-repeat;
	-webkit-box-shadow: 0px 3px 6px #00000029;
	-moz-box-shadow:    0px 3px 6px #00000029;
	box-shadow:         0px 3px 6px #00000029;
}

div.map a.iBtn  {
	background-position: -210px top;
	left:20px;
	top:20px;
	z-index:4;
}
div.map a:active.iBtn  {
	background-position: -210px bottom;
	z-index:6;
}

div.map div.loader {
	position:absolute;
	display:none;
	top:0;
	left:0;
	width:1px;
	height:1px;
	background:#fff url('img/loader.gif') center no-repeat;
	z-index:1000;
}

.tooltip {
        background-color: #FFFFFF;
        box-shadow: 1px 0 10px 1px #4E4E4E;
	padding:12px 12px 12px 12px;
	position:absolute;
	margin:0;
	color:#000;
	font-size:11px;
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-khtml-border-radius: 6px;
	border-radius: 6px;
	z-index:100;
        width:220px;
        min-height:60px;
        opacity:0;
}
.tooltip .img {
    padding-bottom:10px;
    margin-bottom:10px;
    border-bottom: 1px solid #C2C2C2;
    width:220px;
    height:77px;
    background-position: center;
    background-repeat: no-repeat;
    
}
.tooltip p.cName {
    font-size:14px;
    font-weight:bold;
    display:block;
    color:#000;
}
.tooltip p.cDesc {
    font-size:11px;
    display:block;
    color:#3a3937;
}

.logotypes {
	position:absolute;
	z-index:2;
    display:none;
}
.map .logotypes a {
	position:absolute;
	display:block;
	width:90px;
	height:50px;
        background-size:contain;
	-moz-box-shadow: 1px 0 10px 1px #4e4e4e;
	-webkit-box-shadow: 1px 0 10px 1px #4e4e4e;
	box-shadow: 1px 0 10px 1px #4e4e4e;
	background-position:center;
	background-repeat:no-repeat;
	background-color:#fff;
}
.logotypes a.stand_2 {
	width:110px;
	height:55px;
}
.logotypes a.stand_3 {
	width:145px;
	height:75px;
}
@media screen and (max-width: 768px) {
	.logotypes a.stand_2 {
		width: 50px !important;
		height: 25px !important;
	}
	.logotypes a.stand_3 {
		width: 50px !important;
		height: 25px !important;
	}
}

.floatL {
	float:left;
}
.floatR {
	float:right;
}
.lastElem {
	margin-right:0;
}
.error {  
	color:red;  
}  
.exClear {
	clear:both;
}