/**
 * index.scss
 * - Add any styles you want here!
 */
* {
  box-sizing: border-box;
}

.male {
  color: #2f87b4;
}

.female {
  color: #F47983;
}

.left {
  margin: 0;
  text-align: left;
}

.right {
  margin: 0;
  margin-bottom: 10px;
  text-align: right;
}

body {
  font-family: sans-serif;
  margin: auto;
  width: 70%;
}

#top {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 400px;
}

#left {
  display: flex;
  flex: 1 0 65%;
  flex-direction: column;
}

#right {
  flex: 1 0 35%;
  padding: 0 1em;
  text-align: center;
}

.sub-title {
  color: #655f5f;
  font-size: 1.3em;
  font-weight: 100;
}

.sub-title-two {
  color: #655f5f;
  font-size: 1em;
  font-weight: 100;
}

header h1 {
  flex: 1 0 100%;
  font-size: 2em;
  font-weight: 100;
}

#top .sub-title {
  color: #655f5f;
  font-size: 1.3em;
}

#bar-chart {
  height: 100%;
  width: 100%;
}

#bar-chart-tooltip {
  background: white;
  border: 1px solid;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  opacity: 0;
  position: absolute;
}

#bar-chart-tooltip .tool-tip-text {
  margin-right: 1em;
}

#bar-chart svg {
  border: 1px solid #d9d5d5;
}

#bar-chart svg + svg {
  border-right: 0;
}

#bar-chart svg:last-of-type {
  border-right: 1px solid #d9d5d5;
}

#bar-chart-titles {
  display: flex;
  flex: 1 0 15%;
  font-size: .7em;
  text-align: center;
}

#bar-chart-titles .salary {
  font-size: 1.4em;
}

article div {
  flex: 1;
}

article div p {
  margin: .5em;
}

article div p.title {
  font-weight: bold;
}

#right .left {
  margin-bottom: 5px;
}

#right .sub-title {
  margin-bottom: 0;
}

#right .sub-title-two {
  font-size: 1em;
  margin: .5em;
}

#right svg {
  height: 60%;
  width: 100%;
}

.pie-chart-text {
  font-size: 2.5em;
}

select, option {
  width: 100%;
  margin-bottom: 10px;
}

option {
  width: 100px;
}

#input-item {
  border: none;
  color: #655f5f;
  font-size: 1em;
  font-weight: 100;
  width: 90%;
}

#input-item:focus {
  outline: none;
}

.inputParent {
  border: 2px solid #eeeeee;
  display: flex;
  height: 20px;
  text-align: left;
}

.ul-list-item {
  background-color: white;
  border: 1px solid #f47983;
  list-style-type: none;
  margin-top: 0;
  padding: 0;
  width: 100%;
}

.ul-list-item li {
  color: #655f5f;
  font-size: 1em;
  font-weight: 100;
  text-align: left;
}

.list-item:hover {
  background-color: rgba(244, 121, 131, 0.3);
  cursor: pointer;
}
