/**********************************************
************** All **********************
***********************************************/
body{
  background-image: url('../images/paper-bg.png');
  background-repeat: repeat;
}
p{
  margin: 15px 0;
}
.question {
    text-align: center;
    font-family: 'Lekton', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}
.number {
    color: #226c5d;
}
.question h2{
  color: #dc0334;
}
.question h2 small{
  color: #dc0334;
}
.top{
  margin-top: 2%; 
}
.bottom{
  margin-bottom: 2%; 
}
/**********************************************
************** tooltips info ******************
**********************************************/
.more-info .cd-single-point {
  position: absolute;
  border-radius: 50%;
}
#section02 .more-info .cd-single-point {
  bottom: 15%;
  left: 10%;
}
#section04 .more-info .cd-single-point {
  bottom: 5%;
  right: 15%;
}
#section05 .more-info .cd-single-point {
  bottom: 15%;
  left: 15%;
}
.cd-more-info {
    background-size: 100%;
    background-position: center;
}
.more-info .cd-single-point > a {
  position: relative;
  z-index: 2;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: inherit;
  background: #dc0034;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;*/
  -webkit-box-shadow: 0px 0px 0px 16px rgba(220,0,51,0.2);
-moz-box-shadow: 0px 0px 0px 16px rgba(220,0,51,0.2);
box-shadow: 0px 0px 0px 16px rgba(220,0,51,0.2);
  transition: background-color 0.2s;
}
.more-info .cd-single-point > a::after, .more-info .cd-single-point > a:before{
  /* rotating plus icon */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.more-info .cd-single-point > a::after {
  height: 6px;
  width: 40px;
}
.more-info .cd-single-point > a::before{
  height: 40px;
  width: 6px;
}
.more-info .cd-single-point::after {
  /* this is used to create the pulse animation */
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-color: transparent;
  /*-webkit-animation: cd-pulse 2s infinite;
  -moz-animation: cd-pulse 2s infinite;
  animation: cd-pulse 2s infinite;*/
}
.more-info .cd-single-point.is-open > a {
  background-color: #dc0034;
}
.more-info .cd-single-point.is-open > a::after, .more-info .cd-single-point.is-open > a::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.more-info .cd-single-point.is-open::after {
  /* remove pulse effect */
  display: none;
}
.more-info .cd-single-point.is-open .cd-more-info {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
.more-info .cd-single-point.visited > a {
  background-color: #dc0034;
}
.more-info .cd-single-point.visited::after {
  /* pulse effect no more active on visited elements */
  display: none;
}

/**********************************************
************** Haader **********************
***********************************************/
#header{
  height: 100vh;
  background-image: url('../images/bg-header.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.logo img {
    width: 25%;
    margin: 0 auto;
    display: block;
    padding: 3% 0;
}
.title img {
    margin: 0 auto;
    display: block;
}
.title h1 {
    color: white;
    text-align: center;
    padding: 3% 0;
    font-size: 50px;
    font-family: 'Lekton', sans-serif;
    letter-spacing: 4px;
    line-height: 63px;
}
.title h1 span {
    font-family: 'Dancing Script', cursive;
    font-size: 82px;
    letter-spacing: 0px;
}
.title h1 span small {
    color: white !important;
    font-size: 40px !important;
}
.title h1 b {
    font-size: 90px;
    line-height: 90px;
    font-weight: 700;
}
#header a {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font: normal 400 20px/1 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
}
#header a {
  padding-top: 70px;
}
#header a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/**********************************************
************** Section 1 **********************
***********************************************/
#section01{
  height: 100vh;
  background-image: url('../images/bg-section01.png');
  background-size: 102%;
  background-repeat: no-repeat;
  background-position: top;
  padding: 5% 0;
  position: relative;
}
.image-text img {
    width: 100%;
}
#section01 a {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font: normal 400 20px/1 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
}
#section01 a {
  padding-top: 40px;
}
#section01 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 4px solid #000;
  border-bottom: 4px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
.text-intro {
    text-align: center;
    font-family: 'Lekton', sans-serif;
    font-size: 23px;
    line-height: 30px;
}
.text-intro p{
  margin: 15px;
}
.text-intro p strong{
  font-weight: 700;
}

