.panel-container{
	position:fixed;
	left:-65px;
	top:50%;
	margin-top: -75px;
	display: flex;
	transition:300ms;
	z-index: 9999;

}
.slide-panel{
	left: 0px;
}
.gradient-panel{
	background: rgba(255, 255, 255, 0.37);
    display: flex;
    flex-direction: column;
    height: 150px;
    width: 60px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 8px 0px;
    /* border: solid 5px rgba(255, 255, 255, 0.3); */
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.24);
}
.gradient-choice{
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor:pointer;
    margin: auto;
    border: solid 2px rgb(255, 255, 255);
    box-shadow: 0px 0px 33px 8px rgba(255, 255, 255, 0.23);
    position:relative;
    display:flex;
    transition:300ms;
}
.active{
	background:white;
	margin:auto;
	border-radius: 50%;
	width:20px;
	height:20px;
}
.panel-slide-button {
	cursor:pointer;
    margin: auto;
    width: 36px;
    color: white;
    padding: 10px;
    margin-left: 6px;
    background: rgba(255, 255, 255, 0.43);
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.17);
}
 @media screen and (max-width: 480px){
 	.panel-container{
 		display:none;
 	}
 }