/* ===RAFFLE===*/
.raffle-detail-loop {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 40px 0;
}

.raffle-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: 200px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
	border: 1px solid rgb(8, 112, 223);
	cursor: auto;
}

.raffle-price {
    background: #f4a225;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    width: 160px;
    margin: 0;
}

.raffle-title {
    font-size: 20px;
    font-family: ExoSoftMedium;
    position: relative;
    color: #c8d5f2;
    text-align: center;
    height: 70px;
    vertical-align: middle;
    display: table-cell;
    width: 200px;
}

.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-btn {
    background: linear-gradient(to bottom, #007bff, #0046a1);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
}

.raffle-btn:hover {
    background: #0056d2;
}

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

.raffle-btn-winner {
    display: flex;
    align-items: center;
    background: #444;
    color: white;
    padding: 5px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.raffle-btn-winner img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.raffle-btn-winner-text {
    display: flex;
    flex-direction: column;
    text-align: left;
	width: 100%;
}
.raffle-btn-winner-text span:first-child {
    font-weight: bold;
}
.raffle-btn-winner-text span:last-child {
    font-size: 12px;
    opacity: 0.7;
}
/* ===END=RAFFLE===*/

/* ===BUY=RAFFLECOINS=== */
.buy-raffle-btn {
    float: right;
    z-index: 1;  
    position: relative;
}

.buy-raffle-btn a {
	display: inline-block;
    width: 250px;
    height: 40px;
    background: linear-gradient(to bottom, rgb(8, 112, 223), #0046a1);
    border-radius: 10px;
    font-family: ExoSoftLight;
    box-sizing: border-box;
    cursor: pointer;
}

.buy-raffle-btn a:hover {
    background: #0056d2;
}

.buy-raffle-btn span {
    font-family: ExoSoftMedium;
    display: block;
    position: relative;
    font-size: 20px;
    text-align: center;
    top: 7px;
    text-transform: uppercase;
}
/* ===END=BUY=RAFFLECOINS=== */

/* ===LOAD=MORE=== */
.raffle-btn-load-more {
    width: 100%;
    display: flex;
    justify-content: center;
}

.raffle-btn-load-more div {
    width: 250px;
    height: 50px;
    background: linear-gradient(to bottom, rgb(8, 112, 223), #0046a1);
    border-radius: 10px;
    font-family: ExoSoftLight;
    box-sizing: border-box;
    cursor: pointer;
}

.raffle-btn-load-more div:hover {
    background: #0056d2;
}

.raffle-btn-load-more span {
    font-family: ExoSoftMedium;
    display: block;
    position: relative;
    font-size: 25px;
    text-align: center;
    top: 7px;
}
/* ===END=LOAD=MORE=== */