/* * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h1.mt-5.mb-4 {
    font-size: 40px;
}

h1 {
    font-family: "Inter", sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
    color: #fff;
}

h3 {
    font-family: "Inter", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 30.26px;
    text-align: center;
    color: #fff;

}

.song-time h4 {
    color: #939393;
    font-size: 16px;
}

.hero-section {
    background-image: url(../images/login-bg.png);
    height: 100vh;
    background-position: 100%;
    background-repeat: no-repeat !important;
    background-size: cover;
}

.pinnacle-form-main {
    padding: 30px;
    border: 1px solid #fff;
    border-radius: 15px;
    margin: 0px 40px;
    background: #FFFFFF14;
}

.pinnacle-form-main label {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.78px;
    text-align: left;
    color: #fff;
}

.no-account {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;

}

.content-wrap{
    min-height: 80vh;
    height: 100%;
}
.no-account p {
    color: #fff;
    font-weight: 400;
}

video#myVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(0.5);
}

.form-pinnacle {
    z-index: 22;
    position: relative;
}

.pinnacle-form-main {
    position: relative;
}

.pinnacle-video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.logo.mb-3.text-center.px-5 {
    position: relative;
    z-index: 2;
}
.fav-wrapper{
   justify-content: center!important;
}
/* Layout pages */
html body {
    scroll-behavior: smooth;
 }
header {
    background-color: transparent;
    position: relative;
}

:root {
    --gradient: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
/*
body {
    background: #0a0a0a;
    min-height: 100vh;
} */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 5%;
    backdrop-filter: blur(12px);
    background: var(--glass-bg);
    border-bottom: var(--border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    background: #0a0a0a;
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(10, 10, 10, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;width:100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s linear infinite;
    background-size: 300%;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    width: 100%;
    animation: gradient 8s linear infinite;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle .bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.4s ease;
}

.mobile-nav-toggle .bar:nth-child(1) { top: 14px; }
.mobile-nav-toggle .bar:nth-child(2) { top: 19px; }
.mobile-nav-toggle .bar:nth-child(3) { top: 24px; }

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        backdrop-filter: blur(10px);
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03));
        pointer-events: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links a:nth-child(5) { transition-delay: 0.5s; }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translate(-50%, 5px) rotate(45deg);
        width: 24px;
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translate(-50%, -5px) rotate(-45deg);
        width: 24px;
    }
}
.logo {
    text-align: center;
}

.pinnacle {
    font-size: 1em;
}

.radio {
    font-size: 0.4em;
}










/* nav.navbar {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1;
    padding: 20px;
} */

/* scroll css  */

/* .navbar {
    transition: background-color 0.3s ease;
} */

/* .scrolled {
    background-color: rgb(0 0 0) !important;
    border-bottom: 1px solid #5a5555;
} */

/* end  */
/* .pinnacle-menu a.btn.nav-link:hover {
    background-color: #787676;
    color: #fff;
}

.pinnacle-menu a.nav-link {
    font-family: Barlow;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    color: #fff;
    background-color: #484848;
    padding: 10px;
    margin: 0px 10px;
    border: 1px solid;
    border-radius: 5px;
} */

/* .pinnacle-menu a.nav-link.active {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
} */
body {
    background-image: url(../images/login-bg.png);
    width: 100%;
    background: linear-gradient(#83838312, #000), url(../images/login-bg.png) fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

 .pinnacle-banner-main {
    /* padding: 64px 0px; */
    padding-top: 65px;
}

.crousel-content {
    background-color: #990000;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #fff;
    height: 52vh;
}

/* .btn.btn-link {
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
} */

.music-list li {
    list-style: none;
}

.music-content h3 {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    font-family: Barlow;
    margin: 0;

}

.music-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin: 0;
    color: #fff;
}

.music-list-inner i.fa-solid.fa-ellipsis-vertical {
    color: #fff;
}

.music-list {
    height: 300px;
    overflow: scroll;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 10px;
    border-radius: 5px;
}

ul {
    padding: 0;
    margin: 0;
}

.music-list {
    height: 300px;
    overflow: scroll;
}

.music-player {
    background-color: #05380B;
    padding: 24px 10px;
    border-radius: 5px;
}

.audio-controls .fa-solid {
    color: #fff;
    font-size: 24px;

}

.btn.btn-custom a {
    text-decoration: none;
    color: #fff;
}

.button-parent {
    background-color: transparent;
    border: none;
    padding: none;
    margin: 5px 20px;
}


.carousel-text-Country {
    color: #662200;
}

.carousel-text-Rock {
    color: #990000;
}

.carousel-text-Hip {
    color: #002b80;
}

.carousel-text-Soul {
    color: #5900b3;
}

.content {
    padding: 20px;
    /* border-radius: 10px;
    border: 1px solid #fff; */
    height: 45vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.w-fit-content {
    max-width: 150px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.music-list::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.music-list {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}
.social-links button.button-parent {
    border: 1px solid #ffff;
    padding: 0px 0px;
    border-radius: 28px;
}

.social-links .fa-brands {
    font-size: 16px;
    color: #fff;
    font-weight: 50;
    margin: 10px;
    height: 15px;
    width: 16px;
    /* line-height: 15px; */
}

.music-list a {
    text-decoration: none;
    color: #fff;
}

.music-content h3,
p {
    text-align: left;
}

/* audio player custom css  */

div#playerContainer {
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    justify-content: end;
    flex-direction: column;
}

div#controls {
    display: flex;
    justify-content: space-between;
}

div#timeContainer {
    display: flex;
    justify-content: space-between;
}

.duration-time {
    color: #ffff;
}

.song-controler .fa-solid {
    color: #fff;
    font-size: 24px;
}

.song-item {
    margin: 16px;
}

.buttons {
    background-color: transparent;
    border: none;
    margin: 0px 20px;
}

button#playPauseButton {
    background-color: transparent;
    border: none;
}

/* end audio player css  */

.audio-player-content h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #ffffff;
    margin-bottom: 12px;
}

.audio-player-content h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 12px;
    color: #fff;
    text-align: left;
}

/* .slider_container {
    width: 920px;
    margin: auto;
    clear: both;
    background: url(../images/shadow_top.png);
}

.flex-caption {
    position: absolute;
    right: 11px;
    bottom: 20px;
}

.caption_title_line {
    width: 450px;
    height: 75px;
    padding: 5px 15px 10px 15px;
    color: #303030;
    background-color: #05380B;
} */