/**********************************************
************** Section 1 y 2 **********************
***********************************************/
#section02{
  position: relative;
}
#section02, #section03, #section05, #section06{
  /*height: 100vh;*/
  padding: 2% 0;
}
.winner {
    text-align: center;
    font-size: 40px;
    font-family: 'Lekton', sans-serif;
    font-weight: 700;
    margin: 5% 0;
}
/*.list li {
    font-size: 25px;
    font-family: 'Lekton', sans-serif;
    font-weight: 100;
    float: left;
    margin: 20px;
    text-align: right;
    width: auto;
}
ul.list li.last span {
    padding: 6px !important;
}
ul.list li span {
    background: #dc0034;
    padding: 4px 10px;
    border-radius: 50%;
    margin-right: 5px;
    color: white;
}*/
.list-city {
    font-family: 'Lekton', sans-serif;
    font-size: 21px;
    text-align: left;
}
.list-city .city {
    padding: 2% 0;
    text-align: center;
}
.list-city .city span{
   background: #dc0034;
    padding: 4px 9px;
    border-radius: 50%;
    margin-right: 5px;
    color: white;
}
.list-city .city.last span {
    padding: 6px !important;
}
/**********************************************
************** Section 4 **********************
***********************************************/
#section04{
  position: relative;
}
.flex-wrapper {
  display: flex;
  flex-flow: row nowrap;
}
.single-chart {
  width: 70%;
  justify-content: space-around;
  margin: 0 auto;
}
.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 80%;
  max-height: 250px;
}
.circle-bg {
  fill: none;
  stroke: #ffffff;
  stroke-width: 4;
}
.circle {
  fill: none;
  stroke-width: 4;
  /*stroke-linecap: round;*/
  animation: progress 1s ease-out forwards;
}
@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}
.circular-chart.orange .circle {
  stroke: #f9a10c;
}
.circular-chart.green .circle {
  stroke: #009333;
}
.percentage {
    font-size: 60px;
    text-anchor: middle;
    font-family: 'Lekton', sans-serif;
    font-weight: 700;
}
.genero{
  font-size: 30px;
  text-anchor: middle;
  font-family: 'Lekton', sans-serif;
  font-weight: 700;
}
.img-hombre img {
  width: 100%;
}
.img-mujer img {
  width: 80%;
}


/**********************************************
************** Section 5 **********************
***********************************************/
#section05{
  position: relative;
}
#canvas1 {
    width: 450px !important;
    height: 450px !important;
}
.doughnut-chart{
  padding: 5% 0;
  position: relative;
}
.doughnut-chart canvas{
  margin: 0 auto;
  display: block;
}
.label-chart {
    width: auto;
    position: absolute;
}
.label-chart img{
  float: left;
}
.label-chart .text-label{
  float: left;
}
.text-label{
  font-family: 'Lekton', sans-serif;
  
}
.text-label p{
  font-size: 40px;
  font-weight: 700;
}
.label-chart:nth-of-type(1) {
    top: 4%;
    right: 22%;
    color: #14c9c9;
}
.label-chart:nth-of-type(2) {
    top: 27%;
    right: 4%;
    color: #ffa60d;
}
.label-chart:nth-of-type(3) {
    top: 65%;
    right: 11%;
    color: #ff0032;
}
.label-chart:nth-of-type(4) {
    bottom: 6%;
    left: 16%;
    color: #44e389;
}
.label-chart:nth-of-type(5) {
    bottom: 50%;
    left: 8%;
    color: #00fcfc;
}
.label-chart:nth-of-type(6) {
    top: 10%;
    left: 16%;
    color: #ffd600;
}
.text-label small {
    font-weight: 800;
    color: #000000;
}
.left{
  margin-top: 20px;
  margin-left: 10px;
}
.right{
  margin-top: 20px;
  margin-right: 10px;
}
/**********************************************
************** Section 6 - Device Chart *******
***********************************************/
.chart-device {
  padding: 4% 0 15% 0;
}
#section07{
  /*height: 100vh;*/
  background-image: url('../images/bg-section06.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}

/**********************************************
********************** FOOTER *****************
***********************************************/
footer{
  background-image: url('../images/bg-footer.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.text-footer {
    padding: 12% 0 5% 0;
    font-family: 'Lekton', sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 70px;
}
.logo-juegos {
  width: 50%;
  margin-bottom: 2%;
}
.logoir{
  width:20%;
  margin-top: 0%;
}

/**********************************************
************** Section 3 - MAPA ***************
***********************************************/
#section04{
  padding: 2% 0;
}
.cd-more-info.cd-left {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cd-product-wrapper {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}
.cd-product-wrapper > img {
  display: block;
  width: 100%;
}
.cd-img-replace {
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
#map .cd-single-point, #home .cd-single-point {
  position: absolute;
  border-radius: 50%;
}
#map .cd-single-point > a, #home .cd-single-point > a {
  position: relative;
  z-index: 2;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: inherit;
  background: #ff8100;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
#map .cd-single-point > a::after, #map .cd-single-point > a:before {
  /* rotating plus icon */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#map .cd-single-point > a::after {
  height: 2px;
  width: 12px;
}
#map .cd-single-point > a::before {
  height: 12px;
  width: 2px;
}
#map .cd-single-point::after {
  /* this is used to create the pulse animation */
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-color: transparent;
  -webkit-animation: cd-pulse 2s infinite;
  -moz-animation: cd-pulse 2s infinite;
  animation: cd-pulse 2s infinite;
}
/************************************
*********** botones mapa ************
*************************************/
#map .cd-single-point:nth-of-type(1) {
  top: 20%;
  left: 30%;
}
/*  */
#map .cd-single-point:nth-of-type(2) {
  top: 14%;
  left: 40%;
}

