.section-menu
{
	display: table;
	position: fixed;
	top: 0;
	right: 25px;
	height: 100%;
}

.section-menu ul
{
	display: table-cell;
	margin: 0;
	padding: 0;
	list-style: none;
	vertical-align: middle;
}

.section-menu li
{
	display: block;
  padding: 10px 0;
}

.section-menu a
{
	display: block;
	position: relative;
	padding: 2px;
	height: 10px;
	width: 10px;
  font-weight: 600;
	color: #A4664A;
	line-height: 20px;
	text-align: right;
	white-space: nowrap;
	transition: all 0.5s ease;
}

.section-menu a:before
{
	content: "";
	display: block;
	position: relative;
	border-radius: 17px;
	width: 17px;
	height: 17px;
	background: #A4664A;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
	transition: all 0.3s ease;
	box-shadow: 0px 0px 0px 2px #fff inset;
	border: #A4664A solid 1px;
}

.section-menu a:hover:before
{
	background: #A4664A;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
			border-color: #A4664A;
}

.section-menu a span
{
	position: absolute;
	top: 0;
	right: 0;
	padding-right: 15px;
	transition: all 0.3s ease;
	opacity: 0;
}

.section-menu a:hover span
{
	opacity: 1;
	color: #A4664A;
}