/* .flex-caption h2 {
    color: #fff;
    font-size: 20px;
    padding: 5px 0 5px 0;
    margin: 0px;
} */

/* .flex-caption p {
    color: #fff;
} */

/* .flex-container a:active,
.flexslider a:active {
    outline: none;
} */

/* .slides,
.flex-control-nav,
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
} */

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
    width: 100%;
    margin: 0;
    padding: 0 0 30px 0;
    background: url(../images/shadow_bottom.png) no-repeat center bottom;
}

.flexslider .slides>li {
    display: none;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
    max-width: 100%;
    display: block;
    border: 10px #ededed solid;
    width: 100%;
    height: 400px;
}

.flex-pauseplay span {
    text-transform: capitalize;
}

.slides:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .slides {
    display: block;
}

* html .slides {
    height: 1%;
}

.no-js .slides>li:first-child {
    display: block;
}

.flexslider {
    position: relative;
    zoom: 1;
}

.flexslider .slides {
    zoom: 1;
}

.flexslider .slides>li {
    position: relative;
}

.flex-container {
    zoom: 1;
    position: relative;
}

/* Direction Nav */
.flex-direction-nav li a {
    width: 45px;
    height: 42px;
    margin: 0;
    display: block;
    position: absolute;
    right: 11px;
    cursor: pointer;
    text-indent: -9999px;
}

.flex-direction-nav li a.next {
    background: url(../images/next.png) no-repeat center;
    bottom: 184px;
}

.flex-direction-nav li a.prev {
    background: url(../images/prev.png) no-repeat center;
    bottom: 141px;
}


.flex-direction-nav li a.disabled {
    opacity: .3;
    filter: alpha(opacity=30);
    cursor: default;
}

/* Control Nav */
.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -30px;
    text-align: center;
}

.flex-control-nav li {
    margin: 0 0 0 5px;
    display: inline-block;
    zoom: 1;
    display: inline;
}

.flex-control-nav li:first-child {
    margin: 0;
}

.flex-control-nav li a {
    width: 13px;
    height: 13px;
    display: block;
    cursor: pointer;
    text-indent: -9999px;
}

.flex-control-nav li a:hover {
    background-position: 0 -13px;
}

.flex-control-nav li a.active {
    background-position: 0 -26px;
    cursor: default;
}


/* Media Queries
/*-----------------------------------------------------------------------------------*/

@media screen and (max-width: 1000px) {
    .slider_container {
        width: 90%;
        margin: 0 0 0 2%;
        clear: both;
        background: none;
        padding: 30px 0 0 0;
    }

    .flexslider {
        width: 100%;
        margin: 0;
        padding: 0 0 30px 0;
        background: none;
    }

    .flex-direction-nav li a {
        width: 45px;
        height: 42px;
        margin: 0;
        display: block;
        position: absolute;
        right: -10px;
        cursor: pointer;
        text-indent: -9999px;
    }

    .flex-direction-nav li a.next {
        background: url(../images/next.png) no-repeat center;
        bottom: 85px;
    }

    .flex-direction-nav li a.prev {
        background: url(../images/prev.png) no-repeat center;
        bottom: 40px;
    }

    .flex-caption {
        display: none;
    }
}

a.btn.btn-discription {
    background-color: #ffff;
    color: #05380b;
    font-weight: 500;
    float: inline-end;
}

.episode-name {
    background-color: #05380b;
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 5px;
    color: #ffff;
}

ul.slides {
    display: flex;
}

ul.slides li {
    width: 100%;
}


/* New Body Animation */

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #000;
}

/* End Animation */
.media-library-controls.expanded {
    /* padding: 0px 0px 8px 0px; */
    height: 35px;
}

/* .media-library-controls.expanded{padding:0px 0px 8px 0px;height:35px}.media-library-controls.expanded .media-library-click-area .icon-button{transform:scale(1.4)}.media-library-controls.expanded input{padding:5px;margin:5px;box-shadow:0px 0px 4px #90909073; color: black !important;}.media-library-controls.expanded .pagination{padding-right:2px}.media-library-controls{position:relative;padding:8px 0px 15px 0px;height:13px;transition:all 0.4s ease-in-out;cursor:pointer}.media-library-controls .media-library-click-area{display:flex;width:100%;margin-right:55px}.media-library-controls .media-library-click-area .icon-button{font-size:var(--sam-large)}.media-library-controls .media-library-click-area:hover .icon-button{transform:scale(1.4)}.media-library-controls .icon-button{line-height:12px;text-decoration:inherit;display:inline-block;font-size:var(--sam-small);transition:all 0.2s ease-in-out;transition-delay:0.2s}.media-library-controls .icon-button:before{padding:0px;margin-left:10px;margin-right:10px}.media-library-controls .icon-button:focus{outline:none}.media-library-controls input{transition:all 0.2s ease-in-out}.media-library-controls .query-text{font-size:var(--sam-x-small)}.media-library-controls .pagination{position:absolute;top:0px;bottom:10px;right:25px;margin-top:auto;margin-bottom:auto;height:17px;display:flex;flex-direction:row;justify-content:flex-end;transition:all 0.4s ease-in-out}.media-library-controls .pagination .icon-button{height:17px;padding-left:3px;padding-right:3px;font-size:var(--sam-x-x-large);font-family:monospace;cursor:pointer;user-select:none;font-weight:100}.media-library-controls .pagination .icon-button:disabled{filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#4dffffff,endColorstr=#4dffffff)";filter:alpha(opacity=60);zoom:1;-moz-opacity:0.3;-khtml-opacity:0.3;opacity:0.3}.media-library-controls .pagination .navigation-page-counter{height:17px;display:flex;padding:0px 5px 0px 0px;font-size:var(--sam-medium-large);font-family:monospace;cursor:pointer;}.media-library-controls .pagination .navigation-page-counter input[type=number]{width:17px;height:17px;padding:1px;margin:-1px 0 0 0;border:var(--sam-modal-border);text-align:center;border-radius:5px;font-size:var(--sam-medium-large);box-shadow:0px 0px 4px #90909073;-moz-appearance:textfield}.media-library-controls .pagination .navigation-page-counter .nav-total-pages{height:17px;padding:2px 0px 0px 0px}.media-library-controls .pagination .navigation-page-counter ::-webkit-inner-spin-button{-webkit-appearance:none;margin:0} */