#map .cd-single-point:nth-of-type(3) {
  top: 12%;
  right: 50%;
}
#map .cd-single-point:nth-of-type(4) {
      top: 15%;
    left: 55%;
}
#map .cd-single-point:nth-of-type(5) {
    top: 20%;
    right: 37%;
}
#map .cd-single-point:nth-of-type(6) {
        top: 25%;
    right: 42%;

}
#map .cd-single-point:nth-of-type(7) {
    top: 30%;
    left: 65%;
}

#map .cd-single-point:nth-of-type(8) {
        top: 27%;
    right: 20%;
}
#map .cd-single-point:nth-of-type(9) {
        top: 50%;
    right: 30%;
}
#map .cd-single-point:nth-of-type(10) {
        top: 50%;
    right: 40%;
}
#map .cd-single-point:nth-of-type(11) {
    bottom: 57%;
    left: 49%;
}
#map .cd-single-point:nth-of-type(12) {
        bottom: 65%;
    left: 40%;
}
#map .cd-single-point:nth-of-type(13) {
        bottom: 45%;
    left: 40%;
}
#map .cd-single-point:nth-of-type(14) {
        bottom: 30%;
    left: 45%;
}
#map .cd-single-point:nth-of-type(15) {
        bottom: 35%;
    right: 35%;
}
#map .cd-single-point:nth-of-type(16) {
        bottom: 50%;
    right: 15%;
}
#map .cd-single-point:nth-of-type(17) {
        bottom: 5%;
    left: 10%;
}
#map .cd-single-point.is-open > a, #home .cd-single-point.is-open > a {
  background-color: #ff8100;
}
#map .cd-single-point.is-open > a::after, #map .cd-single-point.is-open > a::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
#map .cd-single-point.is-open::after {
  /* remove pulse effect */
  display: none;
}
#map .cd-single-point.is-open .cd-more-info {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
#map .cd-single-point.visited > a {
  background-color: #ffaa00;
}
#map .cd-single-point.visited::after {
  /* pulse effect no more active on visited elements */
  display: none;
}

@media only screen and (min-width: 600px) {
  #map .cd-single-point.is-open .cd-more-info.cd-left {
    right: 140%;
  }
  #map .cd-single-point.is-open .cd-more-info.cd-right {
    left: 140%;
  }
  #map .cd-single-point.is-open .cd-more-info.cd-top {
    bottom: 140%;
  }
  #map .cd-single-point.is-open .cd-more-info.cd-bottom {
    top: 140%;
  }
  /* .more-info */
  .more-info .cd-single-point.is-open .cd-more-info.cd-left {
    right: 140%;
  }
  .more-info .cd-single-point.is-open .cd-more-info.cd-right {
    left: 140%;
  }
  .more-info .cd-single-point.is-open .cd-more-info.cd-top {
    bottom: 140%;
  }
  .more-info .cd-single-point.is-open .cd-more-info.cd-bottom {
    top: 140%;
  }
}

