body {
  background: #1f213c;
}

body::before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0 0 0 / 0%);
  z-index: 8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-delay: 0s;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.overlay::before {
  z-index: 8;
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.blur {
  -webkit-animation: blur 0.3s linear forwards;
  -moz-animation: blur 0.3s linear forwards;
  -ms-animation: blur 0.3s linear forwards;
  -o-animation: blur 0.3s linear forwards;
  animation: blur 0.3s linear forwards;
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .3s;
  animation-delay: .3s;
  filter: blur(5px);
}

@keyframes blur {
  to {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
  }
}

.platform-audiopost {
  width: 100%;
  height: 100vh;
  background-color: #333;
  position: relative;
}

.audiopost {
  background: transparent;
  box-shadow: 0px 0px 25px rgba(0 0 0 / 20%);
  transition: .3s;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.background-audiopost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-audiopost img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: blur(12px);
  -webkit-filter: blur(12px);
  z-index: 1;
}

.efect:after {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100% );
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.carousel-control-next, .carousel-control-prev {
  z-index: 3;
}

.carousel-indicators {
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  margin: 0;
  border-bottom: 0;
  background-color: #8365e8;
  height: 5px;
}

.cover {
  width: 92%;
  height: calc(100% - 210px);
  display: flex;
  margin: 0;
  /*max-width: 500px;*/
}

@media (min-width: 768px) {
  .cover {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .cover {
    width: 40%;
  }
}

@media (min-width: 1400px) {
  .cover {
    width: 33.33%;
  }
}

@media only screen and (max-height: 720px) and (orientation: landscape) {
  .audiopost .cover {
    margin: 0;
    height: calc(100% - 160px);
    max-width: 500px;
    background: 0 0;
    box-shadow: none;
  }
}

.audiopost .cover picture img {
  box-shadow: none;
  height: 100%;
}

@media only screen and (max-height: 720px) and (orientation: landscape) {
  .audiopost .cover figure > * {
    object-fit: contain;
  }
}

.audiopost .cover img {
  width: 100%;
  display: block;
  box-shadow: 0 10px 20px rgba(0,0,0,.4);
  object-fit:contain;
  object-position: center;
}

.embed-audiopost {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 4;
  padding: 15px;
}

.audiopost-picture picture::after {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.8) 100% );
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 8;
}

.audiopost-picture {
  position: relative;
}

.embed-audiopost h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 20px;
}

@media (min-width: 992px) {
  .embed-audiopost h3 {
    font-size: 30px;
  }
}

.embed-audiopost audio {
  width: 90%;
  filter: invert;
}

/* ---- */

#audiolist {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 9;
  background: transparent;
  overflow: auto;
  transform: translate3d(0, 0, 0);
  /*transition: transform 0.8s;*/
  transition-timing-function: cubic-bezier(0.8, 0, 0.26, 1);
}

@media (min-width: 768px) {
  #audiolist {
    top: inherit;
    width: 50%;
    transform: translate3d(50%, 0, 0);
    transition-timing-function: inherit;
  }
}

@media (min-width: 992px) {
  #audiolist {
    top: inherit;
    width: 33.33%;
    transform: translate3d(100%, 0, 0);
    transition-timing-function: inherit;
  }
}

#audiolist.open {
  transform: translate3d(0, 0, 0);
  /*transition: transform 0.8s;*/
  transition-timing-function: ease, ease;
  transition-timing-function: cubic-bezier(0.8, 0, 0.26, 1);
  background: #1f213c;
}

@media (min-width: 992px) {
  #audiolist.open {
    transform: translate3d(0, 0, 0);
    /*transition: transform 0.8s;*/
    transition-timing-function: ease, ease;
    transition-timing-function: cubic-bezier(0.8, 0, 0.26, 1);
    position: relative;
  }
}

input[type=range] {
  -webkit-appearance: none;
  background-color: #3e3e60;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #7a6be5;
  border-radius: 50%;
  cursor: pointer;
  height: 15px;
  width: 15px;
}

.screen-reader-text {
  position: absolute;
  visibility: hidden;
}

.disabled {
  cursor: not-allowed !important;
}

.previous-track-btn.disabled, .next-track-btn.disabled {
  opacity: .5;
}

.show {
  display: inline-block !important;
}

