.Yep-to-top {
  position: fixed;
  right: 60px;
  bottom: 60px;
  margin-bottom: constant(safe-area-inset-bottom);
  margin-bottom: env(safe-area-inset-bottom);
}
.Yep-to-top-content {
  width: 80px;
  height: 80px;
  outline: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  box-shadow: 2px 2px 2px 2px #DADADA;
}
.Yep-to-top-content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border: 1PX solid #DADADA;
  border-radius: 50%;
}
.Yep-to-top-icon {
  font-size: 60px;
  color: #262626;
}