.progress-wrap {
	position: fixed;
	right: 25px;
	bottom: 15px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
/*	box-shadow: inset  0 0 0 2px white; */
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background:#c41508;
    color:white;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	content: url(https://www.enfield.gov.uk/__data/assets/file/0011/32006/up-arrow.svg);
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: #595959;
	left: 8px;
	top: 4px;
	height: 46px;
	width: 30px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap:hover{
    width:135px;
    background-color:#c41508;
    
}

.progress-wrap::before {
	position: absolute;
	content: 'Back to top';
	text-align: center;
	line-height: 46px;
	opacity: 0;
	-webkit-background-clip: text;
	left: 0;
	top: 0;
	height: 46px;
	width:135px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-weight:600;
    text-decoration:none;
}
.progress-wrap:hover::before {
	opacity: 1;
	position:relative;

}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: white;
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

@media only screen and (max-width: 1024px){

.progress-wrap{
    display:none;
}
}