.carousel-container {
    /* background-color: rgba(0, 0, 0, 0.7); */
    border-radius: 10px;
    /* Optional: rounded corners */
}
.carousel-wrapper a:hover {
    text-decoration: none;
}
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    /* Hide scrollbar initially */
    margin-bottom: 20px;
    /* Space between each carousel */
}

.carousel-wrapper:hover {
    overflow: auto;
    /* Show scrollbar on hover */
}

.carousel-list {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.image-wrapper {
    position: relative;
    height: auto;
    border: 1px solid #fff;
    border-radius: 10px;
    /* height: 23vh; */
}

.carousel-list img {
    height: 100%;
}

.slide-title {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 100%;
   color: white;
    text-align: center;  text-align: left;
    margin: 5px 0;
    box-sizing: border-box;background:#da1616;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}

.image-info {
    color: white;
}

.image-info h3 {
    margin: 5px 0;
    font-size: 1.6em;
    text-align: start;
}

.image-info p {
    margin: 0;
    font-size: 1.3em;
    /* Adjust font size as needed */
}

.podcast-titile {
    color: #f9f9f9;
    text-align: start;
}


/* New Player  */
.music-container {
    width: 100%;
    /* min-height: 100vh; */
    display: grid;
    /* place-items: center; */
}

.music-body {
    box-shadow: 0 20px 50px #3accf031;
    background: #000;
    padding: 1.3rem;
    border-radius: 1.5rem;
    position: relative;
    /* overflow: hidden; */
    border: solid #fff;
}

.player-btn {
    outline: none;
    border: 0;
    background: #000;
    font-size: 0.9rem;
    color: #fff;
    height: 2.188rem;
    width: 2.188rem;
    border-radius: 50%;
    cursor: pointer;
}

.top-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.volume {
    /* z-index: 5; */
    color: #fff;
}

.layer {
    z-index: 4;
    position: absolute;
    background: #000;
    border: 2px solid #000;
    height: 2.188rem;
    width: 17.5rem;
    left: 0;
    right: 0;
    margin: auto;
    top: 1.3rem;
    border-radius: 1.5rem;
    display: grid;
    place-items: center;
    visibility: hidden;
}

.volume-slider,
.progress-bar {
    position: relative;
    width: 100%;
    height: 0.2rem;
    background: #000;
}

.volume-slider {
    width: 80%;
}

.volume-slider {
    right: -15px;
    ;
}

.volume-slider .bar,
.progress-bar .progress-line {
    display: block;
    width: 0;
    height: inherit;
    background-color: #fff;
}

.volume-slider .bar {
    width: 100%;
}

.volume-slider .volumerange,
.progress-bar .progress {
    width: 100%;
    height: inherit;
    background: transparent;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
}

.volume-slider .volumerange::-webkit-slider-thumb,
.progress-bar .progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 0.7rem;
    width: 0.7rem;
    background-color: #7D30FA;
    border-radius: 50%;
    cursor: pointer;
}

/* volume range slider design end */

.layer.hide {
    visibility: visible;
}

.music-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.7);
}

.music-info {
    text-align: center;
}

.music-info h2 {
    font-size: 1rem;
    margin-top: 1rem;
    letter-spacing: 0.02rem;
    color: rgb(117, 116, 116);
    color: #fff;
}

.music-progress {
    margin-top: 1rem;
}

.music-progress .progress-bar {
    background: #6607ff;
    height: 0.2rem;
    width: 100%;
    margin-bottom: 0.4rem;
    position: relative;
}

.progress-bar {
    cursor: pointer;
}

.progress {
    background: #7D30FA;
    width: 0;
    height: 100%;
    position: relative;
}

.progress::before {
    content: "";
    position: absolute;
    height: 0.7rem;
    width: 0.7rem;
    border-radius: 50%;
    top: 50%;
    right: -5px;
    z-index: 2;
    transform: translateY(-50%);
    background: inherit;
    transition: all 0.1s ease;
}

.duration {
    display: flex;
    color: #fff;
    justify-content: space-between;
}

.duration span {
    font-size: 0.7rem;
}

.music-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prevbtn,
.nextbtn,
.playpause {
    border: 0;
    outline: 0;
    font-size: 1rem;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.prevbtn:hover,
.nextbtn:hover {
    color: #fff;
}

li {
    list-style: none;
}

.playpause {
    font-size: 1rem;
    /* position: absolute; */
    background: #fff;
    height: 2.5rem;
    width: 2.5rem;
    color: #000;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.fa-play {
    position: relative;
    display: inline-block;
    left: 0.1rem;
}

.main-controls {
    position: relative;
    /* border: 1px solid #b88ffa; */
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1.3rem;
}

.color {
    color: #fc00b0;
}

/* music list */

.list-close {
    background: none;
    font-size: 1.1rem;
    color: #ff1b1bf3;
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
}

.songs-list {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #050000;
    top: 0;
    left: 0;
    z-index: 10;
    visibility: hidden;
}

.showlist {
    visibility: visible;
}


/* ENd */

h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #05380B;
    margin-bottom: 20px;
}

.heading-secondary {
    font-size: 35px;
    color: #fff;
    font-weight: 500;
}

ul {
    padding: 0;
    margin: 0;
}

.music-list {
    height: 300px;
    overflow: scroll;
}

.music-player {
    background-color: #05380B;
    padding: 24px 10px;
    border-radius: 5px;
}

.audio-controls .fa-solid {
    color: #fff;
    font-size: 24px;

}

.btn.btn-custom a {
    text-decoration: none;
    color: #fff;
}

.button-parent {
    background-color: transparent;
    border: none;
    padding: none;
    margin: 5px 20px;
}