#playlist {
  background: transparent;
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 70px;
}

#audiolist.open #playlist {
  position: relative;
  bottom: 0;
}

.head-player {
  padding: 30px 50px;
  display: grid;
  position: sticky;
  top: 0;
  background: transparent;
  z-index: 2;
}

.player {
  margin: 0;
  position: relative;
  width: 100%;
}

.large-toggle-btn {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #ab58f2 0%, #756BE9 100%);
  box-shadow: 0px 0px 6px rgba(0 0 0 / 20%);
  margin: 0 30px;
}

.large-toggle-btn .large-play-btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.large-toggle-btn .large-play-btn:before {
  content: url('https://api.iconify.design/ph/play-fill.svg?color=white&height=30');
  position: relative;
  top: 2px;
}

.large-toggle-btn .large-pause-btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.large-toggle-btn .large-pause-btn:before {
  content: url('https://api.iconify.design/ph/pause-fill.svg?color=white&height=30');
  position: relative;
  top: 2px;
}

.info-box {
  width: 100%;
  display: grid;
}

.info-box .track-info-box {
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-box .track-info-box .track-title-text {
  display: inline-block;
  font-size: 16px;
  text-align: center;
}

.info-box .track-info-box .audio-time {
  margin-bottom: 15px;
  font-size: 14px;
  opacity: .5;
}

.info-box .track-info-box:before, .info-box .track-info-box:after {
  content: " ";
  display: table;
}

.info-box .track-info-box:after {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}

.progress-box {
  float: left;
  width: 100%;
  position: relative;
  order: -1;
}

.progress-box .progress-cell {
  height: 12px;
  position: relative;
}

.progress-box .progress-cell .progress {
  background: #3e3e60;
  height: 4px;
  position: relative;
  width: 100%;
  border-radius: 2px;
}

.progress .progress-buffer {
  background: linear-gradient(90deg, #ab58f2 0%, #756BE9 100%);
  height: 100%;
  width: 0;
  border-radius: 3px;
}

.progress-indicator {
  background: #7a6be5;
  border-radius: 50%;
  cursor: pointer;
  height: 15px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: -5px;
  width: 15px;
}

.area-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 30px 0 15px 0;
  order: -1;
}

.previous-track-btn {
  cursor: pointer;
  display: inline-block;
}

.previous-track-btn:before {
  content: url('https://api.iconify.design/ph/skip-back-fill.svg?color=white&height=25');
}

.next-track-btn {
  cursor: pointer;
  display: inline-block;
}

.next-track-btn:before {
  content: url('https://api.iconify.design/ph/skip-forward-fill.svg?color=white&height=20');
}

.player:before, .player:after {
  content: " ";
  display: table;
}

.player:after {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}

.play-list {
  display: none;
  background: #1e213c;
  padding: 30px 30px 80px 30px;
}

@media (min-width: 992px) {
  .play-list {
    padding: 30px;
  }
}

.play-list-row {
  display: flex;
  margin: 10px 0;
  width: 100%;
}

.track-title .playlist-track {
  color: white;
  text-decoration: none;
  transition: .3s ease;
  font-size: 13px;
}

.track-title .playlist-track:hover {
  opacity: .5;
  text-decoration: none;
}

.small-toggle-btn {
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 3px 10px;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 20px;
  background: linear-gradient(90deg, #ab58f2 0%, #756BE9 100%);
  box-shadow: 0px 0px 6px rgba(0 0 0 / 20%);
  flex: none;
}

.small-toggle-btn .small-play-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 17px;
}

.small-toggle-btn .small-play-btn:before {
  content: url('https://api.iconify.design/ph/play-fill.svg?color=white&height=10');
}

.small-toggle-btn .small-pause-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 17px;
}

.small-toggle-btn .small-pause-btn:before {
  content: url('https://api.iconify.design/ph/pause-fill.svg?color=white&height=10');
}

.track-number {
  display: inline-block;
  color: #6a65e1;
  margin-right: 10px;
}

.track-title {
  display: inline-block;
}

.track-title.active-track .playlist-track {
  color: #756BE9;
}

.play-list-row:before, .play-list-row:after {
  content: " ";
  display: table;
}

.play-list-row:after {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}

.volume-slider {
  width: 92%;
  height: 4px;
  cursor: pointer;
  border-radius: 3px;
}

