.Top
{
	background: rgba(0,0,0,.5);
	width: 70px;
	height: 70px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	text-align: center;
	z-index: 10;
	display: none;
}

.Top.active
{
	display: block;
}

.TopContainer
{
	position: absolute;
	top: calc(50% + 10px);
	left: 50%;
	transform: translate(-50%,-50%);
}

.TopIcon
{
	border-top: 6px solid white;
	border-right: 6px solid white;
	width: 20px;
	height: 20px;
	transform: rotate(315deg);
}

@media screen and (max-width: 767px)
{
	.Top
	{
		width: 50px;
		height: 50px;
		bottom: 30px;
		right: 15px;
	}

	.TopContainer
	{
		top: calc(50% + 5px);
	}

	.TopIcon
	{
		border-top: 4px solid white;
		border-right: 4px solid white;
		width: 15px;
		height: 15px;
	}
}