.content {
    padding: 20px;
    /* border-radius: 10px;
    border: 1px solid #fff; */
    height: 45vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.w-fit-content {
    max-width: 150px;
}

.pinnacle-banner-main button.btn.btn-primary.w-auto {
    margin: 0 auto;
}

.playlist-icons i.fa-regular {
    color: #fff;
    font-size: 20px;
    padding: 10px;
    background-color: #5e5b5b57;
    border-radius: 50%;
}

.playlist-icons i.fa-solid {
    color: #fff;
    font-size: 20px;
    padding: 13px 18px;
    background-color: #5e5b5b57;
    border-radius: 50%;
}

.create-playlist {
    border: 1px solid #2c2c2c;
    padding: 15px;
    border-radius: 5px;
    box-shadow: rgba(167, 167, 167, 0.35) 0px 5px 15px;
}

/* ENd */


/* Responsive page css  */

@media screen and (max-width:991px) {
    .pinnacle-banner-main {
        height: 100%;
        /* padding: 80px 0px; */
        object-fit: cover;
        padding-bottom: 20px;
    }

    .navbar-sm {
        background-color: #000;
    }

    .pinnacle-menu a.nav-link {
        background-color: transparent;
        border: none;
        text-align: left;
        font-size: 20px;
        margin: 0px;
        border-radius: unset;
        border-bottom: 1px solid #fff;
        line-height: 30px;
    }

    .navbar-sm .navbar-nav {
        margin-top: 20px;
    }

    /*
    .navbar-toggler-icon {
        -webkit-filter: invert(100%);
        filter: invert(100%);
    } */

    h1 {
        font-size: 30px;
    }
}

@media screen and (max-width:1320px) {
    h1.card-title {
        font-size: 32px;
    }

    h2 {
        font-size: 20px;
    }

}

.nav-link {
    text-wrap: nowrap;
}

@media screen and (max-width:767px) {
    .pinnacle-form-main {
        margin: 0;
    }
    h1.mt-5.mb-4 {
        font-size: 25px;
    }
    .my-profile {
        max-width: 520px!important;
        margin-left: 10px!important;
        margin-right: 10px!important;
    }
    /* section.owl-custom .card {
        margin: 0 20px !important;
    } */
    .carousel-wrapper-live .owl-carousel .item img {
        width: 70px!important;
        height: 100%!important;
    }
    .music-content h3 {
        font-size: 14px;
    }
    .detail.d-flex.gap-3 h2 {
      font-size: 16px;
    }
    h3#test {
        font-size: 25px;
    }
    button#dropdownMenuButton1 {
        font-size: 14px;        padding:1PX 2PX;
    }
    .dropdown-custom .fa-share {
        padding: 5px!important;
    }
    .margin-small {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .margin-top {
        margin-top: 0 !important;
    }

    /* .music-container {
        margin: 25px 0px;
    } */
    .song-list-parent{
        height: 200px!important;
        overflow-y: scroll;
    }
    .favoritee .playlist-detailed.music-body ul.music-playlists li h3 {
        font-size: 14px;
   }
   .favoritee .playlist-detailed.music-body .music-body {
       padding: 1.3rem 0.875rem;
   }
   .favoritee .playlist-detailed.music-body .playlist-main.d-flex.justify-content-between.align-items-center.m-3 {
       margin-left: 0 !important;margin: 0px !important;
   }
   .favoritee ul.music-playlists {
       height: 270px;
   }
   .favoritee ul.music-playlists h4 {
       font-size: 0.875rem !important;
   }
   .back-btn {
    margin-top: -165px!important;
}
}

.song-list-parent{
    height: 550px;
    overflow-y: scroll;
}
ul.music-playlists li h3 {
    text-align: left;
    font-size: 20px;
    margin: 0;
}

ul.music-playlists {
    height: 390px;
    overflow-y: scroll;
}

/* .music-playlists p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 430px;
} */

/* create playlist page css */
.dropdown-toggle::after {
    display: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #212529;
    color: #fff;
}
.dropdown-menu li{
    padding-left: 30px;
}
.dropdown-menu{
    background: #0a0a0a;
    margin-right: 1px;
}
.music-img {
    width: 73%;
    margin: 0 auto;
}

/* end */


/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f115;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #646464;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.playlist-content-main:hover {
    background-color: #3c3c3c;
}

.modal-content-custom {
    min-height: 30vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.music-list-inner:hover {
    background-color: #3c3c3c;
}

.playlist-main:hover {
    background-color: #3c3c3c;
}

/* Upgrade page CSS */

.get-premium {
    background: radial-gradient(86.28% 289.13% at 50% 50%, #57005B 0%, #300D31 50%);
    overflow: initial;
    display: inline-grid;
    border: 3px solid #C0A263;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.button-87 {
    /* margin: 10px; */
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-87:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.button-87:active {
    transform: scale(0.95);
}

.get-premium li {
    list-style: none;
}

.get-premium ul {
    margin: 0px 35px;
}

.btn-offer {
    border: 1px solid #C0A263 !important;
    width: max-content;
    color: #C0A263 !important;
}

.offer-price h2 {
    color: #fff;
    font-size: 30px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 0;
}

.offer-price span {
    text-decoration: line-through;
    color: #bfbfbf;
}

.offer-price h3 {
    color: #ffbd14;
    font-weight: 500;
    text-align: left;
    font-size: 20px;
    margin-top: 5px;
}

/* Upgrade page css end  */
img.card-img-top {
    width: 47px;
    margin: 0 auto;
    margin-top: 15px;
}

.pinnacle-banner-main .card-body {
    padding: 0;
}

/* Podcast  Page css */

.image__slider {
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.image__slider-track {
    overflow: hidden;
}

.image__slider-slides {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    transform: translateX(0%);
    transition: 500ms ease;
    height: 100%;
}

.image__slider-slide img {
    width: 100%;
}

.image__slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#next,
#prev {
    border: none;
    outline: none;
    background-color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px 15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 300ms ease;
}

#next:hover,
#prev:hover {
    background-color: #ddd;
}

#next:active,
#prev:active {
    scale: 1.2;
}

/* your style (varibale) */



@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (max-width: 1199px) {
    .favoritee ul.music-playlists li h3 {
        font-size: 16px;
    }
    .favoritee .music-body {
        padding: 1rem 0.875rem;
    }
    .effect .light-box1 .box {
        padding: 15px 15px!important;
    }
    .favoritee ul.music-playlists {
        height: 300px;
    }
    .favoritee h4 {
        font-size: 0.875rem !important;
    }
    .music-container.w-100 .detail.d-flex.gap-3 h2 {
        font-size: 16px;
   }
   .detail.d-flex.gap-3 p {
    font-size: 12px!important;
   }
}
.image__slider-slide {
    /* height: 230px; */
    display: flex;
    align-items: center;
    justify-content: center;
}


.image__slider-slide {
    position: relative;
    display: flex;
}

.slider-images {
    position: relative;
    width: 100%;
}

.slider-images img {
    width: 100%;
    display: block;
}

.image__slider-slide a {
    text-decoration: none;
}

/* End podcast css */

/* .carousel-wrapper {
    height: 28vh;
    overflow: hidden;
} */

.slide-title {
    text-align: left;
}

/* new css for button */
/* CSS */
.button-48 {
    appearance: none;
    background-color: transparent;
    border-width: 0;
    box-sizing: border-box;
    color: #ffffff;
    border: 1px solid #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1em;
    margin: 0;
    opacity: 1;
    outline: 0;
    padding: 1.5em 2.2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    text-transform: uppercase;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1), background-color 100ms cubic-bezier(.694, 0, 0.335, 1), color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.button-48:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-color: #000;
    border-radius: 5px;
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
}

