#example-moved-items {
	width: 300px;
	padding: 2rem 1rem;
	display: flex;
	display: -webkit-flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-evenly;
	/*border-top-left-radius: 70px 30px; border-top-right-radius: 10px 30px; border-bottom-right-radius: 80px 30px; border-bottom-left-radius: 10px 30px;*/
	border-radius: 70px 10px 80px / 30px 50px;
	margin: 0 0 2rem 0;
	position: relative;
}

/*	TODO list: container with RYB colors */
/* cancel default values */
.ryb-palette {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 2px solid transparent; /* So that the containers are the same height.*/
}

.withBorder {
	position: relative;
    border: 2px dotted #342e09;
	background-color: #ebe9db;
	background-origin: border-box;
	-webkit-background-origin: border-box;
	background-clip: padding-box;
	-webkit-background-clip: padding-box;
}

/* list items */
.ring {
	width: 100px;
	height: 100px;
	border: 5px solid  #342e09;
    border-radius: 50%;
	background-color: white; /* Need for the second ring. */
	background-origin: border-box;
	-webkit-background-origin: border-box;
	background-clip: padding-box;
	-webkit-background-clip: padding-box;
}

.triangle-down-red {
	width: 0;
	height: 0;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-top: 50px solid #a12642;
}

.red-moved {
	transform: translate(25px, -87px);
	-webkit-transform: translate(25px, -87px);
}

.triangle-down-yellow {
	width: 0;
	height: 0;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-top: 50px solid #ebcd24;
}

.yellow-moved {
	transform: translate(38px, -111px);
	-webkit-transform: translate(38px, -111px);
}

.triangle-down-blue {
	width: 0;
	height: 0;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-top: 50px solid #445f7e;
}

.blue-moved {
	transform: translate(12px, -161px);
	-webkit-transform: translate(12px, -161px);
}

.triangle-down-mixed {
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 25px solid  #896e68;
}

.moved {
	transform: translate(38px, -211px);
	-webkit-transform: translate(38px, -211px);
}

/*	The text-orientation property specifies the orientation of characters
and works only when writing-mode is set to vertical. */
/*  The following elements are positioned so that the design looks correct on iPads and iPhones.*/
/*  Georgia is an elegant serif font. */
.orientation-characters {
	width: 50px;
	font: 20px Georgia, serif;
	writing-mode: vertical-lr;
	text-orientation: upright;
	position:  absolute;
	top: 102px;
	left: 38px;
}

/* BREAKPOINTS WITH *//* CSS3 MEDIA QUERIES 
********************************************/
@media only screen and (max-width: 576px){
	#example-moved-items {
		width: 270px;
		padding: 0;
		border: none;
		box-shadow: none;
	}
}