.map {
    position: relative;
    width: 100%;
    width: 100vh;
    max-width: 100%;
    height: 100%;
    height: 100vh;
    max-height: 100vw;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
}

.map-canvas {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.map-sr-only {
	width: 1px;
	height: 1px;
	position: absolute;
	outline: 0;
	opacity: 0;
	visibility: hidden;
}

.map-center {
    text-align: center;
}

.map-row {
    display: flex;
    justify-content: space-between;
}

.map-col {
    flex: 1;
}

.map-col + .map-col {
    margin-left: 50px;
}

.map-col .map-col + .map-col {
    margin-left: 20px;
}

.map-title {
    margin: 0 0 20px;
    font-size: 1rem;
    text-align: center;
    font-weight: 800;
}

.map-image {
	display: block;
}

.map-image path, .map-image circle{
	fill:none;
	stroke:#434343;
	stroke-miterlimit:10;
}

.map-btn {
    border: 2px solid #97d045;
    background: #fff;
    text-transform: uppercase;
    color: #3a3a3a;
    font-size: .875rem;
    line-height: 1em;
    padding: .75em 5em;
    cursor: pointer;
    outline: 0;
    transition: .2s ease-in-out;
    font-weight: 700;
}

.map-btn:hover {
    background: #97d045;
}

.map-btn--primary {
    background: #97d045;
}

.map-btn--primary:hover {
    background: #fff;
}

.map-location {
    margin: 0;
    padding: 0;
    list-style: none;
}

.map-location-item {
    margin-bottom: 10px;
}

.map-location-opener {
    text-transform: uppercase;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    background: #97d045;
    display: block;
    line-height: 2.4rem;
    text-align: center;
    position: relative;
}

.map-location-opener::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: #3a3a3a url('../img/icon-dropdown.png') 50% 50% no-repeat;
}

.map-location-opener.is-open::after {
    content: "—";
	background-image: none;
    color: #777;
}

.map-location-opener.is-open ~ .map-country {
    visibility: visible;
    max-height: 400px;
}

.map-country {
    transition: .2s ease-in-out;
    max-height: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.map-country-divide {
	flex-flow: row wrap;
}

.map-country-divide > * {
	width: calc(50% - 20px);
	margin: 0 10px;
}

.map-country-link,
.map-link {
    display: block;
    text-align: center;
    font-size: .75rem;
    padding: .6em 0;
    border-bottom: 1px solid #ebebeb;
    text-transform: uppercase;
    text-decoration: none;
    color: #878787;
    font-weight: 400;
    transition: .2s ease-in-out;
}

.map-country-link:hover,
.map-link:hover,
.map-country-link.is-active,
.map-link.is-active {
    color: #97d045;
}

.map-search {
    background: rgba(255, 255, 255, .75);
    padding: 10px 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	max-width: 34%;
	width: 100vw;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 40px;
	height: 50px;
	box-sizing: border-box;
	transition: .4s ease-in-out;
}

.map-search.has-focus,
.map-search.has-content {
	max-width: 37%;
}

.awesomplete {
	width: calc(100% - 42px)
}

.map-search-field {
    border: 0;
    background: transparent;
    outline: 0;
    color: #3a3a3a;
    font-weight: 500;
    font-size: 0.9rem;
	height: 32px;
	line-height: 32px;
	padding: 0;
	transition: .4s ease-in-out;
	width: 100%;
}
.map-search-address {
	font-size: .8em;
	color: #3a3a3a;
}

.map-search-field::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #878787;
  font-weight: 500;
}
.map-search-field::-moz-placeholder { /* Firefox 19+ */
  color: #878787;
  font-weight: 500;
}
.map-search-field:-ms-input-placeholder { /* IE 10+ */
  color: #878787;
  font-weight: 500;
}

.map-search-go {
	padding: 0;
    border: 0;
    background: transparent;
    outline: 0;
	cursor: pointer;
	margin-left: 10px;
	transition: .2s ease-in-out;
}

.map-search-go .map-image {
	stroke: #3a3a3a !important;
}

.map-search-go:hover,
.map-search-go:focus {
	opacity: .7;
}

.awesomplete ul {
	position: absolute;
	left: 0;
	right: 0;
	top: 50px;
	margin: 0;
	list-style: none;
	padding: 6px 0;
	background: rgba(255, 255, 255, .75);
	transition: .4s ease-in-out;
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.awesomplete ul[hidden] {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
}

.awesomplete .visually-hidden {
	position: absolute;
	clip: rect(0, 0, 0, 0);
}

.awesomplete mark {
	color: inherit;
	text-decoration: underline;
	background: none;
}

.awesomplete small {
	text-transform: capitalize;
}
