.triangle-down {
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 6px solid white;
}

.top-profile-popup .user-links li a {
  min-width: 188px;
}

.profile-link .profile-user-name {
  color: white;
  font-size: 12px;
}

.profile-link {
  padding: 1px 0 4px 40px;
  margin: 0 0 0 -40px;
}

.profile-link:hover {
  text-decoration: none;
}

.profile-link span {
  padding: 4px 5px 5px 0;
	display: block;
	float: left;
}

.profile-link .toggle-icon {
  padding-top: 12px;
  height: 20px;
}

.profile-link .toggle-icon i {
  display: block;
}

.popover.top-profile-popup {
  margin-top: 0;
}

.profile-popover .popover-title {
  display: none;
}

.profile-popover .profile-divider {
  margin: 15px 0;
  width: 100%;
  border-top: 1px solid #EEE;;
  height: 1px;
}

.profile-popover .profile-user-name {
  font-size: 15px;
  font-weight: bold;
}

.profile-popover .profile-user-type {
  color: #999;
  word-wrap: break-word;
}

.top-profile-popup .s1,
.top-profile-popup form {
  display: none;
}


.coin-wrapper {
  position: relative;
  margin: 10px;
  height: 100px;
}
.coin {
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  -ms-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  top: 50%;
  left: 50%;
  animation: coin 3s ease-in-out infinite;
}

.coin .front {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.coin .back {
  width: 100%;
  height: 100%;
  background: #ffcc00;
  border-radius: 50%;
  transform: rotateY(180deg) translateZ(10px);
  -webkit-transform: rotateY(180deg) translateZ(10px);
  -ms-transform: rotateY(180deg) translateZ(10px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.coin .front_b {
  width: 100%;
  height: 100%;
  background: #ffcc00;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.coin .back_b {
  width: 100%;
  height: 100%;
  background: #ffcc00;
  border-radius: 50%;
  transform: translateZ(-10px);
  -webkit-transform: translateZ(-10px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.coin:before {
  content: "";
  margin-left: -5px;
  width: 10px;
  height: 100%;
  background: #ffcc00;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  -webkit-transform: rotateY(-90deg);
  -webkit-transform-origin: 100% 50%;
  transform: rotateY(-90deg);
  transform-origin: 100% 50%;
}

.coin .front_b:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 10px solid #fbb041;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.coin .front_b:after {
  content: attr(data-value);
  padding: 21px 0 0 0;
  width: 100%;
  height: 100%;
  font-size: 4em;
  font-weight: bold;
  color: #fbb041;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}

.coin .back:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 10px solid #fbb041;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}

.coin .back:after {
  content: attr(data-value);
  text-transform: uppercase;
  padding: 23px 0 0 0;
  width: 100%;
  height: 100%;
  font-size: 4em;
  font-weight: bold;
  color: #fbb041;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -4;
}

@keyframes coin {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
