/* EVENT MATCHES */

.rxf-fight {
	position: relative;
	background-color: var(--e-global-color-2aa4c34);
	border-radius: 10px;
}
.rxf-fight.rxf-mainfight {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, var(--e-global-color-2aa4c34) 70%, var(--e-global-color-el_color_1_4));
}

@media (min-width: 1024px) {
	.rxf-fight {
		padding: 20px 20px 0;
	}
	.rxf-fight.rxf-mainfight {
		padding: 30px 30px 0;
	}
}
@media (min-width: 767px) and (max-width: 1024px) {
	.rxf-fight {
		padding: 20px 20px 0;
	}
	.rxf-fight.rxf-mainfight {
		padding: 20px 20px 0;
	}
}
@media (max-width: 767px) {
	.rxf-fight {
		padding: 10px 10px 0;
	}
	.rxf-fight.rxf-mainfight {
		padding: 10px 10px 0;
	}
}

.rxf-fight__content {
	position: relative;
}

.rxf-fight__opponents {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.rxf-fight__corner {
	position: relative;
	width: 50%;
	display: flex;
}
@media (min-width: 1024px) {
	.rxf-mainfight .rxf-fight__corner {
		padding: 0 60px;
	}
}
.rxf-fight .rxf-fight__corner.blue {
	justify-content: flex-end;
}

.rxf-fight__corner .rxf-fight__profilepic {
	width: 100%;
	max-width: 250px !important;
	display: block;
	margin: 0;
	filter: grayscale(1);
	transition: all .2s ease-in-out;
}
.rxf-mainfight .rxf-fight__corner .rxf-fight__profilepic {
	max-width: 400px !important;
}
.rxf-fight__corner .rxf-fight__profilepic:hover {
	filter: grayscale(0)
}

/* default: hidden off screen */
.rxf-fight .rxf-fight__corner.red {
	transform: translateX(-100%);
	opacity: 0;
}
.rxf-fight .rxf-fight__corner.blue {
	transform: translateX(100%);
	opacity: 0;
}

/* animate them in when visible */
.rxf-fight.is-visible .rxf-fight__corner {
	transform: translateX(0);
	opacity: 1;
	transition: transform 250ms ease, opacity 250ms ease;
}

.rxf-fight__badges {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	display: inline-flex;
    flex-direction: row;
    gap: 5px;
	justify-content: flex-end;
}
.rxf-fight__badges.rxf-fight__badges--left {
	flex-direction: row-reverse;
	padding-left: 10px;
}
.rxf-fight__badges.rxf-fight__badges--right {
	flex-direction: row;
	padding-right: 10px;
}
.rxf-mainfight .rxf-fight__badges {
	bottom: 0;
	flex-direction: column;
    padding: 0;
    top: 0;
    justify-content: center;
}
.rxf-mainfight .rxf-fight__badges.rxf-fight__badges--right {
	right: 0;
	left: auto;
}
.rxf-fight__rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	background-color: var( --e-global-color-el_color_1_3 );
	text-align: center;
	font-family: var(--e-global-typography-4e24f68-font-family), sans-serif;
	font-weight: 600;
	color: var(--e-global-color-el_color_0);
}
.rxf-fight__flag {
	display: block;
	border-radius: 3px !important;
}
@media (min-width: 1024px) {
	.rxf-fight__badges {
		bottom: -15px;
	}
	.rxf-mainfight .rxf-fight__badges {
		max-width: 40px;
	}
	.rxf-fight__rank {
		width: 40px;
		max-width: 40px;
		height: 30px;
		text-align: center;
		font-size: 1em;
	}
	.rxf-fight__flag {
		width: 40px !important;
		height: 30px !important;
	}
}
@media (min-width: 767px) and (max-width: 1024px) {
	.rxf-fight__badges {
		bottom: -15px;
	}
	.rxf-mainfight .rxf-fight__badges {
		max-width: 40px;
	}
	.rxf-fight__rank {
		width: 40px;
		max-width: 40px;
		height: 30px;
		text-align: center;
		font-size: 1em;
	}
	.rxf-fight__flag {
		width: 40px !important;
		height: 30px !important;
	}
}
@media (max-width: 767px) {
	.rxf-fight__badges {
		bottom: -10px;
	}
	.rxf-mainfight .rxf-fight__badges {
		max-width: 27px;
	}
	.rxf-fight__rank {
		width: 427px;
		max-width: 27px;
		height: 20px;
		text-align: center;
		font-size: 0.8em;
	}
	.rxf-fight__flag {
		width: 27px !important;
		height: 20px !important;
	}
}