@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: inset 0 0 1px 1px #ff8100;
  }
  50% {
    box-shadow: inset 0 0 1px 1px #ff8100;
  }
  100% {
    -webkit-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px #ff8100;
  }
}
@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: scale(1);
    box-shadow: inset 0 0 1px 1px #ff8100;
  }
  50% {
    box-shadow: inset 0 0 1px 1px #ff8100;
  }
  100% {
    -moz-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px #ff8100;
  }
}
@keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 1px 1px #ff8100;
  }
  50% {
    box-shadow: inset 0 0 1px 1px #ff8100;
  }
  100% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px #ff8100;
  }
}
 #map .cd-single-point .cd-more-info {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 1);
  padding: 2em 1em 1em;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
 #map .cd-single-point .cd-more-info::before {
  /* triangle next to the interest point description - hidden on mobile */
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  display: none;
  border: 8px solid transparent;
}
 .more-info .cd-single-point .cd-more-info {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 1);
  padding: 2em 1em 1em;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
 .more-info .cd-single-point .cd-more-info::before {
  /* triangle next to the interest point description - hidden on mobile */
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  display: none;
  border: 8px solid transparent;
}

/*#map .cd-single-point .cd-more-info p, #home .cd-single-point .cd-more-info p {
    color: #000000;
    font-size: 16px;    
}*/
.cd-more-info p.small {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    font-family: 'Lekton', sans-serif;
}
.cd-more-info p.big {
    text-align: center;
    font-size: 100px;
    font-weight: bold;
    font-family: 'Lekton', sans-serif;
    color: #019640;
}
#map .cd-single-point .cd-more-info p strong {
    font-weight: 600;
}
.more-info .cd-single-point .cd-more-info p strong {
    font-weight: 600;
}
@media only screen and (min-width: 600px) {
  #map .cd-single-point .cd-more-info {
    position: absolute;
    width: 300px;
    height: auto;
    padding: 35px 35px 0 35px;
    overflow-y: visible;
    line-height: 1.4;
    border-radius: 0.25em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  #map .cd-single-point .cd-more-info::before {
    display: block;
  }
  #map .cd-single-point .cd-more-info.cd-left, #map .cd-single-point .cd-more-info.cd-right {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #map .cd-single-point .cd-more-info.cd-left::before, #map .cd-single-point .cd-more-info.cd-right::before {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #map .cd-single-point .cd-more-info.cd-left {
    right: 160%;
    left: auto;
    height: auto;
  }
  #map .cd-single-point .cd-more-info.cd-left::before {
    border-left-color: rgba(255, 255, 255, 0.95);
    left: 100%;
  }
  #map .cd-single-point .cd-more-info.cd-right {
    left: 160%;
    height: auto;
  }
  #map .cd-single-point .cd-more-info.cd-right::before {
    border-right-color: rgba(255, 255, 255, 0.95);
    right: 100%;
  }
  #map .cd-single-point .cd-more-info.cd-top, #map .cd-single-point .cd-more-info.cd-bottom {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #map .cd-single-point .cd-more-info.cd-top::before, #map .cd-single-point .cd-more-info.cd-bottom::before {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #map .cd-single-point .cd-more-info.cd-top {
    bottom: 160%;
    top: auto;
    height: auto;
  }
  #map .cd-single-point .cd-more-info.cd-top::before {
    border-top-color: rgba(255, 255, 255, 0.95);
    top: 100%;
  }
  #map .cd-single-point .cd-more-info.cd-bottom {
    top: 160%;
    height: auto;
  }
  #map .cd-single-point .cd-more-info.cd-bottom::before {
    border-bottom-color: rgba(255, 255, 255, 0.95);
    bottom: 100%;
  }
  #map .cd-single-point .cd-more-info h2 {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  /* .more-info */
  .more-info .cd-single-point .cd-more-info {
    position: absolute;
    width: 950px;
    height: auto;
    padding: 20px;
    overflow-y: visible;
    line-height: 45px;
    border-radius: 0.25em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    font-size: 30px;
    font-family: 'Lekton', sans-serif;
  

  }
  .more-info .cd-single-point .cd-more-info::before {
    display: block;
  }
  .more-info .cd-single-point .cd-more-info.cd-left, .more-info .cd-single-point .cd-more-info.cd-right {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .more-info .cd-single-point .cd-more-info.cd-left::before, .more-info .cd-single-point .cd-more-info.cd-right::before {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .more-info .cd-single-point .cd-more-info.cd-left {
    right: 160%;
    left: auto;
    height: auto;
  }
  .more-info .cd-single-point .cd-more-info.cd-left::before {
    border-left-color: rgba(255, 255, 255, 0.95);
    left: 100%;
  }
  .more-info .cd-single-point .cd-more-info.cd-right {
    left: 160%;
    height: auto;
  }
  .more-info .cd-single-point .cd-more-info.cd-right::before {
    border-right-color: rgba(255, 255, 255, 0.95);
    right: 100%;
  }
  .more-info .cd-single-point .cd-more-info.cd-top, .more-info .cd-single-point .cd-more-info.cd-bottom {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .more-info .cd-single-point .cd-more-info.cd-top::before, .more-info .cd-single-point .cd-more-info.cd-bottom::before {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .more-info .cd-single-point .cd-more-info.cd-top {
    bottom: 160%;
    top: auto;
    height: auto;
  }
  .more-info .cd-single-point .cd-more-info.cd-top::before {
    border-top-color: rgba(255, 255, 255, 0.95);
    top: 100%;
  }
  .more-info .cd-single-point .cd-more-info.cd-bottom {
    top: 160%;
    height: auto;
  }
  .more-info .cd-single-point .cd-more-info.cd-bottom::before {
    border-bottom-color: rgba(255, 255, 255, 0.95);
    bottom: 100%;
  }
  .more-info .cd-single-point .cd-more-info h2 {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  /*.cd-single-point .cd-more-info p {
    font-size: 14px;
    font-size: 0.875rem;
  }*/
}

/* close the interest point description - only on mobile */
.cd-close-info {
  position: fixed;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
}
.cd-close-info::after, .cd-close-info:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  background-color: #475f74;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.cd-close-info::after {
  height: 2px;
  width: 16px;
}
.cd-close-info::before {
  height: 16px;
  width: 2px;
}
@media only screen and (min-width: 600px) {
  .cd-close-info {
    display: none;
  }
}



@media (max-width: 1366px){

}
@media (max-width: 1280px){
  .title h1 {
    padding: 2% 0;
    font-size: 40px;
    line-height: 50px;
  }
  #header a {
    padding-top: 40px;
  }
  #section01 {
    background-size: 116%;
    height: auto;
  }
  #section02, #section03, #section05 {
    height: auto;
    padding: 1% 0;
    display: inline-block;
  }
  .question h2 {
    color: #dc0334;
    font-size: 35px;
  }
  .lucky img{
    width: 80%;
  }
  .winner {
    font-size: 20px;
    padding: 0 !important;
  }
  .winner img{
    width: 70%;
  }
  .winner.first img {
    width: 100%;
  }
  .winner.second img{
    width: 58%; 
  }
  .winner.thirth img{
    width: 66%;
  }
  .list li {
    font-size: 20px;
    margin: 20px 10px;
  } 
  .label-chart:nth-of-type(1) {
    top: 5%;
  }
  .label-chart:nth-of-type(2) {
    top: 24%;
  }
  .text-footer {
    padding: 10% 0;
  }
  .chart-device {
    padding: 4% 5% 19% 5%;
  }
  .top{
    margin-top: 5%; 
  }
  .bottom{
    margin-bottom: 5%; 
  }
  #section01 a {
    padding-top: 80px;
  }
}
@media (max-width: 1280px) and (min-width: 1024px){
  .more-info .cd-single-point .cd-more-info{
    width: 700px;
  }
  .top {
    margin-top: 2%;
  }
  .question h2 {
    line-height: 35px;
  }
  .list li {
    font-size: 20px;
    margin: 15px 10px;
  }
  ul.list li span {
    padding: 4px 9px;
  }
  /*.label-chart:nth-of-type(1) {
    right: 17%;
  }
  .label-chart:nth-of-type(3) {
    right: 5%;
  }
  .label-chart:nth-of-type(2) {
    right: 0%;
  }
  .label-chart:nth-of-type(4) {
    left: 6%;
  }
  .label-chart:nth-of-type(5) {
    bottom: 40%;
    left: 4%;
  }
  .label-chart:nth-of-type(6) {
    top: 8%;
    left: 10%;
  }
  #canvas1 {
    width: 350px !important;
    height: 350px !important;
  }*/
  .doughnut-chart {
    padding: 8% 0;
    position: relative;
  }
  footer{
    background-size: cover;
  }
  .text-footer {
    font-size: 53px;
  }
  .text-intro img {
    width: 15%;
  }
  .text-intro {
    font-size: 19px;
    line-height: 26px;
  }
}

