
.donate-category {
	display: none;
	height: 0;
}

#donation_goal {
   width: 99%;
   height: 16px;
   margin: 4px 5px;
   border-radius: 6px;
   -moz-border-radius: 6px;
   -webkit-border-radius: 6px;
}

#donation_progressbar {
   border-right: 1px darkgreen solid;
   height: 16px;
   border-radius: 6px;
   -moz-border-radius: 6px;
   -webkit-border-radius: 6px;
   background-color: rgb(43,194,83);
   background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(0, rgb(43,194,83)),
      color-stop(1, rgb(84,240,84))
   );
   background-image: -moz-linear-gradient(
      center bottom,
      rgb(43,194,83) 37%,
      rgb(84,240,84) 69%
   );
   -webkit-box-shadow:
      inset 0 2px 9px  rgba(255,255,255,0.3),
      inset 0 -2px 6px rgba(0,0,0,0.4);
   -moz-box-shadow:
      inset 0 2px 9px  rgba(255,255,255,0.3),
      inset 0 -2px 6px rgba(0,0,0,0.4);
   box-shadow:
      inset 0 2px 9px  rgba(255,255,255,0.3),
      inset 0 -2px 6px rgba(0,0,0,0.4);
   position: relative;
   overflow: hidden;
}

#donation_progressbar span {
   float: right;
   color: #fff;
   font-weight: bold;
   font-size: 10px;
   margin-top: 0px;
   margin-right: 9px;
}

#donation_progressbar #fix {
   position: relative;
   left: 35px;
   color: #999;
}

#donation_progressbar_animated { 
    color: #fff;
	height: 14px;
	position: relative;
	margin: 1px 0 1px 0;
	-webkit-border-top-right-radius: 8px;
	-webkit-border-bottom-right-radius: 8px;
	-moz-border-radius-topright: 8px;
	-moz-border-radius-bottomright: 8px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-bottomleft: 20px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	background-color: rgb(43,194,83);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, rgb(43,194,83)),
		color-stop(1, rgb(84,240,84))
	);
	background-image: -moz-linear-gradient(
		center bottom,
		rgb(43,194,83) 37%,
		rgb(84,240,84) 69%
	);
	-webkit-box-shadow: 
		inset 0 2px 9px  rgba(255,255,255,0.3),
		inset 0 -2px 6px rgba(0,0,0,0.4);
	-moz-box-shadow: 
		inset 0 2px 9px  rgba(255,255,255,0.3),
		inset 0 -2px 6px rgba(0,0,0,0.4);
	box-shadow: 
		inset 0 2px 9px  rgba(255,255,255,0.3),
		inset 0 -2px 6px rgba(0,0,0,0.4);
	position: relative;
	overflow: hidden;
	border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px;
}

#donation_progressbar_animated > span {
   float: right;
   color: #fff;
   font-weight: bold;
   font-size: 10px;
   margin-top: 0px;
   margin-right: 9px;
   line-height: 14px;
}

#donation_progressbar_animated  > span:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 18px;
  background: url("./images/progress.png") 0 0 repeat-x;
  border-radius: 10px;
}

#donation_progressbar_animated > span:after {
	content: "";
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	background-image: 
		-webkit-gradient(linear, 0 0, 100% 100%, 
		color-stop(.25, rgba(255, 255, 255, .2)), 
		color-stop(.25, transparent), color-stop(.5, transparent), 
		color-stop(.5, rgba(255, 255, 255, .2)), 
		color-stop(.75, rgba(255, 255, 255, .2)), 
		color-stop(.75, transparent), to(transparent)
	);
	background-image:
		-moz-linear-gradient(
		-45deg, 
		rgba(255, 255, 255, .2) 25%, 
		transparent 25%, 
		transparent 50%, 
		rgba(255, 255, 255, .2) 50%, 
		rgba(255, 255, 255, .2) 75%, 
		transparent 75%, 
		transparent
	);
	background-image:
		-o-linear-gradient(
		-45deg, 
		rgba(255, 255, 255, .2) 25%, 
		transparent 25%, 
		transparent 50%, 
		rgba(255, 255, 255, .2) 50%, 
		rgba(255, 255, 255, .2) 75%, 
		transparent 75%, 
		transparent
	);
	z-index: 1;
	-webkit-background-size: 50px 50px;
	-moz-background-size: 50px 50px;
	background-size: 50px 50px;
	-webkit-animation: move 2s linear infinite;
	-moz-animation: move 2s linear infinite;
	-webkit-border-top-right-radius: 8px;
	-webkit-border-bottom-right-radius: 8px;
	-moz-border-radius-topright: 8px;
	-moz-border-radius-bottomright: 8px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-bottomleft: 20px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	overflow: hidden;
}