.rxf-fight__info {
    width: 100%;
    font-size: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
	line-height: 1;
	color: var(--e-global-color-el_color_4);
}
.rxf-fight__main {
	font-weight: 400;
	color: var(--e-global-color-el_color_1);
}
.rxf-fight__meta {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}
@media (min-width: 1024px) {
	.rxf-fight__info {
		position: absolute;
		z-index: 2;
		top: 0;
		bottom: 0;
		pointer-events: none;
	}
	.rxf-fight__main {
		font-size: 1.4em;
		line-height: 1.3;
		margin-bottom: 30px;
	}
	.rxf-fight__meta {
		margin-bottom: 10px;
	}
}
@media (min-width: 767px) and (max-width: 1024px) {
	.rxf-fight__info {
		position: absolute;
		z-index: 2;
		top: 0;
		bottom: 0;
		pointer-events: none;
	}
	.rxf-fight__main {
		font-size: 1.2em;
		line-height: 1.3;
		margin-bottom: 20px;
	}
	.rxf-fight__meta {
		margin-bottom: 10px;
	}
}
@media (max-width: 767px) {
	.rxf-fight__info {
		border-top: 1px solid var(--e-global-color-el_color_1);
		padding-top: 10px;
	}
	.rxf-mainfight .rxf-fight__info {
		padding-bottom: 10px;
	}
	.rxf-fight__main {
		position: absolute;
		top: 0;
		font-size: 0.9em;
		line-height: 1;
		padding: 10px;
		background-color: rgba(255, 255, 255, 0.7);
	}
	.rxf-fight__meta {
	}
}


.rxf-fight__category {
	color: var(--e-global-color-el_color_0);
	background-color: var(--e-global-color-el_color_1_4);
	font-family: var(--e-global-typography-4e24f68-font-family), sans-serif;
	font-weight: 600;
	line-height: 1.2;
    padding: 3px 6px;
	border-radius: 3px;
}
.rxf-fight__ruleslink {
	color: var(--e-global-color-el_color_0);
	background-color: var(--e-global-color-el_color_1_4);
	font-family: var(--e-global-typography-4e24f68-font-family), sans-serif;
	font-weight: 600;
	line-height: 1.2;
    padding: 3px 6px;
	border-radius: 3px;
	transition: all .2s ease-in-out;
	pointer-events: all;
}
.rxf-fight__ruleslink:hover {
	color: var(--e-global-color-el_color_0);
	background-color: var(--e-global-color-el_color_1_3);
}
@media (min-width: 1024px) {
	.rxf-fight__category {
		font-size: 0.9em;
	}
	.rxf-fight__ruleslink {
		font-size: 0.9em;
	}
}
@media (min-width: 767px) and (max-width: 1024px) {
	.rxf-fight__category {
		font-size: 0.8em;
	}
	.rxf-fight__ruleslink {
		font-size: 0.8em;
	}
}
@media (max-width: 767px) {
	.rxf-fight__category {
		font-size: 0.7em;
	}
	.rxf-fight__ruleslink {
		font-size: 0.7em;
	}
}