.button-48:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.button-48:after {
    background-color: #000;
    border-radius: 5px;
}

.button-48 span {
    z-index: 1;
    position: relative;
}

/* css end  */

.image-wrapper img {
    border-radius: 10px;
    width: 100%;
}

.placeholder-cstm::placeholder {
    color: #575656;
}

.input-group-cstm {
    height: 42px;
}

.border-cls {
    border: 1px solid #fff;
}

.inner-wrapper .card {
    /* flex-basis: 33.33333%; */
    padding: 15px;
}
.premiumm {
    margin-bottom: 1rem !important;
}
.inner-card {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1)
}

.img-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
}
h4.text-center.text-white {
    font-size: 21px!important;
}
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-content h1 {
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.btn-wrapper {
    display: block;
    text-align: center;
}

.view-btn {
    width: 70%;
    height: 40px;
    border: none;
    background-color: steelblue;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.view-btn:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .4);
}

.light-box1 {
    position: fixed;
    left: 0;
    top: 0;
    background-color:#000;
    width: 100%;
    height: 100vh;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms ease-out;
}
.light-box-favorite{
     position: fixed;
     left: 0;
     top: 0;
     background-color:#000;
     width: 100%;
     height: 100vh;
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transition: all 200ms ease-out;
}

.light-box2 {
    position: fixed;
    left: 0;
    top: 0;
    background-color:#000;
    width: 100%;
    height: 100vh;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms ease-out;
}

/* .box { */
    /* background-color: #000000;
    transform: scale(0);
    transition: all 200ms ease-in-out;
    padding: 30px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .1);
    position: relative; */
/* } */

/* .box-wrapper {
    width: 100%;
    height: 100%;
} */

.box .light-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.box .close-btn {
    position: absolute;
    z-index: 100;
    font-size: 25px;
    color: #ffffff !important;
    left: 92%;
    top: 11px;
    margin-top: 20px;
    border-radius: 50%;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 35px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 200ms linear;
    font-weight: 500;
}


/* Effect */
.effect .light-box1 {
    opacity: 1;
    visibility: visible;
}

.effect .light-box1 .box {
    transform: scale(1);
    height: 100%;
    padding: 15px 70px;
}

.effect .light-box-favorite {
    opacity: 1;
    visibility: visible;
}

.effect .light-box-favorite .box {
    transform: scale(1);
    height: 100%;
    padding: 15px 70px;
}

.podcastEffect .light-box2 {
    opacity: 1;
    visibility: visible;
}

.podcastEffect .light-box2 .box {
    transform: scale(1);
}

@media (max-width: 780px) {
    /* .card {
        flex-basis: 50%;
    } */

    .title {
        font-size: 30px;
    }

    .music-container{
        margin-top: 20px;
    }
}

@media (max-width: 500px) {
    .card {
        flex-basis: 5100%;
    }

    .box .close-btn {
        margin-left: 0;
        left: 90%;
    }
}

.credit {
    font-size: 14px;
}

li.podcast-item {
    cursor: pointer;
}

.hidden {
    display: none;
}


@media screen and (max-width:991px) {
    .cols {
        margin-top: 15px;
    }

    .slide-title h3 {
        font-size: 15px;
        font-weight: 400;
    }
}

/* podcast slider responsive*/
@media screen and (max-width:767px) {
    .col-3 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.flex-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
    height: 100%;

}

.box {
    padding: 0;
}

.footer {
    margin-top: auto;
}

@media screen and (max-width:576px) {
    .cols:first-child {
        margin-top: 0px;
    }
    .music-img{
        height:120px!important;
        width:100%;
    }
}

.music-content-image {
    height: 50px;
    max-width: 50px;
}

.music-content-image img {
    width: 100%;
    height: 100%;
    border-radius: 16%;
    border: 1px solid #fff;
}

a.btn.btn-link {
    box-shadow: none;
}

