.raffle-info {
  text-align: right;
}

.raffle-info a {
  text-decoration: underline;
}

.raffle-info a:hover {
  color: #f1f835;
}

.raffle-detail-loop {
    width: 100%;
}

.raffle-detail {
    width: 260px;
    display: inline flow-root;
    background: rgba(0, 0, 0, 0.8);
    margin: 0 9px 9px 0;
    padding: 12px;
    border: 3px solid rgb(8, 112, 223);
    border-radius: 25px;
}

.raffle-title {
    font-size: 24px;
    font-family: ExoSoftMedium;
    padding-bottom: 25px;
    position: relative;
    color: #c8d5f2;
    margin: 10px 20px 10px 20px;
}

.raffle-title {
    text-align: center;
}

.raffle-title:after {
    width: 32px;
    height: 5px;
    background: rgb(8, 112, 223);
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 5px;
    left: 50%;
    margin-left: calc(-32px / 2);
}

.raffle-detail-name {
    height: 90px;
}

.raffle-detail-info {
    font-size: 15px;
    padding-top: 10px;
}

.raffle-prize-image {
    text-align: center;
    display: flex;
    justify-content: center;
}

.raffle-prize-image img {
    transition: 0.5s;
    max-width: 100%;
    max-height: 160px;
    height: auto;
}

.raffle-prize-image.user-winner img {
    transition: 0.5s;
    max-width: 100%;
    max-height: 160px;
    height: auto;
    border-radius: 50%;
}

.raffle-prize-name {
    text-align: center;
    font-size: 15px;
    color: #c8d5f2;
    font-family: ExoSoftBold;
    overflow: hidden;
    height: 40px;
}

.buy-raffle-btn {
    float: right;
    z-index: 1;  
    position: relative;
}

.buy-raffle-btn a {
	display: inline-block;
	min-height: 75px;
	border: 5px solid rgb(0, 0, 0);
	background: rgb(8, 112, 223);
	width: 100%;
	border-radius: 50px;
	box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
	transition: 0.5s;
}

.buy-raffle-btn a:hover {
	box-shadow: 0 0 20px rgb(8, 112, 223);
	transition: 0.5s;
}

.buy-raffle-btn span {
	font-size: 24px;
	font-family: ExoSoftMedium;
	display: block;
    text-align: center;
    padding: 0 15px;
}

.raffle-finished {
    border: 3px solid rgb(255, 240, 0);
}