@media (max-width: 1024px){
  .label-chart:nth-of-type(1) {
    top: 0%;
    right: 17%;
  }
  .label-chart:nth-of-type(3) {
    right: 5%;
  }
  .label-chart:nth-of-type(2) {
    right: 0%;
  }
  .label-chart:nth-of-type(4) {
    left: 6%;
  }
  .label-chart:nth-of-type(5) {
    bottom: 40%;
    left: 4%;
  }
  .label-chart:nth-of-type(6) {
    top: 8%;
    left: 10%;
  }
  #canvas1 {
    width: 350px !important;
    height: 350px !important;
  }
  #header{
    height: auto;
    padding: 2% 0;
  }
  #section01 {
    background-size: 127%; 
  }
  #section01 a, #header a {
   display: none;
  }
  .list-city .city {
    padding: 2% 0;
    font-size: 19px;
    width: 50%;
  }
  .more-info .cd-single-point > a{
    width: 60px;
    height: 60px;
  }
  #section05 .more-info .cd-single-point {
    bottom: 15%;
    left: 10%;
  }
  .single-chart {
    width: 90%;
  }
  .circular-chart {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    max-height: 250px;
  }
  .logo-juegos {
    width: 30%;
}
}

@media (max-width: 768px){
  .leyenda {
    font-family: 'Lekton', sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin-top: 30px; 
  }
  .leyenda li {
    float: left;
    margin: 5px 10px;
  }
  canvas#canvas1{
    width: 50% !important;
    height: auto !important;
  }
  /*.more-info .cd-single-point .cd-more-info{
    width: 500px;
  }*/
  .text-footer {
    font-size: 40px;
  }
  .more-info .cd-single-point > a{
    width: 50px;
    height: 50px;
    0px 0px 0px 10px rgba(220,0,51,0.2): ;
    -moz-box-shadow: 0px 0px 0px 16px rgba(220,0,51,0.2);
    box-shadow: 0px 0px 0px 10px rgba(220,0,51,0.2);
    transition: background-color 0.2s;
  }
  .more-info .cd-single-point > a::before {
    height: 30px;
    width: 4px;
  }
  #section04 .more-info .cd-single-point {
    bottom: 15%;
    right: 5%;
  }
