/* temp fix for absolute vs relative positioning of tooltip */
.front .container.main {
   position: static;
}

.nt-wrapper {
   font-family: 'Open Sans';
   font-style: normal;
   font-weight: 400;
   font-size: 12px;
   color: #000;
   text-align: center;
   overflow: hidden;
   word-wrap: normal;
}

.nt-charts {
   width: 670px;
   margin: 10px auto;
}

.nt-charts > * {
   float: left;
}

.nt-indicator {
   width: 250px;
}

.nt-map {
   display: inline-block;
   padding: 50px 30px 40px;
   position: relative;
}

.nt-map object {
   pointer-events: none;
   width: 105px;
}

.nt-current {
  height: 75px;
  font-size: 60px;
  line-height: 60px;
  font-weight: 300;
  color: #124992;
}

.nt-label {
   margin-bottom: 15px;
}

.nt-tooltip {
   display: none;
   position: absolute;
   z-index: 1000;
   pointer-events: none;
   background-color: #134993;
   -webkit-box-shadow: rgba(0, 0, 0, 0.6) 2px 2px 4px;
   -moz-box-shadow: rgba(0, 0, 0, 0.6) 2px 2px 4px;
   box-shadow: rgba(0, 0, 0, 0.6) 2px 2px 4px;
   padding: 5px 10px;
   min-width: 75px;
   -webkit-transition: left,top;
   -moz-transition: left,top;
   -o-transition: left,top;
   -ms-transition: left,top;
   transition: left,top;
   border: none;
   height: 20px;
   margin-top: -43px;
}

.nt-tooltip-tip {
  position: absolute;
  bottom: 0;
  left: 0;
}

.nt-tooltip-tip:before {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 8px 8px 0 0;
  border-color: #134993 transparent transparent transparent;
}

.nt-tooltip-label {
  white-space: nowrap;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}

.nt-countries {
  margin: 0 20px 30px 20px;
  height: 30px;
  position: relative;
  overflow: hidden;
}

.nt-pager {
   position: absolute;
   top: 0;
   width: 55px;
   height: 15px;
   z-index: 1;
}

.nt-pager:first-of-type {
   left: 0;
}

.nt-pager:first-of-type:before {
   content: "";
   width: 55px;
   height: 30px;
   position: absolute;
   left: 0;
   top: 0;
   background-image: url(arrows.png);
   background-repeat: no-repeat;
   background-position: 0 0;
}

.nt-pager:last-of-type {
   right: 0;
}

.nt-pager:last-of-type:before {
   content: "";
   width: 55px;
   height: 30px;
   position: absolute;
   left: 0;
   top: 0;
   background-image: url(arrows.png);
   background-repeat: no-repeat;
   background-position: 0 -30px;
}

.nt-scroller {
  position: absolute;
  white-space: nowrap;
  padding: 0 45px;
  left: 0;
  right: 0;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.nt-scroller::-webkit-scrollbar {
   display: none;
}

.nt-country {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  padding: 2px 5px;
  margin: 3px 3px;
  cursor: pointer;
}

.nt-country:last-of-type {
     margin-right: 40px;
}

.selected.nt-country, .nt-country:hover {
  color: #fff;
  background-color: #1a4594;
}

.nt-country:last-of-type {
   margin-right: 40px;
}

.nt-chart path {
   stroke-width: 2px;
   stroke: #124992;
   fill: none;
}

.nt-chart circle {
   fill: #124992;
   stroke: transparent;
   stroke-width: 8;
}

.nt-chart circle:hover {
   stroke: #124992;
   stroke-opacity: 0.5;
}

.nt-chart g {
   display: none;
}

.front .container.main {
   position: static;
}

@media only screen and (max-width: 768px) {
   .nt-charts {
      width: auto;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical;
      -ms-flex-direction: column;
      flex-direction: column;
   }

   .nt-charts > * {
      float: none;
   }

   .nt-indicator {
      width: auto;
      margin-left: auto;
      margin-right: auto;
      -webkit-box-ordinal-group: 2;
      -moz-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
   }

   .nt-wrapper {
      overflow: visible;
   }

   #nt-wrapper .nt-countries {
      margin-left: -10px;
      margin-right: -10px;
   }

   #nt-wrapper .nt-map {
      margin: 0;
      -webkit-box-ordinal-group: 1;
      -moz-box-ordinal-group: 1;
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0;
   }

   .nt-pager:last-of-type::before, .nt-pager:first-of-type::before {
      background-image: none;
   }

   #nt-wrapper .nt-indicator {
      border-top: 1px solid #ccc;
      padding-top: 7px;
      margin-top: 7px;
   }
}
