.progress-tracker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px auto 10px auto;
  padding: 0;
	list-style: none;
	width: 600px;
}

.progress-step {
  display: block;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  margin: 0;
  padding: 0;
  min-width: 28px;
	cursor: pointer;
}

.progress-step:last-child {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.progress-step:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  top: 14px;
  bottom: 12px;
  right: -14px;
  width: 100%;
  height: 4px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.progress-step.is-active .progress-title {
  font-weight: 400;
}

.progress-step > a {
  display: block;
}

.progress-marker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 20;
  width: 24px;
  height: 24px;
  padding-bottom: 2px;
  color: #fff;
  font-weight: 400;
  border: 2px solid transparent;
  border-radius: 50%;
  -webkit-transition: background-color, border-color;
  transition: background-color, border-color;
  -webkit-transition-duration: 0.3s;
					transition-duration: 0.3s;
	cursor: pointer;
}

.progress-text {
  display: block;
  padding: 14px 9.3333333333px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-title {
  margin-top: 0;
}

.progress-step .progress-marker {
  color: #fff;
	background-color: #131415;
	box-shadow:0 1px 0 rgba(255,255,255,0.2);
}

.progress-step::after {
	background-color: #131415;
	box-shadow:0 1px 0 rgba(255,255,255,0.2);
}

.progress-step .progress-text, .progress-step .progress-step > a .progress-text {
  color: #333333;
}

.progress-step.is-active .progress-marker {
	background-color: #26aebd;
	box-shadow: -1px 1px 2px rgba(19, 141, 186,1),
	-3px 3px 4px rgba(0,0,0,1),
	0 0 20px rgba(19, 141, 186,1);
}

.progress-step.is-complete .progress-marker {
	background: -webkit-linear-gradient(#ead720 0%, #e9d91c 5%, #fffcc2 45%, #ebdc23 100%);
	background: -o-linear-gradient(#ead720 0%, #e9d91c 5%, #fffcc2 45%, #ebdc23 100%);
	background: linear-gradient(#ead720 0%, #e9d91c 5%, #fffcc2 45%, #ebdc23 100%);
	box-shadow: -1px 1px 2px rgba(19, 141, 186,1),
	-3px 3px 4px rgba(0,0,0,1),
	0 0 20px rgba(19, 141, 186,1);
}

.progress-step.is-complete::after,
.progress-step.is-fail::after {
	background: -webkit-linear-gradient(#ead720 0%, #e9d91c 5%, #fffcc2 45%, #ebdc23 100%);
	background: -o-linear-gradient(#ead720 0%, #e9d91c 5%, #fffcc2 45%, #ebdc23 100%);
	background: linear-gradient(#ead720 0%, #e9d91c 5%, #fffcc2 45%, #ebdc23 100%);
	box-shadow: -1px 1px 2px rgba(19, 141, 186,1),
	-3px 3px 4px rgba(0,0,0,1),
	0 0 20px rgba(19, 141, 186,1);
}

.progress-step.is-fail .progress-marker {
	background: -webkit-linear-gradient(#333333 0%, #252525 35%, #9e9e9e 75%, #313131 100%);
	background: -o-linear-gradient(#333333 0%, #252525 35%, #9e9e9e 75%, #313131 100%);
	background: linear-gradient(#333333 0%, #252525 35%, #9e9e9e 75%, #313131 100%);
	box-shadow: -1px 1px 2px rgba(19, 141, 186,1),
	-3px 3px 4px rgba(0,0,0,1),
	0 0 20px rgba(19, 141, 186,1);
}

.progress-step:hover .progress-marker {
  background-color: #56ADF5;
	box-shadow: -1px 1px 2px rgba(19, 141, 186,1),
	-3px 3px 4px rgba(0,0,0,1),
	0 0 20px rgba(19, 141, 186,1);
}

.progress-tracker--center .progress-step {
  text-align: center;
}

.progress-tracker--center .progress-step:last-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.progress-tracker--center .progress-step::after {
  right: -50%;
}

.progress-tracker--center .progress-marker {
  margin-left: auto;
  margin-right: auto;
}

.progress-tracker--right .progress-step {
  text-align: right;
}

.progress-tracker--right .progress-step:last-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.progress-tracker--right .progress-step::after {
  right: calc(-100% + 14px);
}

.progress-tracker--right .progress-marker {
  margin-left: auto;
}

.progress-tracker--border {
  padding: 5px;
  border: 2px solid #868686;
  border-radius: 38px;
}

.progress-tracker--spaced .progress-step::after {
  width: calc(100% - 48px);
  margin-right: 24px;
}

.progress-tracker--word {
  padding-right: 38.6666666667px;
  overflow: hidden;
}

.progress-tracker--word .progress-text {
  display: inline-block;
  white-space: nowrap;
}

.progress-tracker--word .progress-title {
  margin: 0;
}

.progress-tracker--word-center {
  padding-right: 38.6666666667px;
  padding-left: 38.6666666667px;
}

.progress-tracker--word-center .progress-text {
  padding-right: 0;
  padding-left: 0;
  -webkit-transform: translateX(calc(-50% + 14px));
          transform: translateX(calc(-50% + 14px));
}

.progress-tracker--word-right {
  padding-right: 0;
  padding-left: 38.6666666667px;
}

.progress-tracker--word-right .progress-text {
  padding-left: 0;
  -webkit-transform: translateX(calc(-100% + 28px));
          transform: translateX(calc(-100% + 28px));
}

.progress-tracker--text .progress-step:last-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.progress-tracker--text-top .progress-step::after {
  top: auto;
}

.progress-tracker--text-top .progress-text {
  height: 100%;
}

.progress-tracker--text-top .progress-marker {
  bottom: 28px;
}

.progress-tracker--text-inline .progress-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.progress-tracker--text-inline .progress-text {
  position: relative;
  z-index: 30;
  max-width: 70%;
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff;
}

.progress-tracker--text-inline .progress-title {
  margin: 0;
}

.progress-tracker--square .progress-step {
  padding-top: 0;
}

.progress-tracker--square .progress-marker {
  -webkit-transform: scaleX(0.33) translateY(-12px);
          transform: scaleX(0.33) translateY(-12px);
  border-radius: 0;
}

@media (max-width: 399px) {
  .progress-tracker-mobile {
    overflow-x: auto;
  }
  .progress-tracker-mobile .progress-tracker {
    min-width: 200%;
  }
}

.progress-tracker--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.progress-tracker--vertical .progress-step {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.progress-tracker--vertical .progress-step::after {
  right: auto;
  top: 14px;
  left: 12px;
  width: 4px;
  height: 100%;
}

.progress-tracker--vertical .progress-marker {
  position: absolute;
  left: 0;
}

.progress-tracker--vertical .progress-text {
  padding-top: 7px;
  padding-left: 42px;
}

.progress-tracker--vertical .progress-step:not(:last-child) .progress-text {
  padding-bottom: 42px;
}

@-webkit-keyframes scale-up {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes scale-up {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

.anim-ripple .progress-marker::before, .anim-ripple-large .progress-marker::before, .anim-ripple-splash .progress-marker::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
}

.anim-ripple :not(:active) .progress-marker::before, .anim-ripple-large :not(:active) .progress-marker::before, .anim-ripple-splash :not(:active) .progress-marker::before {
  -webkit-animation: scale-up 0.3s ease-out;
          animation: scale-up 0.3s ease-out;
}

.anim-ripple :focus .progress-marker::before, .anim-ripple-large :focus .progress-marker::before, .anim-ripple-splash :focus .progress-marker::before {
  visibility: visible;
}

.anim-ripple-large .progress-marker::before {
  width: 200%;
  height: 200%;
}

.anim-ripple-splash .progress-marker::before {
  width: 200%;
  height: 200%;
  box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.35);
}

.anim-ripple-double .progress-marker::before, .anim-ripple-double .progress-marker::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
  background: none;
  border: 3px solid rgba(0, 0, 0, 0.3);
}

.anim-ripple-double :not(:active) .progress-marker::before, .anim-ripple-double :not(:active) .progress-marker::after {
  -webkit-animation: scale-up 0.3s ease-out 0s;
          animation: scale-up 0.3s ease-out 0s;
}

.anim-ripple-double :not(:active) .progress-marker::after {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.anim-ripple-double :focus .progress-marker::before, .anim-ripple-double :focus .progress-marker::after {
  visibility: visible;
}

.anim-path .progress-step::after {
  background-image: -webkit-linear-gradient(left, #b6b6b6 50%, #868686 50%);
  background-image: linear-gradient(to right, #b6b6b6 50%, #868686 50%);
  background-size: 200% 100%;
  background-position: 0% 100%;
  -webkit-transition: background-position 0.3s ease-out;
  transition: background-position 0.3s ease-out;
}

.anim-path .progress-step.is-complete::after {
  background-position: -100% 100%;
}

.progress-red-glow {
	box-shadow: -1px 1px 35px rgb(185, 8, 8),
	-3px 3px 4px rgba(0,0,0,1),
	0 0 20px rgb(228, 9, 9)!important;
}

#tooltip {
	z-index: 9999;
	position: absolute;
	display: none;
	top:0px;
	left:0px;
	width: 230px;
	background-color: #fff;
	padding: 5px 10px 5px 10px;
	color: #000;
	border: 1px solid #888;
	border-radius: 5px; 
	box-shadow: 0 1px 2px #555;
	/*box-sizing: ;*/
	font-family: 'play', sans-serif;
	font-weight: 700;
	font-size: 16px;
}


.pt-gift-div,
.pt-gift-active{
	position: relative;
	width: 108px;
	margin: 0 auto 30px auto;
	padding: 0;
}
.pt-gift-active {
	cursor: pointer;
	transition: all .2s ease-in-out;
	transform: scale(1);
}
.pt-gift-inactive {
	width: 400px;
}
.pt-gift-inactive img {
	display: block;
	width: 108px;
	height: 128px;
	margin: 0 auto;
}
.weekly-gift-done {
	font-family: 'play', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	text-align: center;
}
.pt-gift-active:hover {
	transition: all .2s ease-in-out;
	transform: scale(1.1);
}
.pt-gift-out {
	position: absolute;
	transition: all 1.2s ease-in-out;
	transform: scale(.3) translate(4000px,-4000px);
}
.pt-gift-out:hover {
	position: absolute;
	transition: all 1.2s ease-in-out;
	transform: scale(.3) translate(4000px,-4000px);
}
.weakly-gift-done {
	font-family: 'play', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #4be82c;
}