.more-info .cd-single-point > a::after {
    width: 30px;
    height: 4px;
}
  #section05 .more-info .cd-single-point {
    bottom: 5%;
    left: 5%;
  }
  #section02 .more-info .cd-single-point {
    top: 65%;
    left: 5%;
  }
  .winner {
    font-size: 41px;
    padding: 0 !important;
  }
  #section03 .winner {
    font-size: 30px;
    padding: 0 !important;
  }
  .lucky img {
    width: 50%;
  }
  .image-text img {
    width: 50%;
    margin: 0 auto;
    display: block;
  }
  #section01 {
    background-size: 156%;
  }
  #section02 .more-info .cd-single-point {
    top: 45%;
    left: 12%;
    bottom: auto;
  }
  .more-info .cd-single-point .cd-more-info{
    width: 590px;
  }
  .list-city .city{
    width: 33.33333333%;
  }
  .winner img {
    width: 50%;
  }
  img.hm{
    width: 100%;
  }
  .decoration-one{
    width: 100%;
  }
  .question h2 {
    line-height: 35px;
  }
  #map .cd-single-point .cd-more-info{
    width: 230px;
  }  
  .label-chart:nth-of-type(1) {
    top: -5%;
    right: 26%;
  }
  .label-chart:nth-of-type(2) {
        right: 8%;
    top: 12%;
  }
  .label-chart:nth-of-type(3) {
    right: 10%;
    top: 80%;
  }
  .label-chart:nth-of-type(6) {
    top: 3%;
    left: 10%;
  }

  footer {
    background-size: cover;
  }
}

