.map-list-content {
  box-sizing: border-box;
  height: 100%;
  font-size: 100%;
}
.map-list-content:before, .map-list-content:after { box-sizing: inherit; }

.map-list-content {
  height: 100%;
  padding: 2rem;
  font-family: Open sans;
  background: #fff;
}

.map-list-content h1 {
  color: #da3b44;
  font-weight: bold;
  font-size: 180%;
  line-height: 1em;
  text-transform: uppercase;
  text-align: center;
}
.map-list-content .country-label {
  color: #da3b44;
  font-weight: bold;
  font-size: 180%;

}
.map-list-content h2 {
  color: #da3b44;
  font-weight: bold;
  font-size: 120%;
  line-height: 1em;
}
.map-list-content h1,
.map-list-content h2,
.map-list-content p { margin-bottom: 1.375rem; font-size: 13px;}
.map-list-content .contact-points a:nth-child(2) {
 padding: 5px 0px 5px 10px;
}
.map-list-content .contact-points a {
    font-size: 13px;

}
.map-list-content . button {
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #da3b44;
}
.map-list-content . button:hover { background: #b10; }

.map-list {
  position: relative;
  margin: 1.375em;
  background: #fff;

}
.map-list li {
  position: relative;
  padding: 1.375em;
}
.map-list li:nth-child(even) { background: #eee; }
.map-list h2,
.map-list p { margin-bottom: 0; line-height: 1.375em; }
.map-list .map-list-content . button {
  position: absolute;
  top: 50%;
  right: 1.375em;
  transform: translateY(-50%);
}

@media (min-width:600px) {
  .map-list {
    height: 0;
    padding-top: 50%;
    background-image: url(https://natopart.com/modules/blockmapcontent/images/globe.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0% 100%;

  }
  .map-list li {
    position: absolute;
    padding: 0;
    transform: translateZ(0);
	
  }
  .map-list li:nth-child(even) { background: none; }
  .map-list li:after {
    position: absolute;
    bottom: 0;
    left: -1.5em;
    content: '';
    display: block;
    width: 1.5em;
    height: 1.5em;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
    background: #fff;
    border: 0.5em solid #da3b44;
    border-radius: 50%;
    border-bottom-right-radius: 0;
    cursor: pointer;
	  animation: pulse 2s infinite;
  }
  .map-list li:hover { z-index: 1; }
  .map-list li.west { bottom: 60%; left: 48%; }
  .map-list li.prairies { bottom: 38%; left: 30%; }
  .map-list li.central {bottom: 56%; left: 46%;}
  .map-list li.east { bottom: 55%; left: 25%; }
  .map-list .details {
    padding: 1rem;
    margin: 1rem;
    transform: scale(0);
    transform-origin: 0 100%;
    font-size: 75%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 500ms, transform 400ms cubic-bezier(0.6,-0.3,0.3,1.3);
  }
  .map-list li:hover .details {
    transform: scale(1);
    opacity: 1;
  }
  .map-list li.central .details,
  .map-list li.east .details {
    position: absolute;
    bottom: 0;
    right: 100%;
    transform-origin: 100% 100%;
    white-space: nowrap;
  }
  .map-list p { margin-bottom: 0.25rem; }
  .map-list .map-list-content . button {
    position: static;
    transform: none;
    width: 100%;
  }
  
  @-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(218,59,68, 0.5);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(218,59,68, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(218,59,68, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(218,59,68, 0.5);
    box-shadow: 0 0 0 0 rgba(218,59,68, 0.5);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(218,59,68, 0);
      box-shadow: 0 0 0 10px rgba(218,59,68, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(218,59,68, 0);
      box-shadow: 0 0 0 0 rgba(218,59,68, 0);
  }
}

}

@media (max-width:480px) {
  body { padding: 2rem 1rem; }
  
  .map-list { margin: 1.375em 0; }
  .map-list p { margin-bottom: 0.5rem; }
  .map-list .map-list-content . button {
    position: static;
    transform: none;
    width: 100%;
  }
}