#content {
  position: relative;
  margin: auto;
  max-width: 750px;
  min-width: 300px;
}

#header {
  font-family: curator-bold;
  font-size: 21px;
  color: #333333;
}

path {
  fill: none;
}

.axis line {
  fill: none;
  stroke: gray;
}

.bold-text {
  font-family: curator-bold;
  font-size: 13px;
}

text, .regular-text {
  font-family: curator-regular;
  font-size: '13px';
  fill: #333333;
}

.dark {
  color: #333333;
}

.country-label {
  font-size: 1.5em;
}

li[data-name="India"] .country-label {
  color: #FABE9C;
}

li[data-name="Vietnam"] .country-label {
  color: #F6AB9A;
}

li[data-name="Thailand"] .country-label {
  color: #FED47D;
}

.faded {
  color: #dddddd;
}

ul {
  padding: 0;
}

#countries-list-popup {
  display: none;
  background: white;
  border: 2px solid black;
  z-index: 1000;
  position: absolute;
  width: 150px;
  padding : 10px;
}

@font-face {
  font-family: 'curator-bold'; /*a name to be used later*/
    src: url('../fonts/Curator Head ST Bold.otf'); /*URL to font*/;
}

@font-face {
  font-family: 'curator-regular'; /*a name to be used later*/
    src: url('../fonts/Curator Head ST Regular.otf'); /*URL to font*/;
}

@media screen and (max-width: 450px) {
  #chart-container {
    width: 100%;
  }

  #description {
    width: 100%;
    font-family: curator-regular;
    font-size: 16px;
    color: #0f0f0f;
  }

  #countries-list-container-vertical {
    width: 17%;
    display: none;
  }

  #countries-list-container-horizontal {
    margin-top: 20px;
    width: 100%;
    display: block;
  }

  ul.countries-list#horizontal > li {
    margin-right: 10%;
    display: inline;
  }

  ul.countries-list{
    list-style-type: none;
  }
}

@media screen and (min-width: 450px) {
  #chart-container {
    width: 83%;
    float: left;
  }

  #description {
    width: 83%;
    font-family: curator-regular;
    font-size: 16px;
    color: #333333;
  }

  #countries-list-container-vertical {
    width: 17%;
    display: block;
    float: left;
  }

  #countries-list-container-horizontal {
    display: none;
  }

  ul.countries-list > li {
    display: block;
  }

  #vertical > li {
    margin-bottom: 12px;
  }
}
