.wheel,
.map,
.dots-container {
  width: 750px;
  height: 750px;      
}

div.color-black a{
    text-decoration : none !important;
    font-weight:normal;
}

@media (min-width: 992px) {
    .wheel,
    .map,
    .dots-container {
      width: 970px;
      height: 970px;      
    }
}

.map,
.dots-container {
  position: absolute;
  top: 0;
  left: 0;     
}
.wheel {
  background: center / contain no-repeat url("../img/country/wheel.svg");
}
.map {
  background: 172px 123px / 70% no-repeat url("../img/country/map.svg");   
  opacity: 0;
  animation-name: blink;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
.rd-glow {
  width: 490px;
  height: 490px;
  position: absolute;
  top: 240px;
  left: 234px;
  border-radius: 440px;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  animation-name: glow;
  animation-duration: 3s;
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
}

@-webkit-keyframes glow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes glow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.country-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #F26522;
  border-radius: 7px;
  opacity: 0;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-name: blink;
}
.country-dot:hover {
  cursor: pointer;
}
.country-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  border: 2px solid #F26522;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  opacity: 0;
  transition: 0.2s all;
}
.country-dot:hover:after {
  transform: scale(1.5);
  opacity: 1;
}

.country-bubble {
  position: absolute;
  width: 120px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid #BBBBBB;
  text-align: center;
  display: none;
  z-index: 2;
}
.country-bubble h2 {
  font-size: 16px;
  color: #333;
  margin: 5px;
}
.container_country-list a {
    color: #333;
}
.container_country-list a:hover {
    cursor: pointer;
}
/*IE hack (as conditional inclusion doesn't work)*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
   .country-dot {
        top: 40px;
    }
    .country-bubble {
        margin-top: 40px;
    }
    .map,
    .dots-container {
      top: -40px;
    }
}