
/* ===GIVEAWAY=== */
.giveaway {
    display: inline-block;
    margin: 0 -2px 40px -2px;
    position: relative;
    width: 75%;
}

.giveaway-wp {
    text-align: center;
    display: flex;
    overflow:hidden;
    border-radius: 20px;
    width: 100%;
}

.giveaway-wp img {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    border-radius: 20px;
}

.giveaway-wp img:hover {
    transform: scale(1.05);
    border-radius: 20px;
}

.giveaway-name {
  font-size: 20px;
  font-family: Komikax;
  font-weight: bold;
  color: rgb(8, 112, 223);
  overflow: hidden;
  padding: 10px 25px;
  transition: 0.5s;
  text-shadow: -2px -2px 0 rgb(255, 255, 255), 2px -2px 0 rgb(255, 255, 255), -2px 2px 0 rgb(255, 255, 255), 2px 2px 0 rgb(255, 255, 255);
}
/* ===END=GIVEAWAY=== */

/* ===RAFFLE=== */
.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-name {
    text-align: center;
    font-size: 15px;
    color: #c8d5f2;
    font-family: ExoSoftBold;
    overflow: hidden;
    height: 40px;
}
/* ===END=RAFFLE=== */