<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');

:root {
    --color-1: #2f3240;
}

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


body {
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    background-color: #e8eef3;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

/*header*/
.header {
    background-color: var(--color-1);
    padding: 12px 0;
    line-height: 1.5;
    position: fixed;
    width: 100%;
    z-index: 2;
}

.header .logo,
.header .nav {
    padding: 0 15px;
}

.header .logo a {
    font-size: 30px;
    color: #ffffff;
    text-transform: capitalize;
}

.header .nav ul li {
    display: inline-block;
    margin-left: 10px;
}

.header .nav ul li a {
    display: block;
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    padding: 10px 0;
    transition: all 0.5s ease;
}

.header .nav ul li a.active,
.header .nav ul li a:hover {
    color: #f3a93d;
}

.nav-toggler {
    height: 34px;
    width: 44px;
    background-color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    display: none;
    margin-right: 15px;
}

.nav-toggler:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.nav-toggler span {
    height: 2px;
    width: 20px;
    background-color: var(--color-1);
    display: block;
    margin: auto;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggler.active span {
    background-color: transparent;
}

.nav-toggler span::before,
.nav-toggler span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-1);
    transition: all 0.3s ease;
}

.nav-toggler span::before {
    transform: translateY(-6px);
}

.nav-toggler.active span::before {
    transform: rotate(45deg);
}

.nav-toggler span::after {
    transform: translateY(6px);
}

.nav-toggler.active span::after {
    transform: rotate(135deg);
}

.show {
    display: block !important;
}


.main {
    justify-content: flex-start;
    min-height: 90vh;
    position: relative;
    text-align: center;
    top: 70px;
    margin-bottom: 70px;
}

.main img {
    display: inline;
    height: 100%;

}

.item {
    display: inline;
    height: 311px;
    border: 1px solid black;
    box-shadow: 0 0 6px blue;
    margin: 5px;
    padding: 10px;
    border-radius: 6px;
    background: white;
    width: 32.2%;
}

.item h2 {
    font-size: 17px;
    font-weight: 600;
    padding: 5px;
    text-align: left;
    color: crimson;
    font-family: monospace;
}

.itemMainContainer {
    display: flex;
}

.itemImgCantainer {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    padding: 12px;
    background: border-box;
    box-shadow: 0 0 6px blue;
    margin: 0px;
    border: solid 2px blue;
}

.itemDetails {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px 21px 0 20px;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 18px;
    font-family: system-ui;
}

.atributes img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    align-self: baseline;
}

.atributes {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    box-sizing: border-box;
    text-align: left;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: 400;

}

.row {
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.footer {
    background-color: #24262b;
    padding: 70px 0;
    margin-top: 90px;
    z-index: 1;
    position: relative;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

.stores {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.stores img {
    width: 25px;
    border-radius: 50%;
}

.stores strike {
    margin-left: 14px;
}

.stores span {
    margin-left: 14px;
}

.stores a {
    background: #6f28c9;
    padding: 5PX;
    border-radius: 15px;
    color: white;
    font-size: 12px;
    box-shadow: 0px 1px 5px 2px darkslategray;
    margin-left: 10px;
}

.stores a:hover {
    background: brown;
    box-shadow: 0px 1px 5px 2px black;
}

/********** Left Ad **************/
.lSidebar{
    width:160px;
    height:540px;
}

.rSidebar{
    width:160px;
    height:540px;
}


/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(10%);
        /* Start offscreen to the right */
    }

    100% {
        transform: translateX(-100%);
        /* Scroll to the left */
    }
}

@media(max-width:991px) {
    .nav-toggler {
        display: block;
    }

    #div1 {
        width: 90% !important;
        overflow: hidden;
    }

    .header .nav {
        width: 100%;
        padding: 0;
        max-height: 0px;
        overflow: hidden;
        visibility: hidden;
        transition: all 0.5s ease;
    }

    .header .nav.open {
        visibility: visible;
        display: inline-table;
    }


    .header .nav ul {
        padding: 12px 15px 0;
        margin-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        /* Set the container to flex */
        flex-direction: column;
        /* Change to column layout */
        overflow: scroll;
        height: 90vh;
        overflow-x: hidden;
        margin-bottom: 20px !important;
    }

    .header .nav ul::-webkit-scrollbar {
        display: none;
    }

    .header .nav ul li {
        display: block;
        margin: 0;
    }

    .header .nav ul.dropdown-menu {
        position: relative;
        width: 100%;
        background: #2f3240;
        right: 0;
        height: auto;
        display: none;
    }

    .header .nav ul li.dropdown:hover .dropdown-menu {
        display: block;
    }

    .header .nav ul.dropdown-menu li {
        border: none;
    }

    .header .nav ul.dropdown-menu li a {
        color: #ffffff !important;
    }

    .dropdown-menu li a:hover {
        left: 17px;
        position: relative;
    }

}

