* {
    margin: 0;
    padding: 0;
}

.bordering {
    border: 1px solid white;
}


/* sidebar start */
.sidebar {
    background-color: #fafbff;
    border-radius: 0 30px 30px 0;
    width: 360px;
    height: 100vh;
    position: fixed;
    z-index: 99;
    transform: translateX(-10%);
    transition: 0.5s ease-in-out;
    box-shadow: 8px 10px 14px -3px rgba(0,0,0,0.59);
    -webkit-box-shadow: 8px 10px 14px -3px rgba(0,0,0,0.59);
    -moz-box-shadow: 8px 10px 14px -3px rgba(0,0,0,0.59);
    visibility: hidden;
}

.sidebar.active {
    visibility: visible;
    transform: translateX(0px);
}

.sidebar .head {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-top: 40px;
    padding-left: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #c5c5c5;
}

.sidebar .head div {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.sidebar .head img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid red;
}

.sidebar .head div h3 {
    color: #000;
    margin-left: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20pt;
    font-weight: 600;
}

#closedBtn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18pt;
    color: #d71314;
}

.sidebar .body {
    padding: 10px 0 30px 20px;
}

.sidebar .body ul {
    list-style: none;
}

.sidebar .body ul li {
    padding: 5px 0;
}

.sidebar .body ul li a {
    text-decoration: none;
    color: #5c5c5c;
    font-size: 16pt;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
}

.sidebar .body span {
    display: inline-block;
    margin-right: 8px;
    width: 25px;
    height: 25px;
}

.sidebar .body span i {
    font-size: 16pt;
}
/* sidebar end */

/* content wrapper start */
#main {
    transition: 0.5s ease-in-out;
    height: 100vh;
}

.col-top.inactive {
    display: block;
}

.col-top {
    height: 100vh;
    z-index: 2;
}

.bg-primary-color {
    background-image:url('bg-radio.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.content {
    background-color: #ffffffc5;
    width: 80%;
    border-radius: 15px;
    padding: 40px;
}

.content p {
    text-align: center;
    font-size: 32px;
}

.content p:nth-child(2) {
    margin-top: 5%;
    text-align: center;
    font-size: 28px;
}
/* content wrapper end */

/* nav strart */
.nav {
    padding: 0;
    margin: 3% 1% 4% 1%;
}

.nav .circle {
    border-radius: 50%;
    width: 4em;
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
    color: #d71314;
    box-shadow: 0 5px 10px rgba(255, 26, 26, 0.22);
}
/* nav end */

/* player start */
.song-img {
    width: 350px;
    border-radius: 50%;
    border: 8px solid #d71314;
    box-shadow: 0 10px 60px rgba(255, 26, 26, 0.22);
}

.rotate-animation {
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from{transform: rotate(0deg)}
    to{transform: rotate(360deg)}
}

.player > h1, h3 {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
}

.player > h1 {
    margin-top: 1em;
    font-size: 25pt;
    font-weight: 600;
}

.player > h3 {
    margin-top: -0.3em;
    font-size: 16pt;
    font-weight: 500;
}
/* player end */

/* control start */
.controls-container {
    margin-top: 7%;
}

#controls div {
    width: 60px;
    height: 60px;
    margin: 20px;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #d71314;
    box-shadow: 0 10px 20px rgba(255, 26, 26, 0.22);
    cursor: pointer;
}

#controls div:nth-child(1) {
    transform: scale(1.7);
    background: #d71314;
    color: #FFF;
    border: 2px solid #FFF;
}

#controls div:nth-child(1).btn-active {
    background: #FFF;
    color: #d71314;
    border: 2px solid #d71314;
}
/* control end */