/* pyment card  css */
.card-form-container {
    background-color: #f8f9fa;
    color: #212529;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#card-element {
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.card-form-header {
    color: #007bff;
    margin-bottom: 20px;
}

/* end */

/* AccountUpdate css */
.header {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.image-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.img-info {
    margin-left: 20px;
}

.img-info b {
    font-size: 16px;
    color: #333;
}

.img-info p {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.upload-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.upload-btn:hover {
    background-color: #0056b3;
}

.form-section {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #007bff;
    outline: none;
}

.actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.save-btn,
.cancel-btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.save-btn {
    background-color: #28a745;
    color: white;
}

.save-btn:hover {
    background-color: #218838;
}

.cancel-btn {
    background-color: #ffc107;
    color: white;
}

.cancel-btn:hover {
    background-color: #e0a800;
}

.deactivate-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.deactivate-info {
    color: #333;
}

.deactivate-info b {
    font-size: 16px;
}

.deactivate-info p {
    font-size: 14px;
    color: #666;
}

.deactivate-btn {
    padding: 10px 20px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.deactivate-btn:hover {
    background-color: #c82333;
}

@media(max-width: 576px) {
    .container {
        padding: 15px 30px;
    }

    .image-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .img-info {
        margin-left: 0;
        margin-top: 15px;
    }

    .actions {
        flex-direction: column;
        gap: 10px;
    }
}

.my-profile {
    padding: 20px 40px;
    border: 2px solid #ccc;
    border-radius: 10px;
    margin: 20px auto;
    margin-top: 100px;
    max-width: 700px;
    background-color: #f9f9f9;
}

/* End */
.audio-style {
    width: 100%;
    margin: 20px 0px;
    /* height: 35px; */
}

.audio-style:hover,
.audio-style:focus,
.audio-style:active {
    -webkit-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    -webkit-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.audio-style {
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -moz-box-shadow: 2px 2px 4px 0px #ffffff;
    -webkit-box-shadow: 2px 2px 4px 0px #f6f6f6;
    box-shadow: 2px 2px 4px 0px #fbfbfb;
    -moz-border-radius: 7px 7px 7px 7px;
    -webkit-border-radius: 7px 7px 7px 7px;
    border-radius: 7px 7px 7px 7px;
}

.img-wrapper {
    position: relative;
}

.fa-heart {
    position: absolute;
    font-size: 24px;
    right: 10px;
    top: 10px;
    padding: 5px;
    transition: 1s;
    border-radius: 50%;
    background-color: #fff;
}

.dropdown-custom {
    position: absolute;
    top: 10px;
    left: 10px;
    transition: 1s;
}

.fa-heart:hover {
    color: #000;
    background-color: #e7b6b6;
    padding: 5px;
    border-radius: 50%;
    transition: 1s;
}

.dropdown-custom .fa-share {
    padding: 7px;
    transition: 1s;
    border-radius: 50%;
    /* background-color: #fff; */
    font-size: 24px;
    transition: 1s;
}

.dropdown-custom .dropdown-toggle {
    border-radius: 50%;
    border: none;
    transition: 1s;
}

.dropdown-custom .dropdown-toggle:hover {
    background-color: #5f5f5f;
}


/* ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
} */

/*--blog----*/

.sec-title {
    position: relative;
    margin-bottom: 70px;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1em;
    color: #ff8a01;
    font-weight: 500;
    background: rgb(247, 0, 104);
    background: -moz-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
    background: -webkit-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
    background: linear-gradient(to left, rgba(247, 0, 104) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F70068', endColorstr='#441066', GradientType=1);
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.sec-title h2 {
    position: relative;
    display: inline-block;
    font-size: 48px;
    line-height: 1.2em;
    color: #1e1f36;
    font-weight: 700;
}

.sec-title .text {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    color: #888888;
    margin-top: 30px;
}

.sec-title.light h2,
.sec-title.light .title {
    color: #ffffff;
    -webkit-text-fill-color: inherit;
}

.pricing-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.pricing-section .outer-box {
    max-width: 1100px;
    margin: 0 auto;
}


.pricing-section .row {
    margin: 0 -30px;
}

.pricing-block {
    position: relative;
    padding: 0 30px;
    margin-bottom: 40px;
}

.pricing-block .inner-box {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 0 0 30px;
    max-width: 370px;
    margin: 0 auto;
    border-bottom: 20px solid #40cbb4;
}

.pricing-block .icon-box {
    position: relative;
    padding: 50px 30px 0;
    background-color: #40cbb4;
    text-align: center;
}

.pricing-block .icon-box:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 75px;
    width: 100%;
    border-radius: 50% 50% 0 0;
    background-color: #ffffff;
    content: "";
}


.pricing-block .icon-box .icon-outer {
    position: relative;
    height: 150px;
    width: 150px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    padding: 10px;
}

.pricing-block .icon-box i {
    position: relative;
    display: block;
    height: 130px;
    width: 130px;
    line-height: 120px;
    border: 5px solid #40cbb4;
    border-radius: 50%;
    font-size: 50px;
    color: #40cbb4;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.pricing-block .inner-box:hover .icon-box i {
    transform: rotate(360deg);
}

.pricing-block .price-box {
    position: relative;
    text-align: center;
    padding: 10px 20px;
}

.pricing-block .title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #222222;
    font-weight: 600;
}

.pricing-block .price {
    display: block;
    font-size: 30px;
    color: #222222;
    font-weight: 700;
    color: #40cbb4;
}


.pricing-block .features {
    position: relative;
    max-width: 200px;
    margin: 0 auto 20px;
}

.pricing-block .features li {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #848484;
    font-weight: 500;
    padding: 5px 0;
    padding-left: 30px;
    border-bottom: 1px dashed #dddddd;
}

.pricing-block .features li:before {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 16px;
    color: #2bd40f;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    margin-top: -8px;
}

.pricing-block .features li.false:before {
    color: #e1137b;
    content: "\f057";
}

.pricing-block .features li a {
    color: #848484;
}

.pricing-block .features li:last-child {
    border-bottom: 0;
}

.pricing-block .btn-box {
    position: relative;
    text-align: center;
}

.pricing-block .btn-box a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 30px;
    background-color: #40cbb4;
    border-radius: 10px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 300ms ease;
}

.pricing-block .btn-box a:hover {
    color: #ffffff;
}

.pricing-block .inner-box:hover .btn-box a {
    color: #40cbb4;
    background: none;
    border-radius: 0px;
    border-color: #40cbb4;
}

.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .inner-box {
    border-color: #1d95d2;
}

.pricing-block:nth-child(2) .btn-box a,
.pricing-block:nth-child(2) .icon-box {
    background-color: #1d95d2;
}

.pricing-block:nth-child(2) .inner-box:hover .btn-box a {
    color: #1d95d2;
    background: none;
    border-radius: 0px;
    border-color: #1d95d2;
}

.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .price {
    color: #1d95d2;
}

.pricing-block:nth-child(3) .icon-box i,
.pricing-block:nth-child(3) .inner-box {
    border-color: #ffc20b;
}

.pricing-block:nth-child(3) .btn-box a,
.pricing-block:nth-child(3) .icon-box {
    background-color: #ffc20b;
}

.pricing-block:nth-child(3) .icon-box i,
.pricing-block:nth-child(3) .price {
    color: #ffc20b;
}

.pricing-block:nth-child(3) .inner-box:hover .btn-box a {
    color: #ffc20b;
    background: none;
    border-radius: 0px;
    border-color: #ffc20b;
}

/* End  */

/* responsive css by sandhya */

@media screen and (max-width: 768px) {
    .pinnacle-form-main h3.font-sm {
        font-size: 20px;
        margin-bottom: 24px;
        margin-top: 24px;
    }

    .pinnacle-form-main label.form-label {
        font-size: 16px;
        padding: 0;
        font-weight: 400;
    }

    .pinnacle-form-main button.btn.btn-primary {
        width: 100%;
    }

    .pinnacle-form-main a.btn.btn-link {
        font-size: 14px;
        text-wrap: nowrap;
    }

    .pinnacle-form-main label.form-check-label {
        text-wrap: nowrap;
        font-size: 14px;
    }

    /* .pinnacle-form-main .no-account {
        display: block;
    } */

    .pinnacle-form-main .no-account p {
        text-align: center;
        margin: 0;
    }

    .pinnacle-form-main .form-check .form-check-input {
        float: none;
        margin: 0;
    }

    /* .footer-main {
        padding: 0;
    }

    .footer-main h4 {
        font-size: 18px;
    } */

    h1 {
        font-size: 26px;
    }

    section {
        margin: 0px !important;
    }

    .pinnacle-banner-main {
        padding-bottom: 0px;
    }

    .container {
        padding: 0px 15px;
    }
}

.pinnacle-form-main .form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.pinnacle-form-main .form-check .form-check-input {
    float: none;
    margin-left: 0;
}

button#button-addon1 {
    z-index: auto;
}


@media screen and (max-width: 576px) {
    #video-player {
        height: 30vh !important;
    }
    .song-list-parent {
        height:200px;
        overflow-y:scroll;
    }

}

#video-player {
    height: 100%;
}
#podcast-list{
        overflow: scroll;
        height: 800px;
}

