.audio-player {
  --player-button-width: 2.5em;
  /*--player-button-width: 3em;*/
  /*--sound-button-width: 2em;*/
  --sound-button-width: 1.5em;
  --space: .5em;
  --sound-volium-length: 9em;
  /*--sound-download-button-width: 2em;*/
  --sound-download-button-width: 1.5em;
  padding: 10px 0;

}
.controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100% -10px;
  /*margin-top: 10px;*/
  /*border: 1px solid black;*/
  padding: 10px;
  background-color: #f4f4f4;

}
.audio-timeLine {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  /*margin-top: 10px;*/
  /*border: 1px solid black;*/
  /*padding: 10px;*/
  /*background-color: #f4f4f4;*/
}
.soundAndTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  /*margin-top: 10px;*/
  /*border: 1px solid black;*/
  /*padding: 10px;*/
  /*background-color: #f4f4f4;*/
}
.others--button {
  display: flex;
  flex-direction: row;
  align-items: center;
  /*width: 100%;*/
  width: calc(var(--player-button-width)+var(--sound-button-width)+var(--sound-button-width)+var(--space));
  justify-content: center;
  /*margin-top: 10px;*/
  /*border: 1px solid black;*/
  /*padding: 10px;*/
  /*background-color: #f4f4f4;*/
  margin-right: var(--space);
}
.other--part {
  /*width: calc(100%-(var(--player-button-width)+var(--sound-button-width)+var(--sound-button-width)+var(--space)+var(--space)));*/
  width: 100%;
}


.player-button {
  background-color: transparent;
  border: 0;
  width: var(--player-button-width);
  height: var(--player-button-width);
  cursor: pointer;
  padding: 1px;
}






.timeline {
  -webkit-appearance: none;
  /*width: calc(100% - (var(--player-button-width) + var(--sound-button-width) + var(--space)));*/
  width: 100%;
  height: .5em;
  background-color: #e5e5e5;
  border-radius: 5px;
  background-size: 0% 100%;
  background-image: linear-gradient(#2874b6, #2874b6);
  background-repeat: no-repeat;
  /*margin-right: var(--space);*/
  /*margin-left: var(--space);*/
}

.timeline::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all .1s;
  background-color: #2874b6;
}

.timeline::-moz-range-thumb {
  -webkit-appearance: none;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all .1s;
  background-color: #2874b6;
}

.timeline::-ms-thumb {
  -webkit-appearance: none;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all .1s;
  background-color: #2874b6;
}

.timeline::-webkit-slider-thumb:hover {
  background-color: #2874b6;
}

.timeline:hover::-webkit-slider-thumb {
  opacity: 1;
}

.timeline::-moz-range-thumb:hover {
  background-color: #2874b6;
}

.timeline:hover::-moz-range-thumb {
  /*opacity: 1;*/
}

.timeline::-ms-thumb:hover {
  background-color: #2874b6;
}

.timeline:hover::-ms-thumb {
  /*opacity: 1;*/
}

.timeline::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.timeline::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.timeline::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}



.sound-button, .playlist-button {
  background-color: transparent;
  border: 0;
  width: var(--sound-button-width);
  height: var(--sound-button-width);
  cursor: pointer;
  /*padding: 1px;*/
  padding: 2px;
}
.sound--section {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: calc(var(--sound-button-width)+var(--sound-volium-length)+var(--space));
  /*margin-top: 10px;*/
  /*border: 1px solid black;*/
  /*padding: 10px;*/
  /*background-color: #f4f4f4;*/
  position: relative;
}

.s-buttons {
  background-color: transparent;
  /*border: 0;*/
  border: none;
  width: var(--sound-button-width);
  height: var(--sound-button-width);
  cursor: pointer;
  padding: 0;
}

.mp3-audio-download {
  background-color: transparent;
  border: 0;
  width: var(--sound-download-button-width);
  height: var(--sound-button-width);
  cursor: pointer;
  /*padding: 5px;*/
  padding: 3px;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: var(--space);
}


#volume-slider {
  /*-webkit-appearance: none;*/
  /*width: 100%;*/
  /*width: var(--sound-volium-length);*/
  /*height: .5em;*/
  background-color: #e5e5e5;
  border-radius: 5px;
  background-size: 100% 100%;
  background-image: linear-gradient(#2874b6, #2874b6);
  background-repeat: no-repeat;
  margin-right: var(--space);
  margin-top: 15px;
  writing-mode: bt-lr; /* IE */
  -webkit-appearance: slider-vertical; /* Chromium */
  width: 8px;
  height: 100px;
  padding: 0 5px;

  position: absolute;
  /*top: -98px;*/
  /*right: 49px;*/
  top: -100px;
  right: 39px;
  display: none;
}

