
.hidden_example {
	position: relative;
	display: block;
	opacity: 0;
}

.colour_example {
	/* display: none; */
	opacity: 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	position: absolute;
}

.show_example {
	opacity: 1;
}


.hide_example {
	display: none;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}


.colour_option {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    border: medium solid rgba(114,114,114,0.75);
    box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 0%);
    opacity: 0.75;
	margin-bottom:5px;
	cursor: pointer;
}

.colour_option_selected {
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
    border: medium solid #69be28;
	box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 50%);
	opacity: 1;
	margin-bottom:5px;
}

.colour_option_text {
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	margin-left:5px;
}

.option_selected_text {
	font-weight: bold;
	
}

.ease {
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}