/**
* Vyhledání na mapě
* 
* Knihovna pro vyhledání na mapě pomocí Google Places API
* 
* @category   Komponenty
* @copyright  Copyright (c) 2016 Foxtrot Technologies s.r.o. (www.foxtrot.cz)
* @version    1.2, 2023-02-09
*/

.foxMapSearch_mapIcon {
    width: 2.8vw;
	height: 2.8vw;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	cursor: pointer;    
    background-image: url("images/search_icon.svg");
}

.foxMapSearch_mapIcon:hover {
    background-image: url("images/search_icon_hover.svg");
}

.foxMapSearch_input {
	display: block;
	width: 100%;
	padding: 0 1vw 0 0;
	outline: none;
	color: #7e7e7e;
	border: none;    
}

.foxMapSearch_input::placeholder {
    color: #c9c8c8;
    font-family: 'Avenir';
    font-size: 12pt;
    font-weight: normal;    
}

.foxMapSearch_searchPointOverlayCont {
    background-color: #fff;
    color: black;
	border: solid 1px #212121;
	padding: 0.3vw;
	display: flex;
	flex-direction: column;
	cursor: default;
}

.foxMapSearch_searchPointOverlayCont:before {
    border-bottom: 12px solid #212121;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    content: "";
    position: absolute;
    top: -12px;
    margin-left: -14px;
    left: 50%;
}

.foxMapSearch_searchPointOverlayTB {
	display: flex;
	flex-direction: row;
	height: 2vw;
	align-items: center;
}

.foxMapSearch_searchPointOverlayName {
	font-family: 'AvenirDemi';
	font-size: 11pt;
	color: #212121;
	margin: 0 1vw 0 0;
}

.foxMapSearch_searchPointOverlayType {
	font-family: 'Avenir';
	font-size: 9pt;
	font-style: italic;
	color: #ae0909;
	margin: 0 0.5vw 0 0;
}

.foxMapSearch_searchPointOverlayClose {
	font-family: 'Avenir';
	height: 1.5vw;
	width: 1.5vw;
	border-radius: 50%;
	background-color: #fff;
	color: #212121;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.1vw 0 0 0;
	font-size: 14pt;
	flex: 0 0 1.5vw;
}

.foxMapSearch_searchPointOverlayClose:hover {
	color: #fff;
	background-color: #7e7e7e;
}

.foxMapSearch_searchPointOverlayPhotoCont {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 1vh 0 0 0;
}

.foxMapSearch_searchPointOverlayPhoto {
	height: 5vh;
}

.foxMapSearch_searchPointOverlayDesc, .foxMapSearch_searchPointOverlayDescStandalone {
    line-height: 1.2vw;
    font-size: 10pt;
    margin: 1vh 0 0 0;
    color: #7e7e7e;
    max-width: 20vw;
    max-height: 20vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.foxMapSearch_searchPointOverlayAttribution {
	font-family: 'Avenir';
	text-align: right;
}

.foxMapSearch_searchPointOverlayAttribution a, .foxMapSearch_searchPointOverlayLink a {
	font-family: 'Avenir';
	font-size: 8pt;
	color: #144ad8;
	text-decoration: underline;
}