/* ################ */
/* ### TEMPLATE ### */
/* ################ */
.audios-header-content-sidebar {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.audios-header-content {
  width: 80%;
  padding-bottom: 30px;
  background-color: #FFF;
}

.audio-title {
  background-color: #1B5174;
  padding: 8px;
}

.audio-title a {
  color: white;
}

@media screen and (max-width: 1000px) {
  .audios-header-content {
    width: 100%;
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.6);
    border-right: 0px solid black;
    border-left: 0px solid black;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    padding: 30px 20px 30px 20px;
  }
}

/* ################ */
/* ################ */
.audios-content-wrapper {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  background-color: white;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  min-height: 750px;
}

/* #################### */
/* ### CONTENT LEFT ### */
/* #################### */
.audios-content-cat {
  width: 25%;
  margin-right: 15px;
}

.audios-cat-list {
  cursor: pointer;
  text-align: center;
  padding: 10px;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: bold;
  color: #1d1e27;
  background: linear-gradient(#EAE289, #979B71);
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.6);
  border-radius: 5px;
}

.audios-cat-list:hover {
  opacity: 0.8;
}

.audios-cat-list:last-child {
  margin-bottom: 20px;
}

.wrapper-thumb-content-desc {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  margin-bottom: 20px;
}

.wrapper-thumb-content {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  height: 87px;
}

.wrapper-thumb-content img {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.wrapper-title-player {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
}

.audio-desc {
  display: none;
  background-color: #EFF2F5;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.6);
  margin-top: 5px;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(100, 100, 100, 0.5);
}

.audios-content-files {
  width: 75%;
}

.audio-file {
  padding: 12px;
  background-color: #EBEDE0;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
}

.wrapper-title-player audio {
  width: 100%;
}

.audio-front {
  text-align: center;
  padding-top: 50px;
  font-size: 25px;
  font-style: italic;
  color: #4E4E4E;
}

.file-title a {
  color: #039;
  font-weight: bold;
  text-decoration: none;
}

.file-title a:hover {
  color: #900;
  text-decoration: underline;
}

.audio-more {
  cursor: pointer;
  background-color: #555;
  color: white;
  font-weight: bold;
  text-align: center;
  padding-top: 29px;
  padding-right: 5px;
  padding-left: 5px;
  font-size: 30px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.audio-more:hover {
  background-color: #555;
}

.audio-download {
  background-color: #335B96;
  color: white;
  font-weight: bold;
  text-align: center;
  padding-top: 29px;
}

.audio-download button {
  background: none;
  border: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.audio-download:hover {
  background-color: #335B96;
}

.audio-youtube {
  background-color: #e52d27;
  font-weight: bold;
  text-align: center;
  padding-top: 29px;
  padding-right: 7px;
  padding-left: 7px;
  font-size: 30px;
  color: white;
}

.audio-youtube:hover {
  background-color: #e52d27;
}

/* ##################### */
/* ##################### */
@media screen and (max-width: 1000px) {
  .audios-content-wrapper {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
  }
  .audios-content-cat {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
  }
  .audios-cat-list {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-grow: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    margin: 5px;
    margin-bottom: 0px;
    width: 200px;
  }
  .audios-content-files {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .wrapper-thumb-content img {
    display: none;
  }
}
