.playBar {
  width: 100%;
  height: 90px;
  background-color: #161718;
  padding: 8px 0;
  position: fixed;
  bottom: -90px;
  transition: height 500ms ease, bottom 500ms ease;
  overflow: hidden;
  z-index: 999999999999999999999;
}
.playBar .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.playBar .data {
  display: flex;
  height: 70px;
  align-items: center;
}
.playBar .bg {
  width: 100%;
  height: 100vh;
  background-size: cover;
	background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  filter: contrast(1.2) blur(18px) brightness(15%);
  transform: scale(1.2);
  opacity: 0;
  transition: opacity ease 1.5s;
  z-index: 2;
}
.playBar .logo {
  width: 66px;
  height: 66px;
}
.playBar .flip-card {
	background-color: transparent;
	width: 66px;
	height: 66px;
	perspective: 1000px;
	margin: 0px;
}
.playBar .flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}
.playBar .flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}
.playBar .flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.playBar .flip-card-front {
	background-size: cover;
	background-position: center center;
  border-radius: 3px;
}
.playBar .flip-card-back {
	background-size: cover;
	background-position: center center;
	transform: rotateY(180deg);
  border-radius: 3px;
}
.playBar .titles {
  padding-left: 16px;
}
.playBar .station-name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.playBar .now-playing {
  font-size: 15px;
  color: rgba(255,255,255,.7);
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.playBar .ppBtn {
  width: 48px;
  height: 48px;
  background-color: #ff0173;
  color: #fff;
  font-size: 18px;
  line-height: 48px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 13px;
  transform: translate(-50%);
  border-radius: 50%;
  cursor: pointer;
}
.playBar .play:before {
  content: "\f1bc";
  padding-left: 2px;
}
.playBar .pause:before {
  content: "\f1b0";
}
.playBar .btns {
  display: flex;
  align-items: center;
  margin-right: 22px;
}
.playBar .icon {
  width: 28px;
  height: 36px;
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 36px;
  text-align: center;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}
.playBar .vol-1::before  {
  content: "\f208";
}
.playBar .vol-2::before {
  content: "\f209";
}
.playBar .vol-x::before  {
  content: "\f20a";
}
.playBar .like-icon::before  {
  content: "\f17e";
}
.playBar .share-icon::before  {
  content: "\f1d1";
}
.playBar .maxmin-icon::before  {
  content: "\f196";
}
.playBar .like-icon {
  margin-left: 25px;
}
.playBar .maxmin-icon {
  position: absolute;
  right: 0;
  top: 18px;
}
.playBar .v2 {
  display: none;
}
.slider-wpr {
  display: flex;
  align-items: center;
}
#sliderRegular {
  width: 100px;
  margin-left: 0px;
  margin-right: 10px;
}
.playBar .noUi-horizontal {
    height: 2px;
    margin: 0;
  }
 .playBar .noUi-connects {
    width: 100%;
    height: 2px;
    position: relative;
    z-index: 1;
    bottom: 0px;
    margin-bottom: 1px !important;
}
.playBar .noUi-connects {
    width: 100%;
    height: 2px;
    position: relative;
    z-index: 1;
    bottom: 1px;
    margin-bottom: 1px !important;
}
.liked {
  color: #ff0173 !important;
}
.noUi-connect {
    background-image: linear-gradient(310deg,#ff0173,#ff0173) !important;
}
.noUi-horizontal .noUi-handle {
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 1px 13px 0 rgb(0 0 0 / 0%);
    height: 13px !important;
    width: 13px !important;
    cursor: pointer;
    margin-top: -1px  !important;
    outline: none;
    right: -10px;
}
.position {
  bottom: 0px;
}

.playBar.full {
  height: 100vh;
  display: flex;
  align-items: center;
}
.playBar.full .container {
  display: block;
}
.playBar.full .data {
  display: block;
  height: auto;
}
.playBar.full .logo {
  width: 250px;
  height: 250px;
  margin: 0 auto;
}
.playBar.full .bg {
  opacity: 1;
}
.playBar.full .flip-card {
	width: 250px;
	height: 250px;
}
.playBar.full .titles {
  padding-top: 10px !important;
  text-align: center;
  padding: 0;
}
.playBar.full .station-name {
  font-size: 28px;
}
.playBar.full .now-playing {
  font-size: 20px;
  line-height: 20px;
}
.playBar.full .ppBtn {
  width: 56px;
  height: 56px;
  line-height: 56px;
  position: relative;
  margin: 0 auto;
  top: auto;
  margin-top: 20px;
}
.playBar.full .btns {
  margin: 0 auto;
  margin-top: 20px;
  justify-content: center;
}
.playBar.full .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 10px;
}
.playBar.full .vol-icon {
  margin: 0;
}
.playBar.full .maxmin-icon {
  position: static;
}
.playBar.full .v1 {
  display: none;
}
.playBar.full .v2 {
  display: block;
}
.playBar.full  .slider-wpr {
  position: absolute;
  bottom: -50px;
  padding-right: 11px;
}
.playBar.full #sliderRegular {
  margin-left: 0px;
}








.shake-right {
	-webkit-animation: shake-right 0.7s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: shake-right 0.7s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
.pulsate-fwd {
	-webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;
	        animation: pulsate-fwd 0.5s ease-in-out infinite both;
}
.flip-in-ver-right {
	-webkit-animation: flip-in-ver-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: flip-in-ver-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.blink-1 {
	-webkit-animation: blink-1 0.6s both;
	        animation: blink-1 0.6s both;
}

@-webkit-keyframes flip-in-ver-right {
  0% {
    -webkit-transform: rotateY(-80deg);
            transform: rotateY(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 1;
  }
}
@keyframes flip-in-ver-right {
  0% {
    -webkit-transform: rotateY(-80deg);
            transform: rotateY(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes shake-right {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}
@keyframes shake-right {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}
