body {
  font-family: 'Source Sans Pro', sans-serif;
}

#app {
  /*background-color: pink;*/
  margin-top: 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#main {
  /*background-color: black;*/
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#canvas-container {
  border: 1px solid gray;
  border-radius: 12px;
  padding: 6px;
  background-color: #0A0B1A;
}

#overlay {
  height: 190px;
  width: 420px;
  background-color: #0A0B1A;
  float: right;
  z-index: 3;
  position: relative;
  right: 124px;
  top: 245px;
  border-radius: 12px;
  border: 1px solid white;
  padding: 16px 16px 4px 16px;
}

#overlay h1, h2, h3 {
  margin: 8px 0px;
}

.not-hidden {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hidden {
  display: none
}

#overlay h1 {
  color: white;
  font-size: 28px;
  font-family: 'Candal', sans-serif;
  text-align: center;
}

#overlay h2, h3 {
  font-size: 16px;
}

#overlay h2 {
  color: white;
  font-weight: 300;
  text-align: left;
}

#overlay h3 {
  color: gray;
  font-weight: 200;
  text-align: right;
  position: relative;
}

#overlay h3:hover {
  color: #197be0;
  cursor: pointer;
}

/********************/
/*      SIDEBAR     */
/********************/

#nav {
  background-color: #1b1b25;
  width: 250px;
  margin-right: 40px;
  border: 1px solid gray;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/********************/
/*       LOGO       */
/********************/

#logo {
  /*background-color: orange;*/
  padding: 0;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#logo img {
  width: 200px;
  margin: 0;
}

#logo h1 {
  color: white;
  font-family: 'Candal', sans-serif;
  font-size: 30px;
  margin: 8px 0px;
}

/*********************/
/* STOP, PLAY, PAUSE */
/*********************/

#play-controls {
  background-color: #282c34;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  flex: 0 0 80px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#play-controls img {
  height: 52px;
  width: 52px;
  margin: 0px 12px;
}

#play-controls img:hover {
  cursor: pointer;
}

#info:hover {
  content: url('http://res.cloudinary.com/oblaka/image/upload/v1493833160/info_filled_ykz9ue.png');
}

#stop:hover {
  content: url('http://res.cloudinary.com/oblaka/image/upload/v1490970171/stop_filled_ikqt0t.png');
}

#play:hover {
  content: url('http://res.cloudinary.com/oblaka/image/upload/v1490970171/play_filled_e1onta.png');
}

#pause:hover {
  content: url('http://res.cloudinary.com/oblaka/image/upload/v1490970171/pause_filled_z6i2bd.png');
}

/********************/
/* VOLUME and TEMPO */
/********************/

#sliders {
  /*background-color: orange;*/
  flex: 0 0 130px;
  padding: 12px 0px;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.slider-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 16px 0px 8px;
}

.slider-img-container {
  /*background-color: red;*/
  height: 40px;
  width: 100px;
  margin-right: 8px;
  padding-bottom: 9px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-container img {
  height: 46px;
}

/********************/
/* CLEFS and NOTES */
/********************/

#note-controls {
  background-color: #282c34;
  border-top: 1px solid gray;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 18px 0 12px 0;
  flex: 0 0 0;
}

#ants-index-container {
  margin-top: 12px;
  padding-right: 16px;
  height: 200px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#clef-imgs {
  /*background-color: blue;*/
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

#clef-imgs img {
  /*background-color: pink;*/
  width: 80px;
  padding: 0;
}

#ants-index {
  display: flex;
  flex-direction: column;
}

.ants-index-item {
  display: flex;
  flex-direction: row;
  margin: 8px;
}

.ants-index-item img {
  height: 35px;
}

.rhythm-img:hover {
  cursor: pointer;
}

/********************/
/*      FOOTER      */
/********************/

#footer {
  /*background-color: orange;*/
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  /*align-items: center;*/
  /*padding: 30px 300px;*/
  width: 1000px;
}

#footer-links {
  /*background-color: red;*/
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px 0px;
}

#footer-links img {
  height: 60px;
  width: 60px;
  margin: 0 30px;
}

#footer-links img:hover {
  cursor: pointer;
}

#about {
  /*background-color: green;*/
  margin-bottom: 40px;
}

#about p, h1, th {
  color: white;
}

#about p, th {
  font-size: 20px;
  font-weight: 200;
}

#about p {
  margin: 0 0 18px 0;
}

#about a {
  color: #56b2ba;
  text-decoration: none;
}

#about a:hover {
  color: #0b78e3;
}

table {
  margin: 14px 0 22px 0;
}

#about th {
  padding: 3px 16px;
  justify-content: center;
  align-items: center;
}

th div {
  margin: auto;
}

.row-header {
  font-weight: 300;
  text-align: left;
}

.table-circle {
  height: 32px;
  width: 32px;
  border-radius: 16px;
}

#blue-circle {
  background-color: #197be0;
}

#green-circle {
  background-color: #7ed43a;
}

#pink-circle {
  background-color: #fc2a68;
}

#purple-circle {
  background-color: #8c54e5;
}

#yellow-circle {
  background-color: #f9cd35;
}


/********************/
/*     DROPDOWN     */
/********************/

#dropdown-container {
  padding: 0 16px;
}

.result {
  padding: 8px 0;
}

.Dropdown-root {
  position: relative;
}

.Dropdown-control {
  position: relative;
  overflow: hidden;
  background-color: #1A1B25;
  border: 1px solid white;
  border-radius: 2px;
  box-sizing: border-box;
  color: white;
  cursor: default;
  outline: none;
  padding: 8px 52px 8px 10px;
  transition: all 200ms ease;
}

.Dropdown-control:hover {
  /*box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);*/
  cursor: pointer;
}

.Dropdown-arrow {
  border-color: white transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: ' ';
  display: block;
  height: 0;
  margin-top: -ceil(2.5);
  position: absolute;
  right: 10px;
  top: 14px;
  width: 0
}

.is-open .Dropdown-arrow {
  border-color: transparent transparent white;
  border-width: 0 5px 5px;
}

.Dropdown-menu {
  background-color: #1A1B25;
  border: 1px solid white;
  /*box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);*/
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 300px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
}

.Dropdown-menu .Dropdown-group > .Dropdown-title {
  padding: 8px 10px;
  color: white;
  font-weight: 400;
  text-transform: capitalize;
}

.Dropdown-option {
  box-sizing: border-box;
  color: gray;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}

.Dropdown-option:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.Dropdown-option:hover {
  background-color: #282c34;
  color: white;
}

.Dropdown-option.is-selected {
  background-color: #282c34;
  color: white;
}

.Dropdown-noresults {
  box-sizing: border-box;
  color: red;
  cursor: default;
  display: block;
  padding: 8px 10px;
}
