
body {
    font-family:"avenir next", Arial, sans-serif !important;
    color: #696969;
    background-color: #edf1f5;
    margin: 0;
}

#globalContainer {
  margin: 80px 0px;
}

section {
  height: 100vh;
  width: 100%;
}

div.section-container {
  margin: 0;
  position: relative;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
}

.break {
    flex-basis: 100%;
    height: 0;
  }

.btn {
    border-radius: 5px;
    margin: 0px 5px; 
}

.description{
  text-align: center;
  max-width: 80%;
}

.toolTip {
  position: absolute;
  display: none;
  min-width: 80px;
  height: auto;
  background: none repeat scroll 0 0 #ffffff;
  border: 1px solid #6F257F;
  padding: 14px;
  text-align: center;
}

.in-data {
  fill: black;
}

:root {
    --global-color:#4089ff;
    --selected-country-color:#ff4040;
    --selected-country-hover-color: #ff7373;
    --EXT-color: rgb(223, 49, 51);
    --AGR-color: rgb(13, 155, 201);
    --OPN-color: rgb(181, 126, 50);
    --CSN-color: rgb(250, 174, 14);
    --EST-color: rgb(88, 130, 135);
    --country-edge-color: black;
    --water-color: darkblue;
    --country-wo-data: green;
    --country-w-data: #0dd10d;
    --country-hover-color:rgb(0, 243, 0);

}

.globalColor {
    fill: var(--global-color);
}

.countryColor {
    fill: var(--selected-country-color);
}

.dataCountry {
    fill: var(--country-w-data);
}

.dataCountry:hover {
  fill: var(--country-hover-color);
}

.noDataCountry {
  fill: var(--country-wo-data);
}

.mapBackground {
  fill: var(--water-color);
}

.countryPath {
  stroke: var(--country-edge-color);
  stroke-width: "0.1";
}

.selectedCountry {
  fill: var(--selected-country-color);
}

.selectedCountry:hover {
  fill: var(--selected-country-hover-color);
}

.countryBar.EXT {
  fill: var(--EXT-color);
}

.countryBar.AGR {
  fill: var(--AGR-color);
}

.countryBar.OPN {
  fill: var(--OPN-color);
}
.countryBar.CSN {
  fill: var(--CSN-color);
}
.countryBar.EST {
  fill: var(--EST-color);

}
.avgLine {
  stroke: darkslategrey;
  stroke-width: 5;
}

.avgRect {
  fill: black;
  rx: 3;
  ry: 3;
  height: 5px;
}

.sectionTitle {
    margin-bottom: 20px;
    margin-top: 20px;
}

input[type=text] {
    width: 50%;
    background: #edf1f5;
    border: 1px solid #4089ff;
    text-align: center;
    font-size: 20px;
    height: 50px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

/* When the input field gets focus, change its width to 100% */
input[type=text]:focus {
    width: 60%;
}

.strikeThrough {
    text-decoration: line-through;
}

  .image {
  display: block;
  width: 100%;
  height: auto;
}

  /* These classes are for hover-overs in index page */
.invisiblebox {
  position: absolute;
  float: left;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20%;
  height: 100%;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(68, 68, 68, 0.8);
}


.invisiblebox:hover .overlay {
  opacity: 1;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.text {
  color: white;
  font-size: 0.8vw;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