.dropdown-toggle {
    display: flex;
    position: relative;
    align-items: center;
    width: 97px;
    justify-content: center;
}

.dropdown-toggle i {
    color: aliceblue;
    cursor: pointer;
}

/*
.dropdown-toggle i.dropdownIcon{

}
*/
#response {
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 12px;
    word-wrap: break-word;
    justify-content: start;
    align-items: center;
    position: relative;
    top: 75px;
    width: 70%;
    background-color: #f0f0ffde;
    padding: 5px;
    filter: drop-shadow(2px 4px 6px black);
}

.sticky-top {
    width: 100%;
    text-align: center;
}

.card {
    position: relative;
    width: calc(100%/6 - 0px);
    display: flex;
    flex-direction: column;
    padding: 5px;
    height: 220px;
    /* margin: 5px;
    border: solid 1px; */
    font-size: 12px;
    background: border-box;
    border-radius: 5px;
    box-shadow: 0 0 6px black;

}

.card img {
    padding: 5px;
    background: border-box;
    border-radius: 5px;
    box-shadow: 0 0 15px saddlebrown;
    /* height: 125px; */
}

.card:hover {
    /*zoom: 0.9;*/
    background-color: chocolate;
}

.radioimg {
   height: 100px;
   width: 80%;
}

.radioActive {
    border-radius: 19% !important;
    filter: drop-shadow(8px -7px 3px green);
    scale: 1.1;
}

.radioUrl {
    display: block;
    position: relative;
    bottom: -5px;
    text-align: center;
}

.pagination {
    display: flex;
    width: auto;
    justify-content: space-between;
    font-size: 18px;
    border: solid 1px burlywood;
    padding: 4px;
}

.active {
    background: #65a7dd;
    scale: 1.1;
}

.page-link {
    padding: 10px;
}

.page-item:hover {
    background-color: #65a7dd;
}

.paginationCatainer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.playIcon {
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: inline-block;
}

.play-pouse {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0;
    filter: none;
    box-shadow: none !important;
    height: 62px !important;
    border-radius: 50% !important;
    background: rgb(194, 182, 190, 0.4) !important;
}

.play-pouse:hover {
    background-color: #634c3c91 !important;
    cursor: pointer;
    zoom: 1.1;
    background: wheat !important;
}

.cname {
    font-size: 12px;
    height: 60px;
    background-color: darkcyan;
    border-radius: 5px;
    box-shadow: 0 0 15px saddlebrown;
    position: relative;
    text-align: center;
    color: beige;
    margin: 0;
}

#audioPlayer {
    position: sticky;
    bottom: 0px;
    background: transparent;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#poster {
    background: transparent;
    display: inline-flex;
    align-items: center;
}

#div1 {
    width: 50%;
}

.playerData {
    width: calc(100% - 100px);
    display: inline-flex;
    flex-direction: column;
    height: 44px;
    justify-content: center;
    overflow: hidden;
}

#radioTitle {
    color: #ffffff;
    white-space: nowrap;
    width: min-content;
    animation: scroll 10s linear infinite;
    text-transform: capitalize;
}

#nowPlaying {
    color: #cdd3d7;
    white-space: nowrap;
    animation: scroll 10s linear infinite;
    transition: transform 0.5s ease-in-out;
    text-transform: capitalize;
    width: min-content;
}

