/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Below here is just basic edits */


.ticket-qty-popover {
	position: absolute;
	top: -30px;
	background-color: background: var(--e-global-color-primary);
	padding: 3px 10px;
	text-wrap: nowrap;
	color: #fff;
	border-radius: 5px;
	font-size: 10px;
	left: -10px;
	pointer-events: none;
	user-select: none; /* Prevents text selection */
}


.competition-better-slider-container {
    width: 100%;
}

.competition-better-slider {
    position: relative;
    width: 100%;
    height: 8px;
    background-color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
}

.competition-better-slider-track {
    position: absolute;
    height: 100%;
    background-color: var(--e-global-color-primary);
    border-radius: 4px;
    width: 50%;
}

.competition-better-slider-thumb {
    position: absolute;
    top: -6px;
    left: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background-color: var(--e-global-color-primary);
    border-radius: 50%;
    cursor: pointer;
}

.competition-better-slider-value {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
}