/* ===CAROUSEL===*/
.carousel-indicators {
    display: flex;
    justify-content: right;
    margin-top: 10px;
}

/*.indicator {
    width: 12px;
    height: 12px;
    margin: 5px;
    background-color: gray;
    border-radius: 50%;
    cursor: pointer;
}

.indicator.active {
    background-color: orange;
}*/

.indicator {
    background: rgb(8, 112, 223);
    border: none;
    padding: 8px 12px;
    margin-left: 5px;
    border-radius: 100%;
    cursor: pointer;
    font-size: 20px;
}

.hide {
    opacity: 0;
    cursor: default;
}

.carousel-indicators,
#raffleCarousel,
#raffleCarousel * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#raffleCarousel img {
    pointer-events: none;
}
/* ===END=CAROUSEL===*/
/* ===LOOP=== */
.detail-loop {
    padding-top: 10px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.detail-loop-carousel {
    display: inline-flex;
    transition: transform 1s ease-in-out;
}

.detail-loop-carousel a {
    margin-right: 14px;
}
/* ===END=LOOP=== */
/* ===PARTNERSHIP=== */
.main-partnership img {
    width: 242px;
}
/* ===END=PARTNERSHIP=== */
/* ===GIVEAWAY=== */
.giveaway {
    display: inline-block;
    position: relative;
    margin-right: 14px;
}

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

.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-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;
	margin-right: 14px;
}

.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);
}
/* ===END=RAFFLE=== */