.playPouse {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    width: 50px;
}

#playPouse {
    width: 100%;
    filter: invert(1);
}

#radioImage {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: solid 1px cadetblue;
    padding: 2px;
    box-shadow: 0 0 15px saddlebrown;
    margin: auto;
}


#div1 {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    background: black;
    padding: 5px;
}

#left {
    position: sticky;
  /*  height: 89vh; */
    width: 15%;
    display: inline-flex;
    top: 80px;
    justify-content: center;
    flex-direction: column;
    background-color: #f0f0ffde;
    filter: drop-shadow(2px 4px 6px black);
}

#right {
    position: fixed;
    display: inline-flex;
    top: 78px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 14%;
    background-color: #f0f0ffde;
    filter: drop-shadow(2px 4px 6px black);
    right: 0px;
}

#innerR {
    display: inline-flex;
    width: 99%;
    justify-content: center;
    height: 89vh;
}

#innerL {
    width: 200px;
    display: flex;
    justify-content: center;
}

.imageroatate {
    /*  -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -ms-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    */
    /* Other styles for your .imageroatate class */
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -ms-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    transform-origin: center center;
    /* Set the rotation origin to the center */
    top: 35%;
    left: 50%;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

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

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

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

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }

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

@-o-keyframes spin {
    from {
        -o-transform: rotate(0deg);
    }

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

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

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

.showcaseCard {
  /*  width: 150px !important; */
}

.zoom {
    /* Give the element a specific size */
    width: 100px;
    height: 100px;
    /* Set the initial scale to 1 */
    transform: scale(1);
    /* Set the transition duration to 1 second and the timing function to ease */
    transition: transform 1s ease;
    /* Set the animation name, duration, iteration count, and direction */
    animation: zoom 1s infinite alternate;
    /* Change this to infinite */
}

/* Define the keyframes for the animation */
@keyframes zoom {

    /* At 0%, the scale is 1 */
    0% {
        transform: scale(1);
    }

    /* At 100%, the scale is 2 */
    100% {
        transform: scale(1.2);
    }
}

.radioPlaying {
    border: dashed;
    border-radius: 50% !important;
}

.radioImgCantainer {
    border: solid red;
    display: flex;
    flex-direction: column;
    width: 220px;
}

.radioImgCantainer img {
    width: 200px;
    margin: 10px;
    padding: 10px;
    height: 200px;
}

.nav ul li {
    margin-bottom: 10px;
    position: relative;
    /* Add relative positioning */
}

/* Optional: Style the dropdown menu */
.dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    background: aliceblue;
    width: 177px;
    overflow-y: scroll;
    overflow-x: hidden;
    right: -34px;
    height: 80vh;

}

.scrollLeft {
    position: absolute;
    /* top: 44%; */
    z-index: 1;
    width: 0px;
    height: 59px;
    cursor: pointer;
    align-self: center;
}

.scrollRight {
    position: absolute;
    /* top: 44%;
      background-image: url(http://192.168.0.103/playericons/scrollRight); */
    z-index: 1;
    width: 60px;
    height: 59px;
    cursor: pointer;
    right: -10px;
    filter: brightness(0.5);
}

.dropdown-menu li {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 10px;
    border-bottom: solid 1px red;
    width: 100% !important;
}

.dropdown-menu li a {
    color: black !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 9px !important;
}

.dropdown-menu li:hover {
    transform: scale(1.1);
}

.dropdown-menu li a:hover {
    background: cadetblue;
    color: white !important;
}

.dropdown:hover .dropdown-menu {
    display: inline-block;
}

.disabled {
    display: none;
}

.showcase {
    /* border: 1px solid gainsboro; */
    border-radius: 6px;
    height: 221px;
    display: inline-flex;
    overflow-x: scroll;
    width: 100% !important;
    align-items: center;
    box-shadow: 3px 4px 6px black;
}

.showcaseinfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    font-size: 12px;
    /*
    filter: drop-shadow(2px 4px 6px black);
    border-radius: 10px;
    margin: 5px;
    */
}

