progress#xldprogressBar {
  position: fixed;
  left: 0;
  width: 100%;
  height: .25em; 
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  color: red;
}

progress#xldprogressBar::-webkit-progress-bar {
  background-color: transparent;
}

progress#xldprogressBar::-webkit-progress-value {
  background-color: red;
}

#xldprogressBar .progress-container {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  height: .25em;
  display: block;
}

#xldprogressBar .progress-bar {
  background-color: red;
  width: 50%;
  display: block;
  height: inherit;
}





.progress-wrap.crsr {
    height: 35px;
    width: 35px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(222, 29, 29, 0.99);
    z-index: 10000;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.crsr svg path { 
	fill: none; 
}
.progress-wrap.crsr svg.progress-circle path {
    stroke: black;
    stroke-width: 5px;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* #Cursor
================================================== */

.cursor,
.cursor2,
.cursor3{
	position: fixed;
	border-radius: 50%;	
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
	left: -100px;
	top: 50%;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.cursor2,.cursor3{
	z-index:99998;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out
}
.cursor2.hover,
.cursor3.hover{
	-webkit-transform:scale(1.4) translateX(-35%) translateY(-35%);
	transform:scale(1.4) translateX(-35%) translateY(-35%);
	border:none
}

.cursor2.hover{
	background: rgba(255,255,255,0.1);
}
.cursor2.hover .progress-wrap {
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0);
}
.cursor2.hover .progress-wrap svg.progress-circle path {
	opacity: 0.4;
}


/**/
#tb-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;     
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#tb-top i{
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateX(-50%) translateY(-50%);
}
#tb-top.prg-visible {
    visibility: visible;
    opacity: 1;
}
#tb-top .tbprogress {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: relative;
    background: #f4f5fa;
    box-shadow: none;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    overflow: inherit;
    position: relative;
    height: 5px;
    margin-top: 10px;
}
#tb-top svg path {
    fill: none;
}
#tb-top svg.progress-circle path {
    stroke: #7141f9;
    stroke-width: 3;
}
