/*
    MadGuyGFX 
    PROMusicFM
*/

@import url('fonts.css?r=8202020');

* {
    margin: 0;
    padding: 0;
}
html {
    width: 100%!important;
    height: 100%!important;
    overflow-x: initial !important;
    margin-bottom: 0!important;
    padding-bottom: 0!important;
    
}
body {
    background: #000 url('../img/hbfm_main_bg3.png') repeat;
    min-height: 100%;
    overflow-x: hidden!important;
    position: relative!important;
    margin: 0!important;
    font-family: 'poppinsregular', sans-serif!important;
    font-size: 0.875rem!important;
    font-weight: 400!important;
    line-height: 1.5!important;
    color: #212529!important;
    counter-reset: top5-counter;
}
@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes beat {
	to { transform: scale(1.4); }
}
@keyframes letBounceBaby
{
  0%
  {
    transform: scale( .98 );
  }
  20%
  {
    transform: scale( 1 );
  }
  40%
  {
    transform: scale( .96 );
  }
  60%
  {
    transform: scale( 1 );
  }
  80%
  {
    transform: scale( .96 );
  }
  100%
  {
    transform: scale( .98 );
  }
}
/** Custom **/
.request-button {
    -webkit-animation: glowing 1300ms infinite;
        -moz-animation: glowing 1300ms infinite;
        -o-animation: glowing 1300ms infinite;
        animation: glowing 1300ms infinite;
    background: #ff0067;
    border: 1px solid rgba(0,0,0, 0.2)!important;
}
@-webkit-keyframes glowing {
0% {
  -webkit-box-shadow: 0 0 3px #b24571;
}
50% {
  -webkit-box-shadow: 0 0 15px #ff69a5;
}
100% {
  -webkit-box-shadow: 0 0 3px #b24571;
}
}
@keyframes glowing {
0% {
  box-shadow: 0 0 3px #b24571;
}
50% {
  box-shadow: 0 0 15px #ff69a5;
}
100% {
  box-shadow: 0 0 3px #b24571;
}
}
.card {
    background: #424549;
    padding: 0px!important;
    border: none!important;
    margin-bottom: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.3);
}
.card-body {
    padding: 10px!important;
}
.header-title {
    font-size: 22px;
    font-family: 'Oswald'!important;
    color: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    background: #960000 url('../img/hbfm_title_bg.gif') repeat-x center!important;;
}
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 9;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
.main_header {
    width: 100%;
    height: 599px;
    padding: 50px;
    background: transparent url(../img/hbfm_header_valentines_bg.png?v=6) repeat-x center bottom;
    
    overflow: hidden!important;
}
.logo {
    width: 640px;
    margin-top: 30px;
    -webkit-animation: letBounceBaby 1s ease infinite;
    -moz-animation: letBounceBaby 1s ease infinite;
    -o-animation: letBounceBaby 1s ease infinite;
    animation: letBounceBaby 1s ease infinite;
    z-index: 99!important;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
.footer {
    color: #fff;
    padding: 70px;
    background: url('../img/hbfm_footer_bg2.png?v=10202020.1004') repeat-x center top;
    height: 300px;
}
.footer a {
    color: #fff;
}
.footer h2, h3 {
    font-family: 'Oswald'!important;
}
.navbar {
    background: #000000;
    padding: 10px!important;
    margin-bottom: 15px;
    z-index: 9!important;
}
.navbar-nav li {
    padding:  0px 10px;
}
.nav-item a {
    font-size: 18px;
    font-family: 'Oswald'!important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff !important;
    padding: 10px!important;
    transition: 0.8s ease !important;
}
.nav-item a:hover {
    background: #000000 url('../img/hbfm_nav_hover.gif') center center repeat;
}
.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background: rgba(0,0,0, 0.2)!important;
    border: 1px solid #e6206f!important;
    border-radius: .25rem;
    color: #fff!important;
}
.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid{
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 0;
}

.no-gutter>[class*="col-"]{
    padding-left: 5px;
    padding-right: 5px;
}
.bx-wrapper {
    box-shadow: none!important;
    border: none!important;
    background: none!important;
}

video.vid_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    min-width: 100%;
    min-height: 600px;
    z-index: 1;
    object-position: center;
    object-fit: cover;
}
/** Current Time **/
.time-frame {
    color: #ffffff;
    width: 100%;
    font-family: Arial;
}

.time-frame > div {
    width: 100%;
    text-align: center;
}

#date-part {
    font-size: 1.4em;
}
#time-part {
    font-size: 3em;
}

/** DJ On Board Profile **/

.card-profile {
    width: 100%;
    background: #09325e url(../img/hbfm_onboard_bg.gif);
    background-repeat: no-repeat;
    background-position: 50% 0;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden!important;
    border: 0;
    padding-bottom: 10px;
    -webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.3);
}
.card-profile .btn {
    font-size: 12px!important;
    border-radius: 25px!important;
    letter-spacing: .1rem!important;
    font-weight: bold!important;
    padding: 7px 10px!important;
    text-transform: uppercase!important;
}
.card-img-top {
    border-radius: 0;
    height: 154px;
  }