.rxf-fight__vs {
	font-family: var(--e-global-typography-4e24f68-font-family), sans-serif;
	font-weight: 600;
	margin: 0;
	line-height: 1;
}
.rxf-fight__name {
	font-family: var(--e-global-typography-4e24f68-font-family), sans-serif;
    font-weight: var(--e-global-typography-4e24f68-font-weight);
    color: var(--e-global-color-el_color_7);
    background-color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
}
@media (min-width: 1024px) {
	.rxf-fight__namesvs {

	}
	.rxf-fight__vs {
		font-size: 1rem;
	}
	.rxf-fight__name {
		font-size: 2em;
		line-height: 1.3;
		letter-spacing: -0.05em;
		padding: 10px;
	}
	.rxf-mainfight .rxf-fight__name {
		font-size: 3em;
	}
}
@media (min-width: 767px) and (max-width: 1024px) {
	.rxf-fight__namesvs {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.rxf-fight__vs {
		font-size: 1rem;
	}
	.rxf-fight__name {
		font-size: 1.7em;
		line-height: 1.3;
		letter-spacing: -0.05em;
		padding: 10px;
	}
	.rxf-mainfight .rxf-fight__name {
		font-size: 2.1em;
	}
}
@media (max-width: 767px) {
	.rxf-fight__namesvs {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 10px;
		gap: 10px;
	}
	.rxf-fight__vs {
		font-size: 0.8rem;
	}
	.rxf-fight__name {
		font-size: 1.2em;
		line-height: 1.3;
		letter-spacing: -0.05em;
		padding: 5px 10px;
	}
	.rxf-mainfight .rxf-fight__name {
		font-size: 1.3em;
	}
}

.rxf-fight__bet {
	display: flex;
	justify-content: center;
}
.rxf-fight__mainbet {
	display: flex;
	justify-content: center;
}
.rxf-fight__betbtn {
	pointer-events: all;
}
@media (min-width: 1024px) {
	.rxf-fight__bet {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.rxf-fight-1v1 .rxf-fight__bet {
		border-top: 1px solid var(--e-global-color-el_color_1);
	}
	.rxf-fight__mainbet {
		padding-top: 40px;
	}
	.rxf-fight__betbtn {
		min-width: 200px !important;
	}
}
@media (min-width: 767px) and (max-width: 1024px) {
	.rxf-fight__bet {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.rxf-fight-1v1 .rxf-fight__bet {
		border-top: 1px solid var(--e-global-color-el_color_1);
	}
	.rxf-fight__mainbet {
		padding-top: 20px;
	}
	.rxf-fight__betbtn {
		min-width: 200px !important;
	}
}
@media (max-width: 767px) {
	.rxf-fight__bet {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.rxf-fight__mainbet {
		padding-top: 10px;
	}
	.rxf-fight__betbtn {
		min-width: 200px !important;
	}
}

/* 5way */
.rxf-fight__info5way {
	position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
	margin-bottom: 10px;
}
.rxf-fight__fighter {
	position: relative;
	border: 1px solid var(--e-global-color-el_color_1);
	border-radius: 5px;
}
@media (min-width: 1024px) {
	.rxf-fight-5way .rxf-fight__opponents {
		margin-bottom: 10px;
		margin-left: -10px;
		margin-right: -10px;
		flex-wrap: nowrap;
		font-size: 0.9rem;
	}
	.rxf-fight__fighter {
		width: 20%;
		margin: 10px;
		padding-top: 10px;
	}
}
@media (min-width: 767px) and (max-width: 1024px) {
	.rxf-fight-5way .rxf-fight__opponents {
		margin-bottom: 10px;
		flex-wrap: wrap;
		font-size: 0.9rem;
		width: 100%;
        justify-content: center;
	}
	.rxf-fight__fighter {
		width: calc(33.33% - 20px);
		margin: 10px;
		padding-top: 10px;
	}
}
@media (max-width: 767px) {
	.rxf-fight-5way .rxf-fight__opponents {
		margin-bottom: 10px;
		flex-wrap: wrap;
		font-size: 0.8rem;
        justify-content: center;
	}
	.rxf-fight__fighter {
		width: calc(50% - 10px);
		margin: 5px;
		padding-top: 10px;
	}
}

/* default: hidden off screen */
.rxf-fight .rxf-fight__fighter {
	transform: translateY(100%);
	opacity: 0;
}

/* animate them in when visible */
.rxf-fight.is-visible .rxf-fight__fighter {
	transform: translateY(0);
	opacity: 1;
	transition: transform 250ms ease, opacity 250ms ease;
}

.rxf-fight-5way .rxf-fight__fighter:after {
    content: 'VS';
    font-family: var(--e-global-typography-4e24f68-font-family), sans-serif;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    color: var(--e-global-color-el_color_0);
    position: absolute;
    background-color: var(--e-global-color-el_color_1);
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    z-index: 2;
}
@media (min-width: 1024px) {
	.rxf-fight-5way .rxf-fight__fighter:after {
		font-size: 1rem;
		position: absolute;
		top: 50%;
		right: -30px;
		transform: translate(0, -50%);
		width: 40px;
		height: 30px;
	}
	.rxf-fight-5way .rxf-fight__fighter:last-child:after {
		display: none;
	}
}
@media (min-width: 767px) and (max-width: 1024px) {
	.rxf-fight-5way .rxf-fight__fighter:after {
		font-size: 1rem;
		position: absolute;
		top: 50%;
		right: -30px;
		transform: translate(0, -50%);
		width: 40px;
		height: 30px;
	}
	.rxf-fight-5way .rxf-fight__fighter:nth-child(3n):after {
		display: none;
	}
	.rxf-fight-5way .rxf-fight__fighter:last-child:after {
		display: none;
	}
}
@media (max-width: 767px) {
	.rxf-fight-5way .rxf-fight__fighter:after {
		font-size: 0.6rem;
        position: absolute;
        top: 50%;
        right: -18px;
        transform: translate(0, -50%);
        width: 24px;
        height: 20px;
	}
	.rxf-fight-5way .rxf-fight__fighter:nth-child(2n):after {
		display: none;
	}
	.rxf-fight-5way .rxf-fight__fighter:last-child:after {
		display: none;
	}
}

.rxf-fight__fighter .rxf-fight__profilepic {
	display: block;
	margin: 0 auto;
	filter: grayscale(1);
	transition: all .2s ease-in-out;
}
.rxf-fight__fighter .rxf-fight__profilepic:hover {
	filter: grayscale(0)
}

.rxf-fight__fighter .rxf-fight__name {
	position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
	font-size: 1.4em;
    text-align: center;
}

.rxf-fight__fighter .rxf-fighter__meta {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
    gap: 5px;
}
@media (min-width: 1024px) {
	.rxf-fight__fighter .rxf-fighter__meta {
		bottom: -15px;
	}
}
@media (min-width: 767px) and (max-width: 1024px) {
	.rxf-fight__fighter .rxf-fighter__meta {
		bottom: -15px;
	}
}
@media (max-width: 767px) {
	.rxf-fight__fighter .rxf-fighter__meta {
		bottom: -10px;
	}
}

/* RESPONSIVE */
@media (min-width: 1024px) {
}
@media (min-width: 767px) and (max-width: 1024px) {
}
@media (max-width: 767px) {
}