.arrow-icon{
  position: absolute;
  right: -10px;
  top: 50%;
  box-sizing: border-box;
  font-size: 90px;
  color: black;
  transform: translateY(-50%);
}

.show-gift-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	gap: 12px
}

#spin_btn{
	border-radius: 50%;
	width: 55px;
	height: 55px;
	border: black 2px solid;
	background-color: yellow;
}

#wheel_btn_container{
	position:absolute;
	left:50%;top:50%;
	transform:translate(-50%,-50%);
	display:flex;
	align-items:center;
	justify-content:center;
}

#wheel_parts>div>div:nth-child(1){
	justify-content:start;
	clip-path: polygon(0% 0, 100% 50%, 0% 100%);
}
#wheel_parts>div>div:nth-child(2){
	justify-content:end;
	clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}

#wheel_parts>div>div{
	display:flex;
	align-items:center;
	padding:30px;
	font-size:20px;
	width: 50%;
}

#wheel_parts>div{
	height:57.735%;
	width:101%;
	position:absolute;
	left:50%;
	top:50%;
	display:flex;
}

.fw-wrapper{
	display:flex;
	justify-content:center;
	align-items:center;
  margin-top: 25px;
}

#wheel_parts{
	min-width:500px;
	min-height:500px;
	position:relative;
  transition: transform ease 5s;
}

.fw-wrapper *{
	box-sizing:border-box;
}

.fw-container{
  position: relative;
  border-radius: 50%;
  border:5px solid black;
  overflow: hidden;
}