.card-img-profile {
    max-width: 100%;
    border-radius: 50%;
    margin-top: -73px;
    margin-bottom: 5px;
    width: 170px;
    height: 170px;
    border: 5px solid #e6e5e1;
  }

.card-title small {
    display: block;
    font-size: .6em;
    margin-top: .2em;
}
.live-badge {
    margin-left: 20px;
    margin-top: 10px;
    position: absolute;
    padding: 2px 6px!important;
    font-size: 12px!important;
    color: #fff;
    border-radius: 4px;
    font-weight: bolder;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
    background: #000;
    left: 0;
}
b.flash-dot {
    animation-name: flash;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}
@keyframes flash {
    from {color: #d9534f;}
    to {color: #fff;}
}
span.ob-djname {
    color: #fff!important;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 2px;
    line-height: 45px!important;
    font-size: 1.85rem!important;
    font-family: 'Oswald'!important;
    margin-bottom: 10px;
    text-shadow: 2px 2px #000;
    
}
span.ob-djprog {
    font-size: 12px;
    color: #fff!important;
    text-transform: uppercase!important;
    font-family: 'Oswald'!important;
    margin-top: -15px!important;
}

.text-ellipsis {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/** Sticky Player **/
.footer-player {
    position: fixed!important;
    bottom: 0;
    width: 100%;
    background: rgb(18,110,189);
    background: linear-gradient(0deg, rgba(18,110,189,1) 0%, rgba(0,212,255,0) 100%);
    padding: 20px;
    z-index: 9!important;
    color: #fff;
}
/** Top Chatters **/

.top5-container {
    margin: 10px auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.top5-profile {
    width: 200px;
    margin-bottom: 10px;
    padding: 10px;
}
.top5-user-img {
    height: 180px;
    padding: 5px;
    border: 5px solid rgba(0,0,0, 0.4);
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
}
.top5-user-img img {
    float: none;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
}

.top5-user-info {
    color: #fff;
    margin-top: 10px;
    text-align: center;
}

.top5-name {
    font-size: 16px;
    font-weight: 600;
}

.top5-rankpoints {
    text-transform: uppercase;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
}
/** Staff List Box **/
.dj-footer-box {
	overflow: hidden;
    position: relative;
}
.dj-footer-bg {
	height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
	background: -moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.9) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,.9)));
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.9) 100%);
    background: -o-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.9) 100%);
    background: -ms-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.9) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.9) 100%);
}
.dj-footer-info {
	color: #fff !important;
	text-shadow: 0 1px 2px #333;
	position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 15px;
}
span.dj-fname {
	letter-spacing: +3px;
	line-height: 16px;
	display: block;
	font-size: 18px;
	font-family: Oswald,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: bold;

}
/** Marquee Slider **/
:root {
  --marquee-width: 100%;
  --marquee-height: 280px;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: 260px;
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
    width: 100%;
    height: 280px;
    background: transparent;
    color: #fff!important;
    overflow: hidden;
    position: relative;
}
.marquee:before, .marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}

.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    white-space: nowrap;
    padding-right: 10px;
}

.marquee-content li img {
    width: 100%;
    height: 300px;
    margin-right: 10px;
    border-radius: 10px;
}

@media (max-width: 600px) {
    html { font-size: 12px; }
    :root {
        --marquee-width: 100vw;
        --marquee-height: 16vh;
        --marquee-elements-displayed: 3;
    }
    .marquee:before, .marquee:after { 
        width: 5rem; 
    }
    .navbar-nav li {
        margin-bottom: 10px!important;
    }
}
/** SHOUTcast Custom CSS3 by MadGuyGFX ,!, **/

div.cctitle {
    color: #fff!important;
    font-weight: 500!important;
}
div.ccartist {
    color: #fff!important;
    font-size: 14px!important;
    font-weight: 600!important;
}
div.ccalbum {
    display: none!important;
}
div.cctrack {
    padding: 10px!important;
    border-radius: 10px!important;
    background: #e1548c!important;
    margin-bottom: 10px!important;
}
div.cctrack:nth-child(4) {
    border-bottom: none !important;
    margin-bottom: 0px!important;
}
div.cctrack:first-child div.cccover:before {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f04b";
    font-size: 30px;
    color: #fff;
}
div.cccover {
    color: #fff;
}
div.cctrack svg {
    display: none!important;
}

div.cctrack:first-child:before {
	color: red;
	content: 'NOW PLAYING: ';
    font-size: 11px;
    font-weight: 900;
    animation-name: flash;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}
div.cctrack:nth-child(5) {
  display: none;
}
@keyframes flash {
    from {color: transparent;}
    to {color: #fff;}
}
div.ccbuy {
  display: none!important;
}
div.cccover img {
  display: none!important;
}
div.cccover {
  padding: 5px!important;
  background: none!important;
  border: none!important;
  margin-top: -5px!important;
}
div.cccover:before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f001";
  font-size: 30px;
}
div.ccdetails {
    margin-left: 40px!important;
}
a.ccbuy {
  display: none!important;
}