html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  font-size: 100%;
}
*, *:before, *:after { -webkit-box-sizing: inherit; box-sizing: inherit; }

body {
  /* height: 100%;
  padding: 2rem; */
  font: 100%/1.375em 'Roboto', sans-serif;
  background: #fcfcfc;
}

ul {
  list-style-type: none;
}

h1 {
  color: #699741;
  font-weight: bold;
  font-size: 180%;
  line-height: 1em;
  text-transform: uppercase;
  text-align: center;
}
h2 {
  color: #699741;
  font-weight: bold;
  font-size: 120%;
  line-height: 1em;
}
h1,
h2,
p { margin-bottom: 1.375rem; }

.button {
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #699741;
}
.button:hover { background: #699741; }

.map-list {
  position: relative;
  margin: 1.375em;
  background: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.3);
          box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.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 .button {
  position: absolute;
  top: 50%;
  right: 1.375em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width:600px) {
  .map-list {
    height: 0;
    padding-top: 64%;
    background-image: url(https://upload.wikimedia.org/wikipedia/commons/6/6d/Blank_Spain_Map_%28Autonomous_Communities%29_with_the_neighbouring_countries.svg);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: 50% 100%;
    border: 0.5em solid #eee;
  }
  .map-list li {
    position: absolute;
    padding: 0;
    -webkit-transform: translateZ(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;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    background: #fff;
    border: 0.5em solid #699741;
    border-radius: 50%;
    border-bottom-right-radius: 0;
    cursor: pointer;
  }
  .map-list li:hover { z-index: 1; }
    
    /* GUADALAJARA */
    .map-list li.gu1 { bottom: 64%; left: 45%; }
    .map-list li.gu2 { bottom: 57%; left: 47%; }
    .map-list li.gu3 { bottom: 62%; left: 47.5%; }
    .map-list li.gu4 { bottom: 60%; left: 50%; }
    .map-list li.gu5 { bottom: 63%; left: 52%; }
    
    /* ALBACETE */
    .map-list li.ab1 { bottom: 43%; left: 49.5%; }
    .map-list li.ab2 { bottom: 38%; left: 51%; }
    .map-list li.ab3 { bottom: 42%; left: 54%; }
    
    /* SEVILLA */
    .map-list li.se1 { bottom: 31%; left: 30%; }
    .map-list li.se2 { bottom: 25%; left: 32%; }
    .map-list li.se3 { bottom: 28%; left: 36%; }
    .map-list li.se4 { bottom: 35%; left: 35%; }
    
    /* CANARIAS */
    .map-list li.ca1 { bottom: 10%; left: 75%; }
    
    /* ALICANTE */
    .map-list li.a1 { bottom: 40%; left: 62%; }
    .map-list li.a2 { bottom: 40%; left: 58.5%; }
    .map-list li.a3 { bottom: 35%; left: 58%; }
    
    /* GRANADA */
    .map-list li.gr1 { bottom: 28%; left: 45%; }
    .map-list li.gr2 { bottom: 25%; left: 42%; }
    .map-list li.gr3 { bottom: 22%; left: 47%; }
    .map-list li.gr4 { bottom: 22.5%; left: 44%; }
    .map-list li.gr5 { bottom: 30%; left: 49.5%; }
    .map-list li.gr6 { bottom: 26.5%; left: 48%; }
    
    /* BADAJOZ */
    .map-list li.ba1 { bottom: 40%; left: 27%; }
    
    /* ALMERIA */
    .map-list li.al1 { bottom: 22%; left: 50.5%; }
    .map-list li.al2 { bottom: 26%; left: 51.5%; }
    
    /* CÓRDOBA */
    .map-list li.co1 { bottom: 31%; left: 40%; }
    
    /* BARCELONA */
    .map-list li.br1 { bottom: 70%; left: 73%; }
    
    /* ÁVILA */
    .map-list li.av1 { bottom: 60%; left: 35%; }
    
    /* SEGOVIA */
    .map-list li.sg1 { bottom: 68%; left: 40%; }
    
    /* CÁDIZ */
    .map-list li.cd1 { bottom: 19%; left: 30%; }
    .map-list li.cd2 { bottom: 16%; left: 32%; }
    
    /* .map-list li.prairies { bottom: 68%; left: 40%; } */
    /* .map-list li.central { bottom: 30%; left: 35%; } */
    /* .map-list li.east { bottom: 45%; left: 54%; } */
    
    
  .map-list .details {
    padding: 1rem;
    margin-bottom: 1rem;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
    font-size: 75%;
    background: #eee;
    border-radius: 0.5em;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.15);
            box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    opacity: 0;
    -webkit-transition: opacity 500ms, -webkit-transform 400ms cubic-bezier(0.6,-0.3,0.3,1.3);
    transition: opacity 500ms, -webkit-transform 400ms cubic-bezier(0.6,-0.3,0.3,1.3);
    transition: opacity 500ms, transform 400ms cubic-bezier(0.6,-0.3,0.3,1.3);
    transition: opacity 500ms, transform 400ms cubic-bezier(0.6,-0.3,0.3,1.3), -webkit-transform 400ms cubic-bezier(0.6,-0.3,0.3,1.3);
  }
    
  .map-list li:hover .details {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
    
    /* CUADROS DE INFO HACIA LA IZQUIERDA */
    .map-list li.central .details,
    .map-list li.gu1 .details,
    .map-list li.gu2 .details,
    .map-list li.ab1 .details,
    .map-list li.ab2 .details,
    .map-list li.se1 .details,
    .map-list li.se2 .details,
    .map-list li.se3 .details,
    .map-list li.se4 .details,
    .map-list li.a2 .details,
    .map-list li.a3 .details,
    .map-list li.gr1 .details,
    .map-list li.gr2 .details,
    .map-list li.gr3 .details,
    .map-list li.gr4 .details,
    .map-list li.gr5 .details,
    .map-list li.gr6 .details,
    .map-list li.ba1 .details,
    .map-list li.al1 .details,
    .map-list li.al2 .details,
    .map-list li.co1 .details,
    .map-list li.av1 .details,
    .map-list li.cd1 .details,
    .map-list li.cd2 .details,
    
  .map-list li.east .details {
    position: absolute;
    bottom: 0;
    right: 100%;
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    white-space: nowrap;
  }
    
    
  .map-list p { margin-bottom: 0.25rem; }
  .map-list .button {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
}

@media (max-width:480px) {
  body { padding: 2rem 1rem; }
  
  .map-list { margin: 1.375em 0; }
  .map-list p { margin-bottom: 0.5rem; }
  .map-list .button {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
}