/* .margin-cstm {
    margin-top:20px;
} */

@media screen and(max-width:767px){
    .margin-cstm {
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

}


/* <------------------Footer 2025 jan 23--------------------> */

.footer {
    background-color: #0d1117;
    color: #c9d1d9;
    padding: 20px;
    font-size: 0.9rem;
    /* position: fixed;
    bottom: 0;left:0;
    width: 100%; */
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin: 10px;
}

.footer-column h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffffff;text-align:left;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    display: inline;
    margin-right: 15px;
}

.footer-column ul li a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #30363d;
    padding-top: 20px;
    margin-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 40px;
}

.footer-legal {
    text-align: center;
    /* flex: 1; */
}

.footer-legal p {
    margin: 5px 0;
}

.footer-legal a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.music-img{
    height:250px;
    width:100%;
}
@media (max-width: 750px) {
    .song-duration {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        display:block;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        text-align: left;
    }
    .music-img{
        height:180px;
        width:100%;
    }

    .footer-column ul {
        display: block;
    }

    .footer-column ul li {
        display: block;
        margin-bottom: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        order: 2;
        font-size: 0.8rem;
    }

    .footer-logo {
        order: 1;
        margin-bottom: 10px;
    }
}

/* <-New slider 27-01-2025 */

.carousel-container {
    padding: 0;
}

.carousel-wrapper {
    /* Optional: You can set a max-width or adjust the width */
    width: 100%;
}

/* Ensure images are responsive and fill the container */
.carousel-wrapper .owl-carousel .item img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensure the image covers the area */
}

.carousel-wrapper-live .owl-carousel .item img {
    width: 26%;
    height: 110px;
    /* object-fit: cover; */
}

.carousel-wrapper .owl-carousel .item {
    text-align: center; /* Centers title and image */
}

.slide-title h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 0;
}
.owl-custom .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
   color: #fff;font-size: 2rem!important;
    font-weight: 400;
}
.owl-custom span {
    color: #fff;
    font-size: 2rem !important;
    font-weight: 400;
}
section.owl-custom .item a {
    width: 100%;
    text-decoration:none;
}
.detail.d-flex img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-top: -16px;
}
.detail.d-flex.gap-3 h2 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 30.26px;
    text-align: left;
    color: #fff;
    margin-bottom: 0;
}
.detail.d-flex.gap-3 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin: 0;
    color: #fff;
    line-height: 1.45;
}
.detail.d-flex.gap-3 {
    padding-left: 10px;
}
.video-container {
    width: 90% !important;
    margin: auto;
    height:90%;
    display: block;
}
.music-container.w-100.video-container .music-body {
    height: 100%;
}
.profile-block{
       min-height: 100vh;
        height: 100%;
        align-items: center;
        display: flex ;
        justify-content: center;

}
.subscription-block{
     min-height: 100vh;
        height: 100%;
        display: flex ;
        flex-direction: column;
        justify-content: center;
        min-height:80vh;
        height: 100%;
    }
    .container.mt-5.subscription-block {
        margin-top: 0px !important;
    }
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
        flex-direction: column;
        justify-content: normal;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        backdrop-filter: blur(10px);
        padding-top: 7rem;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03));
        pointer-events: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links a:nth-child(5) { transition-delay: 0.5s; }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translate(-50%, 5px) rotate(45deg);
        width: 24px;
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translate(-50%, -5px) rotate(-45deg);
        width: 24px;
    }

}
@media (min-width: 1700px) {
.footer-content {
    max-width: 80%;
   }
   .song-item {
    margin: 16px 0;
}
}
@media (min-width: 768px) and (max-width: 1199px) {
.content-wrap .video-container {
    height: 100%!important;
   }
.content-wrap .effect .light-box1 {
   padding: 0 50px!important;
}
.content-wrap .music-container.w-100.video-container .music-body {
    height: 500px!important;
}
.music-container.w-100 {
    width: 90% !important;
    margin: auto;
}
h1.mt-5.mb-4 {
    font-size: 30px!important;
}
.flex-wrapper {
   min-height: 80vh;
}
.content-wrap{
 min-height: 80vh;
}
}
@media (min-width: 1200px) and (max-width: 1920px) {
.song-list-parent {
    height: 485px;
}
/* .video-container {
     height: 90%;
} */
section#podcast-section .song-list-parent {
    height: 485px !important;
}
.section#podcast-section .video-container {
    height: 90%!important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.footer-column {
    width: 33% !important;
    flex: unset;
}
.footer-column h3 {
    font-size: 15px;
}
}


