.carousel {
    background-image: url('/images/backgrounds/featured_tournament_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel-indicators {
	gap: 10px;
    margin: 20px;
	justify-content: flex-end;
}

.carousel-indicators button {
	border-radius: 2px !important;
	height: 20px !important;
	width: 40px !important;
    border: solid 1px white !important;
    background-color: transparent !important;
    opacity: 1 !important;
}

.carousel-indicators button.active {
    background-color: white !important;
}

.carousel-indicators button:not(.active):hover {
    background-color: rgb(255 255 255 / 10%) !important;
}

.bw-match-expanded .bw-match-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px;
    justify-items: center;
    align-content: center;
}

.bw-match-info .scores {
    display: grid;
}

.bw-match-info .scores h4 {
    color: #ffffff33;
}

.bw-match-info .scores h1 {
    color: white;
}

.bw-match-info h4 {
    text-align: center;
}

.ring-container {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.circle {
    width: 45%;
    height: 45%;
    background-color: red;
    border-radius: 50%;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
}

.ringring {
    border: 2px solid red;
    -webkit-border-radius: 30px;
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0;
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: scale(1.0, 1.0);
        opacity: 0.0;
    }
}

.bw-featured-matches-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 35px;
}

.bw-main-content-item.featured-matches {
    background-image: linear-gradient(160deg, rgb(144 39 52/ 75%) 0%, rgb(144 39 52 / 25%) 7.5%, transparent 17%), url('/images/backgrounds/featured-matches-lol.png');
    background-size: cover;
}

.bw-main-content-item.upcoming-matches {
    background-image: linear-gradient(160deg, rgb(50 77 153 / 75%) 0%, rgb(50 77 153 / 25%) 7.5%, transparent 17%);
}

.bw-main-content-item.ended-matches {
    background-image: linear-gradient(160deg, rgb(131 136 167 / 75%) 0%, rgb(131 136 167 / 25%) 7.5%, transparent 17%);
}


.bw-main-content-item {
    display: grid;
    grid-auto-flow: row;
    grid-auto-rows: min-content;
    position: relative;
}

.bw-main-item-header {
    z-index: 1;
    min-height: 90px;
    padding-left: 50px;
    padding-right: 50px;
}

.bw-main-item-content {
    z-index: 1;
    margin: 0 50px 50px 50px;    
}

.bw-main-item-header > span {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 18px;
    font-weight: normal;
    text-transform:uppercase;
    color: var(--c-haze-blue);
}

.bw-main-content {
    height: min-content;
    color: white;
    display: grid;
    grid-row-gap: 15px;
    grid-auto-flow: row;
}

main.home .bw-match.collapsed .versus {
    background-color: #282835; /* $BG jaguar */
    position: relative;
}

main.home .bw-match.collapsed .versus::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.35), transparent 2%, transparent 98%, rgba(0, 0, 0, 0.35))
}


.featured-match .glowing-logo {
    position: relative;
    height: 50px;
}

.featured-match .glowing-logo img {
    position: absolute;
    object-fit: contain;
    inset: 0;
    margin: auto;
}

.featured-match .glowing-logo img:first-child {
    height: 100%;
    filter: blur(10px) contrast(0.7);
    opacity: 0.65;
}

.featured-match .glowing-logo img:last-child {
    height: 90%;
}


.featured-match .match-status-indicator {

    justify-self: end;
    font-size: small;
    border-right-color: var(--status-default-gray);
}