.sgmp-map {
    width: 100%;
    height: 350px;
}

.sgmp-tooltip {
    width: 100%;
    background-color: #c41919;
    color: #fff;
    line-height: 1.2em;
    padding: 8px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
	font-weight: bold;
}

.sgmp-tooltip ol{
	list-style-position: outside;
	line-height: 1.3em;
	padding-bottom: 4px;
}

.sgmp-tooltip ol li{
    margin-left: 23px;
}

/*.sgmp-tooltip li:before {
  flex: 0 0 40px;
}*/

input.sgmp-address {
    width: 68%;
    margin-top: 8px;
    padding: 6px;
    border-radius: 3px;
    float: left;
}

.sgmp-find-address {
    width: 120px;
    height: 30px;
    background-color: #c41919;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 4px;
    border: none;
    border-radius: 8px;
    float: right;
    margin-top: -16px;
}

.clear-polylines-btn {
	background-color: #e9e9e9;
	color:#000;
	font-weight: bold;
	border: none;
    border-radius: 3px;
	margin-top:4px;
	margin-left:3px;
} 

.save-snapshot-btn {
	background-color: #c41919;
	color:#fff;
	font-weight: bold;
	border: none;
    border-radius: 3px;
	margin-top:2px;
}

.save-snapshot-btn::before {
    background-image: url('save-icon.png');
    background-size: 10px 10px;
    display: inline-block;
    width: 10px; 
    height: 10px;
    content:"";
	margin-right:4px;
}

#snapshot-container {
	display: inline-flex;
	float: left;
	padding-top:2px;
}

#snapshot-container a:link,  #snapshot-container a:visited{
	color: #c41919;
	font-size:12px;
	padding-left: 4px;
}

.sgmp-distance {
    font-weight: bold;
    clear: both;
	float: left;
	width: 50%;
	padding-top:2px;
}

.sgmp-wrap {
	width: 50%;
}

/* Loading spinner styles */
#loading-spinner {
    display: none; /* Hidden by default */
    width: 20px;
    height: 20px;
    margin: 3px 0px 0px 20px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #c41919;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}