/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg'); /* Legacy iOS */
}

/* roboto-condensed-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v25-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg'); /* Legacy iOS */
}

body {
  margin: 0;
  box-sizing: border-box;
}

/* CSS for header */
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 320px;
  background: #f9e200;
  padding-bottom: 1em;
}
.header h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 1em;
}
.header h1 span {
  color: #fff;
}

.header .logo {
  font-size: 25px;
  font-family: "Roboto Condensed";
  text-decoration: none;
  margin-left: 30px;
}
.header .col-sm-2 {
  align-content: center;
  height: auto;
}

.nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f5f5f5;
  margin-right: 20px;
}

.nav-items a {
  text-decoration: none;
  color: #000;
  padding: 35px 20px;
}
#demo {
  padding: 100px 0;
}
.samples {
  display: flex;
  align-items : center;
  align-content : center
  padding: 40px 80px;
}

.controls .track-name {
  color: #333;
  padding: 8px 32px;
  font-size: 15px;
  line-height: 1.2;
  display: inline-flex;
}
.audio-container .btn i {
  color: white;
}

.play-button.btn-success {
  background: rgb(0,0,0,.3);
  height: 70px;
  transition: background .1s;
  width: 70px;
}
.btn-success {
  border-color: #fff;
  border-radius: 100%;
  font-size: 2.08571em;
  height: 66px;
  margin: 0 0 0.59375em;
  padding: 0.375em;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 66px;
}
.btn-success, .btn-success.focus,.btn-success:focus,
.btn-success.active.focus,.btn-success.active:focus {
  color: #fff;
  background-color: rgb(0,0,0,.2);
  border: 2px solid #fff;
}
 
.btn-success:hover,
.btn-success.active:hover,.btn-success:active.focus,
.btn-success:active:focus,.btn-success:active:hover {
  color: #fff;
  background-color: rgb(0,0,0,.2);
  border: 2px solid #fff;
}
.play-button .glyphicon {
  top: 3px;
}

.controls {
    padding: 30px 0 15px;
    text-align: center;
}

.controls .btn {
    margin-bottom: 15px;
}

@media screen and (min-width: 990px) {
    .controls .mark-controls {
        display: inline;
    }
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
    border-top-color: rgb(221, 221, 221);
    border-right-color: rgb(221, 221, 221);
    border-bottom-color: rgb(221, 221, 221);
    border-left-color: rgb(221, 221, 221);
}
a.list-group-item, button.list-group-item {
  color: #555;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
  z-index: 2;
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #000;
  background-color: #fff;
}

#waveform {
    position: relative;
    margin: 2em 0;
}

.vertical {
    display: flex;
    margin-bottom: 20px;
}

.vertical #demo {
    margin-right: 30px;
}

#waveform.vertical {
    height: 400px;
}

#progress-bar {
    position: absolute;
    z-index: 10;
    top: 50%;
    margin-top: -10px;
    left: 5%;
    width: 90%;
}

#drop {
    border: 3px dashed #ddd;
    padding: 30px;
}

#drop.wavesurfer-dragover {
    border-color: #333;
}

/* CSS for footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f2f2;
  padding: 40px 80px;
}

.footer .copy {
  color: #fff;
}

.bottom-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 0;
}

.bottom-links .links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}

.bottom-links .links span {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  margin: 10px 0;
}

.bottom-links .links a {
  text-decoration: none;
  color: #a1a1a1;
  padding: 10px 20px;
}