.user-type{
  display: inline-block;
  text-decoration: none;
  color: #ffa500;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  border: double 4px #48d2ff;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  transition: .6s;

}

.user-type:hover{
	background-color: #46d2ff;
	color: #fff;
  -webkit-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.choose-user {
    position:relative;
    background-color:#ffa500;
    border-radius:5em;
    width: 300px;
    height:50px;
    
}

.choose-user:after {
    content:'';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -20px;
    width: 0;
    height: 0;
    border-top: solid 20px #ffa500;
    border-left: solid 20px transparent;
    border-right: solid 20px transparent;
}