#donation_progressbar_animated #fix {
   position: relative;
   left: 35px;
   color: #999;
}

#donate {
   padding-left: 20px;
   float: right;
}

#donate2 {
   background: url("./images/donate.png") 0 50% no-repeat;
   padding-left: 20px;
   float: right;
}

.fa-spin {
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-direction: alternate;
}

@-webkit-keyframes blinker {
	from {opacity: 1.0;}
	to {opacity: 0.0;}
}

.donation-avatar {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-bottom: 2px;
	vertical-align: middle;
}

.donation-avatar img {
	position: absolute;
	left: 0px;
	top: 0px;
	max-height: 16px;
	max-width: 16px;
  border-radius: 2px;
}

@-webkit-keyframes move {
    0% {
       background-position: 0 0;
    }
    100% {
       background-position: 50px 50px;
    }
}

@-moz-keyframes move {
	0% {
	   background-position: 0 0;
	}
	100% {
	   background-position: 50px 50px;
	}
}

.wizard {	
	display:inline-block;	 
	text-align: center;    
	display: block;    
	-webkit-margin-start: 2px;    
	-webkit-margin-end: 2px;    
	-webkit-padding-before: 0.35em;    
	-webkit-padding-start: 0.75em;    
	-webkit-padding-end: 0.75em;    
	-webkit-padding-after: 0.625em;    
	min-width: -webkit-min-content;	
}

.wizard a {
    padding: 10px 12px 12px;
    margin-right: 5px;
    background: #efefef;
    position: relative;
    display: inline-block;
  	text-decoration:none;
    font-size: 14px;
}

.dark .wizard a {
    background-color: #1e293b;
}

.wizard a:before {
    width: 0;
    height: 0;
    border-top: 18px inset transparent;
    border-bottom: 17px inset transparent;
    border-left: 20px solid #fff;
    position: absolute;
    content: "";
    top: 6px;
    left: 0;
}

.dark .wizard a:before {
    border-left: 20px solid #0f172a;
}

.wizard a:after {
    width: 0;
    height: 0;
    border-top: 18px inset transparent;
    border-bottom: 17px inset transparent;
    border-left: 20px solid #efefef;
    position: absolute;
    content: "";
    top: 6px;
    right: -20px;
    z-index: 2;
}

.dark .wizard a:after {
    border-left: 20px solid #1e293b;
}

.wizard a.special {background-color: green; color:white;}
.wizard a.special:after {border-left-color:green;}
.wizard a:first-child:before,
.wizard a:last-child:after {border: none;}
.wizard a:last-child {margin-right:0px;}
.wizard .badges {
    margin: 0 5px 0 18px;
    position: relative;
    top: -1px;
}

.wizard a:first-child .badges {
    margin-left: 0;
}

.wizard .current {
    background: #007ACC;
    color: #fff;
}

.wizard .current:after {
    border-left-color: #007ACC;
}

#bell {
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-direction: alternate;
}

@-webkit-keyframes blinker {
    from {opacity: 1.0;}
    to {opacity: 0.0;}
}

@media (min-width: 768px) {
  .donate-ext-collapse .donate-stats {
    width: 8rem;
  }
}
.donation-details .donation-avatar,
.donation-details .donation-avatar img {
  max-width: 32px;
  max-height: 32px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 4px;
}
.donation-details a,
#zn-select-donate-collapse center {
  font-size: 14px;
}
.price-radio:checked + label {
  background-color: #f3f4f6;
}
.dark .price-radio:checked + label {
  background-color: #1e293b;
}
.choose-price {
  overflow: hidden;
}
.choose-price label {
  border-radius: 0;
}

@media not all and (min-width: 768px) {
  .choose-price:not(:first-child) {
    margin-top: -1px;
  }
  .choose-price:first-child {
    border-radius: 0;
    border-top-left-radius: 0.5rem /* 8px */;
    border-top-right-radius: 0.5rem /* 8px */;
  }
  .choose-price:last-child {
    border-radius: 0;
    border-bottom-right-radius: 0.5rem /* 8px */;
    border-bottom-left-radius: 0.5rem /* 8px */;
  }
}