.donate-crypto-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: text;
  
  margin-left: auto;
  margin-right: auto;
}

.coin {
  display: inline-block;
  position: relative;
  min-width: 3em;
  min-height: 3em;
  -webkit-animation: spin 3s cubic-bezier(0.3, 2, 0.4, 0.8) infinite both;
          animation: spin 3s cubic-bezier(0.3, 2, 0.4, 0.8) infinite both;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  vertical-align: middle;
}
@-webkit-keyframes spin {
  0%, 10% {
    -webkit-transform: rotate(-10deg) perspective(400px);
            transform: rotate(-10deg) perspective(400px);
  }
  90%, 100% {
    -webkit-transform: rotate(-10deg) perspective(400px) rotateY(180deg);
            transform: rotate(-10deg) perspective(400px) rotateY(180deg);
  }
}
@keyframes spin {
  0%, 10% {
    -webkit-transform: rotate(-10deg) perspective(400px);
            transform: rotate(-10deg) perspective(400px);
  }
  90%, 100% {
    -webkit-transform: rotate(-10deg) perspective(400px) rotateY(180deg);
            transform: rotate(-10deg) perspective(400px) rotateY(180deg);
  }
}
.coin-face {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
}
.coin-face:nth-child(1) {
  -webkit-transform: translateZ(-0.2em) rotateY(-180deg);
          transform: translateZ(-0.2em) rotateY(-180deg);
}
.coin-face:nth-child(2) {
  -webkit-transform: translateZ(-0.1em);
          transform: translateZ(-0.1em);
}
.coin-face:nth-child(4) {
  -webkit-transform: translateZ(0.1em);
          transform: translateZ(0.1em);
}
.coin-face:nth-child(5) {
  -webkit-transform: translateZ(0.2em);
          transform: translateZ(0.2em);
}
.coin-face svg {
  width: 100%;
  height: 100%;
}

.coin-address {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font: .7em/2.5 Monaco, monospace;
  text-align: center;
  margin-left: 1em;
  border-width: 0 0 2px;
  border-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  cursor: text;
}
.coin-address:hover {
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.btc {
  max-width: 21em;
}
.btc .coin-face {
  background: shade(#ff9900, 35%);
}
.btc .coin-face:nth-child(1), .btc .coin-face:nth-child(5) {
  background: #ff9900;
}
.btc .coin-address:hover, .btc .coin-address:focus {
  border-color: #ff9900;
}

.eth {
  max-width: 23em;
}
.eth .coin-face {
  background: shade(#6F7CBA, 35%);
}
.eth .coin-face:nth-child(1), .eth .coin-face:nth-child(5) {
  background: #6F7CBA;
}
.eth .coin-address:hover, .eth .coin-address:focus {
  border-color: #6F7CBA;
}

.ltc {
  max-width: 21em;
}
.ltc .coin-face {
  background: shade(#b5b5b5, 35%);
}
.ltc .coin-face:nth-child(1), .ltc .coin-face:nth-child(5) {
  background: #b5b5b5;
}
.ltc .coin-address:hover, .ltc .coin-address:focus {
  border-color: #b5b5b5;
}



.donate-crypto-box:nth-child(1) .coin {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.donate-crypto-box:nth-child(2) .coin {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.donate-crypto-box:nth-child(3) .coin {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}


.wallet_design{

  text-align: center;
  margin-top: -50px;
}