.showcaseinfo a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: white; */
    font-size: 15px;
    filter: drop-shadow(2px 4px 6px black);
    border-radius: 10px;
    margin: 5px;
    padding-left: 20px;
    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 5px;
    color: black;
    font-weight: 400;
    font-family: system-ui;
}

.showcaseinfo span:hover {
    background: #e3d4d4;
    color: white;
    scale: 1.1;
}

.showcaseinfo h2 {
    padding-left: 10px;
}

.showcase::-webkit-scrollbar {
    display: none;
}

.dropdown-menu::-webkit-scrollbar {
    display: none;
}

.showcaseContent {
    display: inline-flex;
}

#search {
    width: 157px;
    height: 33px;
    border-radius: 15px;
    padding: 11px;
}

.fa-search {
    position: relative;
    right: 30px;
    border-left: 1px solid;
    padding: 5px;
    cursor: pointer;
}

/********************* Search **************/
.search {
    display: inline-flex;
    align-items: center;
    right: -84px;
    position: relative;
}

/*************** Radio Station Starts ******************/
.radioStation {
    display: inline-flex;
    border-top: 1px solid;
    font-size: 8px;
    width: 100%;
    position: relative;
    justify-content: start;
    padding: 10px;
}

.radioStation img {
    width: 150px;
    height: 150px;
    padding: 5px;
    border: solid 1px white;
    border-radius: 10px;
    filter: drop-shadow(2px 4px 6px black);
  /*  background: currentColor; */
}

.radioData h1 {
    padding: 5px;
}

/******************* Radio Button ***********************/
.radioPlayBtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 5px;
    left: 10px;
    position: relative;
}

.playBtn {
    background: transparent !important;
    width: 50px !important;
    height: 50px !important;
    border: none !important;
    cursor: pointer;
}

.radioPlayBtn span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: green;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 30px;
    color: white;
    font-size: 20px;
    font-family: monospace;
    cursor: pointer;
    user-select: none;
}
.playing p{
    font-size: 15px;
}
.radioPlayBtn span:hover {
    background: #ffffff;
    color: black;
    scale: 1.1;
    transition: all 0.5s ease;
}

.radioStationData p{
    font-size: 16px;
    padding-top: 12px;
}

/************** Media Starts *****************/
@media (max-width: 320px) {

    .scrollLeft {
        display: none;
    }

    .scrollRight {
        display: none;
    }

    #response {
        width: 100%;
    }

    .showcaseCard {
        width: 150px !important;
    }

    #left {
        display: none;
    }

    #right {
        display: none;
    }

    .header .logo a {
        font-size: 18px;
    }

    .nav-toggler {
        width: 32px;
    }

    .card {
        width: calc(100% / 4 - 2px) !important;
        height: 190px;
    }

    .card img {
        width: 100%;
        height: 115px;
    }

    .page-link {
        padding: 7px;
    }

    .pagination {
        font-size: 10px;
    }

    .play-pouse {
        width: 60px !important;
    }
}

@media (min-width: 320px) and (max-width: 460px) {


    .scrollLeft {
        display: none;
    }

    .scrollRight {
        display: none;
    }

    #left {
        display: none;
    }

    #right {
        display: none;
    }

    #response {
        width: 100%;
    }

    .card {
        width: calc(100%/3 - 2px);
        height: 190px;
    }

    .card img {
        width: 100%;
        height: 98px;
    }

    .cname {
        height: 79px;
    }

    .play-pouse {
        top: 30%;
        width: 44px !important;
        height: 40px !important;

    }

    .header .logo a {
        font-size: 22px;
    }

    .pagination {
        font-size: 12px;
    }
}

@media (min-width: 460px) and (max-width: 1180px) {
    #left {
        display: none;
    }

    #right {
        width: 28%;
    }

    #response {
        width: 70%;
    }

    .paginationCatainer {
        position: relative;
        bottom: 0px;
    }

    .card {
        width: calc(100% / 4 - 2px);
        height: 230px;
    }
}</pre></body></html>