.create-playlist-section{
    background: var(--gradient);
    border-radius: 20px;
}
.fb-links {
    background: #fff;
    padding: 10px 15px;
}
.fb-links li {
    display: block !important;
}
.fb-links li a {
    color: #fff!important;
    font-size: 0.9rem;
}
.fb-links {
    background: #0d1117;
    padding: 10px 15px;
    border-radius: 8px;
    width: 48%;
    margin: auto;
    border: 1px solid #fff;
    display: none;
    overflow: hidden;
    opacity: 1;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

.fb-links.open {
    display: block;
    opacity: 1;
    animation-name: fadeInOpacity;
}

.fb-links.closing {
    animation-name: fadeOutOpacity;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOutOpacity {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
i.fa-solid.fa-plus {
    color: #fff;
    padding: 0.375rem .75rem;
  font-size: 15px;
}
button#dropdownMenuButton2 i {
    font-size: 14px;
}
button#dropdownMenuButton2 {
    padding: 1px 9px;
}
a.plus-icon:hover {
    color: #fff;
    background-color: #23272b !important;
    border-color: #1d2124;
}
a.plus-icon{
    background-color: #343a40;
    border-color: #343a40;
    border-radius: .25rem;
}
.playlist-img img {
    width: 35px !important;
    height: 35px;
}
.playlist-detail.p-2 i {
    margin: 0 10px;
}
.playlist-detail.p-2 {
    width: 100%;
    font-size: 0.875rem;
    padding: 5px !important;
    align-items: end !important;
    justify-content: flex-end !important;
    display: flex;
}
.playlist-detail.p-2 p {
color:#fff!important;
}
.playlist-detail.p-2 a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.playlist-detail.p-2 h5 {
    font-size: 1rem;
}
.modal-scroll{
    height: 150px;
    overflow-y: scroll;
}
.back-btn {
    margin-top: -125px;
}
@media (max-width: 520px)  {
    .back-btn {
        margin-top: -175px!important;
    }
    .back-btn a.btn {
        height: 30px !important;
        align-items: center;
        display: flex;
    }
    }
 @media (min-width: 992px) and (max-width: 1199px) {
    .back-btn {
        margin-top: -150px!important;
    }
}
svg.logo {
    background: #746a1c;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}
svg.logo:hover {
    background: #5a5109;
}
.modal-content.play-list-modal{
    background: #306372 !important;
    border: 1px solid #fff;
}
.modal-content.play-list-modal input{
    background:#fff!important;
}
.play-list-modal .playlist-content-main:hover {
    background-color: #092847!important;
}
.play-list-modal .playlist-content-main:hover {
    background-color: #092847 !important;
    padding: 0 5px;
}
.playlist-content-main.d-flex.justify-content-start.align-items-center.gap-3 {
    padding: 5px;
}
.play-list-modal  button.btn.btn-custom.btn-light {
    background: #092847;
    color: #fff;
}
.playlist-modal-body{
    height: 220px;
    overflow-y: scroll;
    scrollbar-width: none;
}
.play-list-modal .modal-header.border-bottom.border-secondary {
    border-bottom: 1px solid #fff !important;
}
.play-list-modal .modal-footer {
    padding-bottom: 0;
}
.play-list-modal .modal-body {
    padding-bottom: 5px;
}
.favorite-block .music-body {
    box-shadow: 0 20px 50px #3accf031;
    background: #306372;
    padding: 1.3rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    border: solid #fff;
}
.favorite-block .btn-dark {
    color: #fff;
    background-color: #092847;
    border-color: #092847;
}
.favorite-block h4 {
    color: #fff !important;
}
.favorite-block ul.music-playlists li h3 {
    text-align: left;
    font-size: 17px;
    margin: 0;
}
.favorite-block .playlist-main.d-flex.justify-content-between.align-items-center.m-3 {
    border-bottom: 1px solid #fff;
}
.favorite-block .playlist-main:hover {
    background-color: #092847;
}
.favorite-block .music-body {
    box-shadow: 0 20px 50px #3accf031;
    background: #306372;
    padding: 10px 10px;
}
.favorite-block ul.music-playlists {
    height: 310px;
    overflow-y: scroll;
   scrollbar-width: none;
}
button:focus {
    outline: none!important;
}
:focus-visible {
    outline: none!important;
}
.btn.focus, .btn:focus {
   box-shadow: none!important;
}
.error-txt {
    color: #eb291f !important;
    font-weight: 400;
    background: #000;
    padding: 2px 10px 3px;
    font-size: 15px;
}

.shadow::before,
.shadow::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  background: linear-gradient(45deg,red,blue,green,yellow,#e11d74,black,#ffff00,#aa0000);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 20px;
  z-index: -1;
  animation: animate 25s linear infinite;
}

.shadow::after {
  filter: blur(25px);
}

@keyframes animate {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}
 .pinnacle-form-main label.form-check-label {
        text-wrap: nowrap;
        font-size: 12px;
    }

@media (max-width: 576px) {
  .carousel-wrapper-live .card {
    margin: 0 20px!important;
}
.image-wrapper {
    margin: 0 20px;
}
}
 .image-wrap{
     position: relative;
    height: 100%;
 }
 .overlay-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
 }
.no-account.mt-3.signup-bg a:hover {
    color: #3081c7;
}

.no-account.mt-3.signup-bg a {
    color: #46a0ef;
}
.privacy a{
  color: #46a0ef;
}
.privacy a:hover{
  color: #3081c7;
}
.invalid-feedback {
    color: #ea152a !important;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #ea152a !important;
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
box-shadow: 0 0 0 .25rem rgba(234, 21, 42, 0.25) !important;

}
/* @media (min-width: 768px) {
.g-recaptcha div {
    width: 100% !important;
}
.g-recaptcha {
    width: 100%!important;
}
.iframe-captcha iframe{
    width:100%!important
}
} */
.recaptcha-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.recaptcha-wrapper .g-recaptcha {
  transform: scale(1);
  transform-origin: 0 0;
}

@media (max-width: 1199px) {
  .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.75);
  }
}

@media (max-width: 320px) {
  .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.75);
  }
}
    @media (max-width: 380px) {
   .pinnacle-form-main label.form-check-label {
       font-size: 12px!important;
    }
    .pinnacle-form-main a.btn.btn-link {
        font-size: 12px!important;
    }
}
