* player
*/

.sidebar-player {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 10px;
  width: 100%;
}

.sidebar-player .control-wrapper {
  margin: 4px -6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-player .control-btn {
  outline: none;
  border: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.769);
  background-color: transparent;
  border-radius: 50%;
}

.sidebar-player .control-btn:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.sidebar-player .control-btn .i-pause {
  display: none;
}

.sidebar-player .a-of-total {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-player.playing .album-cover {
  animation: rotating 10s linear infinite;
}

.sidebar-player.playing .control-btn .i-play {
  display: none;
}

.sidebar-player.playing .control-btn .i-pause {
  display: flex;
}

.player-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 1;
  width: 100%;
}

.album-cover {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: 0.14s ease;
}

.album-cover img {
  object-fit: cover;
  max-width: 100%;
  height: 100%;
  border-radius: 50%;
}

.player-right {
  flex: 1;
}

.player-right .song-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 0px;
}

.control-btn .i-off {
  display: flex;
}

.control-btn .i-on {
  display: none;
}

.control-btn.enabled .i-off {
  display: none;
}

.control-btn.enabled .i-on {
  display: flex;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.nwo-video {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .75);
  z-index: 3000;
  display: none;
}

.nwo-video.active {
  display: block;
}

.nwo-video-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  width: 100%;
}

.nwo-video-wrapper {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  border-radius: 20px;
}

.nwo-video-wrapper iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.nwo-video-close {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -65px;
  background-color: #262626;
  color: #77b6ab;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  border: none;
  padding: 0 20px;
  border-radius: 25px;
  transition: .14s ease;
}

.nwo-video-close:hover {
  color: #2dfad5;
}

.op-card--bottom-close {
  display: none;
}

@media (max-width: 768px) {
  .op-card .op-card--top {
    border-color: transparent;
    padding-bottom: 0px;
  }

  .op-stats {
    padding: 13px 23px;
  }

  .op-stats.op-id {
    background-color: transparent;
    border: none;
    padding: 0px;
  }


  .op-card .op-card--bottom {
    position: fixed;
    bottom: -1px;
    background: #262c3b;
    left: 0px;
    right: 0px;
    max-height: 80vh;
    border-radius: 25px 25px 0 0;
    z-index: 2000;
    padding-bottom: 30px;
    padding-top: 64px;
    overflow-y: auto;
    box-sizing: border-box;
    box-shadow: 0 -4px 41px rgba(0, 0, 0, .5);
    padding-left: 12px;
    padding-right: 12px;
    display: none;
    transform: translateY(110%);
  }

  .op-card--bottom-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 9px;
    background-color: rgb(39, 200, 255, .18);
    color: rgba(39, 200, 255, 1);
    border: none;
    outline: none;
  }
}

.sp-modal {
  position: fixed;
  z-index: 2020;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  display: none;
  align-items: center;
  justify-content: center;
}

.sp-modal.active {
  display: flex;
}

@media (min-width: 768px) {
  .sp-modal {
    padding: 30px 0;
    overflow-y: auto;
  }
}

.sp-modal-card {
  background: #252C3B;
  box-sizing: border-box;
  position: fixed;
  z-index: 2021;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .sp-modal-card {
    left: initial;
    right: initial;
    top: initial;
    bottom: initial;
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 1px solid #313949;
    max-height: calc(100vh - 80px);
  }
}

.sp-modal-header {
  background-image: url(dgh03sxm6452gdcs.png);
  background-size: cover;
  background-position: center;
  padding: 22px 20px 16px;
  position: relative;
  z-index: 2030;
  text-align: center;
}

@media (min-width: 768px) {
  .sp-modal-header {
    padding: 64px 30px 100px;
    border-radius: 25px 25px 0 0;
  }
}

.sp-modal-service-id {
  background: #FF5AA5;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  padding: 14px 22px;
  display: inline-block;
  margin-bottom: 22px;
}

.sp-modal-service-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}

.sp-modal-body {
  position: relative;
  z-index: 2040;
  padding: 30px;
  flex: 1;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .sp-modal-body {
    margin-top: -64px;
    padding: 0 30px 30px;
    flex: inherit;
    overflow: inherit;
  }

  .sp-modal-body-card {
    background: #293142;
    border: 1px solid #313949;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 28px;
    margin-bottom: 22px;
  }
}

.sp-modal-body-card {
  margin-bottom: 22px;
}

.sp-modal-close {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  border: none;
  outline: none;
  background: transparent;
  position: absolute;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 20px;
  z-index: 2050;
  font-size: 24px;
}

.mobile-navbar {
  position: fixed;
  z-index: 1031;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 56px;
  border-top: 1px solid;
  background-color: #252c3b;
  border-color: #313949;
  padding: 0 10px;
}

.mobile-navbar-content {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-around;
}

.mnc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #797d89;
}

.mnc-item.active {
  color: #fff;
}

.mnc-item-icon {
  font-size: 20px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}

.mnc-item-text {
  font-size: 12px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .mobile-navbar {
    display: none;
    opacity: 0;
    transform: translateY(100%);
  }
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #ffffff;
    vertical-align: top;
    border-color: #dee2e6;
}