@media (max-width: 462px){
  .logo img {
    width: 75%;
  }
  .title h1 {
    padding: 2% 0;
    font-size: 25px;
    line-height: 35px;
  }
  .title h1 span {
    font-size: 50px;
  }
  #map .cd-single-point > a, #home .cd-single-point > a {
    width: 20px;
    height: 20px;
  }

  #map .cd-single-point.is-open .cd-more-info{
    z-index: 9999999;
  }
  .title img {
    width: 50%;
  }
  #header {
    height: 100vh;
    background-position: 70%;
  }
  #header a {
    display: block;
  }
  #section01, #section06 {
      background-image: none;
  }
  .text-intro {
    font-size: 18px;
    line-height: 23px;
  }
  .question h2 {  
    font-size: 25px;
    line-height: 28px;
  }
  .winner {
    font-size: 20px;
  }
  .winner img {
    width: 40%;
  }
  .list li {
    font-size: 18px;
    margin: 10px;
    width: 100%;
    text-align: left;
  }
  canvas#canvas1{
    width: 60% !important;
  }
  .left, .right {
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
  }
  
  footer {
    background-size: cover;
    background-position: 90%;
  }
  .text-footer {
    font-size: 30px;
  }
  .logo-juegos {
    width: 80%;
  }
  .logoir {
    width: 40%;
  }
  #map .cd-single-point:nth-of-type(1) {
    top: 14%;
    left: 20%;
  }
  #map .cd-single-point:nth-of-type(2) {
    top: 8%;
    left: 31%;
  }
  #map .cd-single-point:nth-of-type(12) {
    bottom: 65%;
    left: 31%;
  }
  #map .cd-single-point:nth-of-type(13) {
    bottom: 45%;
    left: 30%;
  }
  #map .cd-single-point:nth-of-type(10) {
    top: 50%;
    right: 46%;
  }
  #map .cd-single-point:nth-of-type(4) {
    top: 11%;
    left: 55%;
  }
  #map .cd-single-point:nth-of-type(9) {
    top: 50%;
    right: 26%;
  }
  #map .cd-single-point .cd-more-info, #home .cd-single-point .cd-more-info{
    top: 20%;
    left: 15%;
    width: 70%;
    height: 40%;
  }
  .winner.first img {
    width: 80%;
  }
  .winner.second img {
    width: 50%;
  }
  .winner.thirth img {
      width: 55%;
  }
  .title {
    margin-top: 10%;
  }
  .text-intro img {
    width: 30%;
  }
  .col-md-12 {
    padding: 0;
  }
  .col-md-7.text-center.top {
    padding: 0;
  }
  .more-info .cd-single-point > a{
    width: 40px;
    height: 40px;
    -webkit-box-shadow: 0px 0px 0px 16px rgba(220,0,51,0.2);
    -moz-box-shadow: 0px 0px 0px 16px rgba(220,0,51,0.2);
    box-shadow: 0px 0px 0px 9px rgba(220,0,51,0.2);
    transition: background-color 0.2s;
  }
  .more-info .cd-single-point > a::before {
    height: 25px;
    width: 3px;
  }
  .more-info .cd-single-point > a::after {
    width: 25px;
    height: 3px;
  }
  #section02 .more-info .cd-single-point {
    top: 47%;
    left: 20%;
  }
  .more-info .cd-single-point.is-open .cd-more-info {
    font-size: 20px;
    font-family: 'Lekton', sans-serif;
    width: 100% !important;
  }
  .list-city .city {
    padding: 3% 0;
    font-size: 15px;
    text-align: left;
    width: 50%;
  }
  .list-city .city span {
    padding: 4px 7px;
  }
  .list-city {
    font-size: 18px;
  }
  #section05 .hm{
    width: 100%;
  }
  .leyenda ul li span {
    content: "\2022";
    font-weight: bold;
    display: inline-block;
    width: 10px;
    margin-right: 8px;
    background-color: red;
  }
  .text-label small {
    font-size: 12px;
  }
  .text-label p {
    font-size: 18px;
  }
  .label-chart img {
    width: 25%;
  }
  .label-chart:nth-of-type(1) {
    top: -5%;
    right: 16%;
  }
  .label-chart:nth-of-type(2) {
    right: 0%;
    top: 35px;
  }
  .label-chart:nth-of-type(3) {
    right: 0%;
    top: 80%;
  }
  .label-chart:nth-of-type(6) {
    top: 3%;
    left: 7%;
}
}