.volume-control {
  position: relative;
  margin-bottom: 30px;
  display: none;
}

.volume-control::after {
  content: url('https://api.iconify.design/ph/speaker-simple-high-fill.svg?color=white&height=20');
  position: absolute;
  right: 0;
  top: 2px;
}

#navbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 10px;
}

.navigation {
  width: 90%;
  height: 50px;
  background: #272b51;
  border-radius: 30px;
  box-shadow: 0px 0px 204px rgba(0 0 0 / 40%);
}

@media (min-width: 992px) {
  .navigation {
    width: 50%;
  }
}

@media (min-width: 1400px) {
  .navigation {
    width: 30%;
  }
}

.btn-nav, .btn-nav a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  font-size: 20px;
}

#btn-close {
  position: sticky;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  color: white;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.cunter-slider {
  color: white;
  text-align: center;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-nav a {
  color: white;
  text-decoration: none;
  align-items: center;
}

header {
  position: absolute;
  z-index: 8;
  width: 100%;
  padding: 10px;
  top: 0;
  left: 0;
}

header img {
  width: 180px;
  height: auto;
}

@media (min-width: 768px) {
  header img {
    width: 200px;
    height: auto;
  }
}

.modal-content {
  background: #1e213c;
  color: white;
}

.btn-close {
  color: white;
}

.btn-close {
  content: "";
}

.btn-close-share {
  background: none;
  border: none;
  color: white;
  font-size: 25px;
  position: absolute;
  top: -50px;
}

.share a {
  font-size: 35px;
  color: white;
  transition: .3s;
  margin: 5px;
}

.share a:hover {
  color: #7a6be5;
}

.share ul li {
  margin: 0 !important;
}

.progress {
  overflow: inherit;
}

/* -- */

.small-toggle-btn.post {
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  margin: 10px;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 50px;
  background: linear-gradient(90deg, #ab58f2 0%, #756BE9 100%);
  box-shadow: 0px 0px 6px rgba(0 0 0 / 20%);
}

.small-toggle-btn.post .small-play-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 17px;
}

.small-toggle-btn.post .small-play-btn:before {
  content: url('https://api.iconify.design/ph/play-fill.svg?color=white&height=30');
  width: 40px;
  height: 40px;
  top: 10px;
  position: absolute;
}

.small-toggle-btn.post .small-pause-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 17px;
}

.small-toggle-btn.post .small-pause-btn:before {
  content: url('https://api.iconify.design/ph/pause-fill.svg?color=white&height=30');
  width: 40px;
  height: 40px;
  top: 10px;
  position: absolute;
}

#area-carousel {
  width: 100%;
  position: relative;
}

#area-carousel.open {
  width: 100%;
  position: relative;
}

@media (min-width: 992px) {
  #area-carousel {
    width: 100%;
  }
}

@media (min-width: 992px) {
  #area-carousel.open {
    width: 66.66%;
  }
}

#audiolist.open #playlist {
  background: #272a45;
}

#audiolist.open #btn-close {
  display: flex;
}

#audiolist.open #playlist .player .play-list {
  display: block;
}

#audiolist.open #playlist .player .head-player .volume-control {
  display: block;
  margin-bottom: 15px;
}

#audiolist.open #playlist .player .head-player .area-controls {
  order: initial;
  margin: 10px 0 10px 0;
}

#audiolist.open #playlist .player .head-player .info-box .progress-box {
  order: initial;
}

#audiolist.open #playlist .player .info-box .track-info-box .track-title-text {
  font-size: 14px;
}

#audiolist.open #playlist .player .head-player {
  background: #282a45;
  padding: 10px 30px 0px 30px;
}

#area-carousel.open .carousel .carousel-item .audiopost-picture picture::after {
  background: transparent !important;
}

#area-carousel.open .carousel .carousel-item .audiopost .cover {
  width: 50%;
}

#area-carousel.open .carousel .carousel-item .audiopost .cover img {
  object-fit: contain;
  object-position: center;
}

.share .icon {
  font-size: 30px;
  color: white;
  transition: .3s;
  margin: 5px;
  cursor: pointer;
}

.back_ {
  position: absolute;
  z-index: 8;
  left: 10px;
  top: 10px;
}

.back_ a {
  text-decoration: none;
}