#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  cursor: pointer;
  /*opacity: 0;*/
  transition: all .1s;
  background-color: #2874b6;
}

#volume-slider::-moz-range-thumb {
  -webkit-appearance: none;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  cursor: pointer;
  /*opacity: 0;*/
  transition: all .1s;
  background-color: #2874b6;
}

#volume-slider::-ms-thumb {
  -webkit-appearance: none;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all .1s;
  background-color: #2874b6;
}

#volume-slider::-webkit-slider-thumb:hover {
  background-color: #2874b6;
}

#volume-slider:hover::-webkit-slider-thumb {
  opacity: 1;
}

#volume-slider::-moz-range-thumb:hover {
  background-color: #2874b6;
}

#volume-slider:hover::-moz-range-thumb {
  opacity: 1;
}

#volume-slider::-ms-thumb:hover {
  background-color: #2874b6;
}

#volume-slider:hover::-ms-thumb {
  opacity: 1;
}

#volume-slider::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

#volume-slider::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

#volume-slider::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

/*#mp3-timeline-currentTime, #mp3-timeline-duration {*/
/*  margin-top: -18px;*/
/*}*/

.node-type-article input {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.node-type-article .sound--section input {
  margin-right: 0 !important;

}


.bellow--timeline {
  display: flex;
  flex-direction: row;
}

.sound--section:hover {

}

.show--playlist {
  border-left: 3px solid #f4f4f4;
  border-right: 3px solid #f4f4f4;
  border-bottom: 3px solid #f4f4f4;
  padding: 1em;
  background: white;
}

.view-id-playlist .view-content {
  /*opacity: 0;*/
  /*display: hidden;*/
}

/*.show--playlist .views-field-field-playlist-sound-track,*/
/*.show--playlist .views-field-field-article-sound-track, */
.show--playlist .views-field-nid,
  .show--playlist .views-field-field-article-sound-track-1 {
  opacity: 0;
  display: none;
}

.show--playlist  .views-field-field-audio-sound-duration {
  text-align: right;

}
.show--playlist  tbody  tr:nth-of-type(odd) {
  background-color: unset;
}
.now__playing {
  color: #2874b6;
  font-weight: 600;
}
.show--playlist thead {
  display: none;
}


.show--playlist td.views-field.views-field-field-audio-sound-duration {
  max-width: 20%;
}

.show--playlist td.views-field.views-field-title {
  min-width: 70%;
}
.show--playlist tbody tr {
  cursor: pointer;
}
.show--playlist tbody tr:hover {
  background-color: #f4f4f4 !important;
}
.volume-slider {
  top: -110px !important;
  right: 55px !important;
}
.show--playlist .views-field-title {
  text-align: left;
}

.position--absulate {
  position: absolute;
}
.position--relative {
  position: relative;
}
.marquee #mp3-audio-duration {
  display: none;
}

.marquee {
  /*height: 50px;*/
  height: 28px;
  overflow: hidden;
  position: relative;
  /*background: yellow;*/
  /*color: orange;*/
  /*border: 1px solid orange;*/
}
.marquee #audio__name {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 25px;
  text-align: center;
  /* Starting position */
  -moz-transform:translateX(100%);
  -webkit-transform:translateX(100%);
  transform:translateX(100%);
  /* Apply animation to this element */
  -moz-animation: scroll-left 5s linear infinite;
  -webkit-animation: scroll-left 5s linear infinite;
  animation: scroll-left 5s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
  0%   { -moz-transform: translateX(100%); }
  100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
  0%   { -webkit-transform: translateX(100%); }
  100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
  0%   {
    -moz-transform: translateX(100%); /* Browser bug fix */
    -webkit-transform: translateX(100%); /* Browser bug fix */
    transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%); /* Browser bug fix */
    -webkit-transform: translateX(-100%); /* Browser bug fix */
    transform: translateX(-100%);
  }
}



/*
Extra
*/
.download-popup {
  /* padding: 20px; */
  text-align: center;
  background-color: #fff;
}
.modal-dialog {
  /*z-index: 1630;*/
}

.download-popup h3.modal-title {
  border: none;
  padding: 0;
  box-sizing: border-box;
  color: rgb(22, 90, 166);
  display: block;
  /* font-family: Futura-medium; */
  font-size: 30px !important;
  text-transform: uppercase !important;
  line-height: 32px;
}
.download-popup input[type="submit"] {
  background-color: #46b0e6;
  border: medium none;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 16px;
  text-transform: uppercase;
  transition: all 0.05s ease-in 0s;
}
.download-popup .modal-header {
  border-bottom: unset;
}

.popup .modal-dialog {
   pointer-events: unset !important;
}
.show--playlist .views-table td {
   border: none;
}