.sapou-raffle__wrapper label {
    margin: 20px 0;
}
.sapou-raffle__wrapper input[type="text"] {
    border-left: 2px solid red;
    border-right: none;
    border-top: none;
    border-bottom: none;
    background-color: #F4F4F4;
    color: black;
    font-family: Inter, Sans-Serif;
    font-size: 25px;
    padding: 10px 27px;
    border-radius: 0;
    outline: none;
}
.sapou-raffle__wrapper .sapou-raffle__slider-inner {
    position: relative;
}
.sapou-raffle__wrapper .sapou-raffle__slider-percentages {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    background-color: transparent;
    height: 80px;
    width: 100%;
    position: absolute;
    top: 53px;
}
.sapou-raffle__wrapper .sapou-raffle__slider-names {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    background-color: transparent;
    color: red;
    margin-top: 30px;
}
.sapou-raffle__wrapper .sapou-raffle__slider-wrapper .sapou-raffle__slider-input-wrapper {
    width: 100%;
    height: 80px;
    background-image: url("https://emmentaler.ch/wp-content/uploads/2023/04/ES_LP_Slider.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.sapou-raffle__wrapper .sapou-raffle__slider-players-percentage, .sapou-raffle__slider-friends-percentage {
    font-size: 62px;
    color: white;
    z-index: 10;
    font-weight: bold;
}
.sapou-raffle__wrapper .sapou-raffle__slider-wrapper input[type="range"] {
    -webkit-appearance: none;
    position: absolute;
    width: 100%;
    height: 80px;
    background-color: transparent;
    text-align: center;
    z-index: 11;
}
.sapou-raffle__wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 112px;
    background-image: url("https://emmentaler.ch/wp-content/uploads/2023/04/slider_thumb.png");
    background-color: transparent;
    box-shadow: none;
    border: none;
    outline: none;
}
.sapou-raffle__wrapper input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 112px;
    background-image: url("https://emmentaler.ch/wp-content/uploads/2023/04/slider_thumb.png");
    background-color: transparent;
    box-shadow: none;
    border: none;
    outline: none;
}
.sapou-raffle__wrapper .sapou-raffle__submit-wrapper {
    display: flex;
    justify-content: end;
    padding-top: 50px;
}
.sapou-raffle__legal-wrapper {
    margin-top: 20px
}
.sapou-raffle__wrapper .sapou-raffle__legal-label {
    font-size: 12px;
    font-weight: bold;
}
.sapou-raffle__wrapper .sapou-raffle__legal-label a {
    text-decoration: underline
}
.sapou-raffle__wrapper input[type="checkbox"] {
    outline: none;
    background-color: #fff;
    border: 0.15em solid gray;
    width: 15px;
    height: 15px;
    border-radius: 0.15em;
    margin-right: 10px;
}
.sapou-raffle__wrapper input[type="checkbox"]:before {
    content: "";
    width: 10px;
    height: 23px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
}
.sapou-raffle__wrapper input[type="checkbox"]:checked:before {
    transform: scale(1);
}
.sapou-raffle__wrapper input[type="checkbox"]:checked {
    background-color: #C59D75
}
.sapou-raffle__wrapper .sapou-raffle__submit {
    background-color: red;
    border-radius: 10px;
    padding: 20px;
    font-size: 21px;
    font-style: normal;
    font-family: Inter, Sans-Serif;
}
@media only screen and (max-width: 460px) {
    .sapou-raffle__wrapper .sapou-raffle__slider-players-percentage, .sapou-raffle__slider-friends-percentage {
        font-size: 40px;
    }
   .sapou-raffle__wrapper .sapou-raffle__wrapper div>label {
        font-size: 12px;
        font-weight: bold;
    }
    .sapou-raffle__wrapper .sapou-raffle__legal-label {
        font-size: 8px;
        font-weight: bold;
    }
}




/* LOADER */


.loader_wrapper{
	width: 100%;
	display: flex;
	justify-content: center;

}

.loader {
	animation: rotate 2s infinite;
	height: 50px;
	width: 50px;
}

.loader:before,
.loader:after {
	border-radius: 50%;
	content: "";
	display: block;
	height: 20px;
	width: 20px;
}
.loader:before {
	animation: ball1 2s infinite;
	background-color: #E10528;;
	box-shadow: 30px 0 0 #E40025;
	margin-bottom: 10px;
}
.loader:after {
	animation: ball2 2s infinite;
	background-color: #756250;
	box-shadow: 30px 0 0 #E10528;
}

@keyframes rotate {
	0% { transform: rotate(0deg) scale(0.8) }
	50% { transform: rotate(360deg) scale(1.8) }
	100% { transform: rotate(720deg) scale(0.8) }
}

@keyframes ball1 {
	0% {
		box-shadow: 30px 0 0 #756250;
	}
	50% {
		box-shadow: 0 0 0 #756250;
		margin-bottom: 0;
		transform: translate(15px, 15px);
	}
	100% {
		box-shadow: 30px 0 0 #756250;
		margin-bottom: 10px;
	}
}

@keyframes ball2 {
	0% {
		box-shadow: 30px 0 0 #E10528;
	}
	50% {
		box-shadow: 0 0 0 #E10528;
		margin-top: -20px;
		transform: translate(15px, 15px);
	}
	100% {
		box-shadow: 30px 0 0 #E10528;
		margin-top: 0;
	}
}
