


.option {
	background: var(--primary-dark);
	transition: .3s ease-in-out;
	cursor: pointer;
	opacity: .8;
	border-right: 1px solid black;
}
/*.option:last-child {
	border-right: none;
}*/
.option:hover {
	background: var(--secondary-dark);
}
.option.active {
	opacity: 1;
	background: var(--secondary-dark);
}


#control-options {
border: 2px solid black;
	 user-select: none;
}

#control-panel {
	background: var(--primary-light);

	height: 450px;
    overflow-y: scroll;}


.counter {
	width: 30px;
    height: 30px;
    background: var(--primary-dark);
    text-align: center;
    border-radius: 50%;
    user-select: none;
    font-size: 12px;
    color: white;
}
.single-control {display: none;  margin: 0 auto;}

.switch span {
	
    border-radius: 5px;
    cursor: pointer;
    transition: .2s ease-in-out;
}
.switch span.active {
	background: var(--primary-dark);
}

.switch span {
	background: #9e9e9e61
}
.switch span:hover {
	opacity: .8;
}
.gradients {
	flex-flow: wrap;
    width: fit-content;
    height: 300px;
    overflow-y: scroll;

}

.single-gradient {
	height: 50px;
	width: 50px;
	cursor: pointer;
}
.single-gradient.active {
	border: 2px solid black;
}

canvas {
/*	    border: 1px solid black;*/
}


@media only screen and (max-width: 600px) {
  #control-options .option {
    font-size: 12px;
  }
}