.style-options {
    width: 180px;
    position: fixed;
    right: -180px;
    top: 28%;
    background-color: #fff;
    z-index: 1000;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.style-options.active {
    right: 0;
}

.style-options .toggle-btn {
    position: absolute;
    top: 0px;
    left: -40px;
    height: 40px;
    width: 40px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px 0 0 30px;
    border-right: none;
    cursor: pointer;
}

.style-options .toggle-btn span {
    margin: 0;
    margin: 0 auto;
}

.style-options .toggle-btn span i {
    font-size: 23px;
    -webkit-animation-name: settings;
    animation-name: settings;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    color: #0e0f10;
    line-height: 35px;
}

.style-options .style-menu {
    text-align: center;
    padding: 0;
}

.style-options .style-menu h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0e0f10;
}

.style-options .style-menu .style-nav h4,
.style-options .style-menu .style-back h4 {
    padding: 0 20px;
}

.style-options .style-menu .style-nav ul li,
.style-options .style-menu .style-back ul li {
    margin-top: -1px;
    float: left;
    width: 50%;
    height: 34px;
    line-height: 34px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
}

.style-options .style-menu .style-nav ul li a,
.style-options .style-menu .style-back ul li a {
    color: #0e0f10;
    font-weight: 600;
    display: block;
}

.style-options .style-menu .style-nav ul li a:hover,
.style-options .style-menu .style-back ul li a:hover  {
    color: #8e8e8e;
}

.style-options .style-menu .style-nav ul li i,
.style-options .style-menu .style-back ul li i {
    font-size: 12px;
}

.style-options .style-menu .style-color {
    padding: 0 20px;
}

.style-options .style-menu .style-color ul {
    margin-top: 10px;
}

.style-options .style-menu .style-color ul li {
    display: inline-block;
}

.style-options .style-menu .style-color ul li a {
    width: 40px;
    height: 40px;
	-webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
}

@-webkit-keyframes settings {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

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

@keyframes settings {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

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

/* Music Bg */
.music-bg {
	display: block;
	cursor: pointer;
	padding: 40px 0;
padding-bottom:80px;
	text-align: center;
	
	
	visibility: hidden;
	z-index: 10;
	-webkit-transition: all .3s ease;
			transition: all 0.3s ease;
}

.music-bg p {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
}

.music-bg .lines {
    display: flex;
    width: 24px;
    height: 24px;
    margin: 0 auto 10px;
    align-items: flex-end;
}

.music-bg .lines span {
    display: inline-flex;
    margin: 0px 1px;
    width: 7px;
    height: 5px;
    background: #fff;
}

.audio-on .music-bg .lines span:nth-child(1) {
    -webkit-animation: musicline 2s 0.5s ease-out alternate infinite;
    		animation: musicline 2s 0.5s ease-out alternate infinite;
}  

.audio-on .music-bg .lines span:nth-child(2) {
    -webkit-animation: musicline 2s 1s ease-out alternate infinite;
    		animation: musicline 2s 1s ease-out alternate infinite;
} 

.audio-on .music-bg .lines span:nth-child(3) {
    -webkit-animation: musicline 2s 1.5s ease-out alternate infinite;
    		animation: musicline 2s 1.5s ease-out alternate infinite;
}

.audio-on .music-bg .lines span:nth-child(4) {
    -webkit-animation: musicline 2s 0.25s ease-out alternate infinite;
    		animation: musicline 2s 0.25s ease-out alternate infinite;
}

.audio-on .music-bg .lines span:nth-child(5) {
    -webkit-animation: musicline 2s 0.75s ease-out alternate infinite;
    		animation: musicline 2s 0.75s ease-out alternate infinite;
}

.audio-on .music-bg .lines span:nth-child(6) {
    -webkit-animation: musicline 2s 1.25s ease-out alternate infinite;
    		animation: musicline 2s 1.25s ease-out alternate infinite;
}

	.music-bg {
    	position: absolute;
    	width: 100%;
    	bottom: 0;
    	left: 0;
	} 

.banner img { 
margin-bottom:30px;

width: 150px;

height: 150px;
border: 3px solid white;
border-radius: 75px;

-webkit-border-radius: 75px;

-moz-border-radius: 75px;
box-shadow: rgba(0,0,0,0.8) 0 0 30px;

}