@font-face {
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBO5Xk.ttf) format('truetype');
}

html,
body {
	height: 100%;
	background: #DF474F;
}

textarea.form-control {
	width: 250px;
	background-color: #0000001a;
	border-color: #ffffff55;
	color: #fff;
	font-size: 20px;
	flex-grow: 1;
	border-radius: 10px;
	
}

textarea:focus, input:focus, btn:focus{
    outline: none;
}

.form-control:focus {
    color: #fff;
    background-color: #0000001a;
    border-color: #ffffff;
    /* outline: 0; */
    box-shadow: 0 0 0 0.2rem #fff0f0; 
	
}

:root {
	--border: #fff;
}

.logo {
	height: 60px;
	margin-bottom: 10px;
}

.btn {
	width: 100%;
}

.btn-primary {
	background-color: #fff;
	color: #162539;
	font-weight: bold;
	font-size: 30px;
	padding: 22px;
	border-radius: 100px;
	border: 3px solid #fff;
}

.btn-tertiary {
	background-color: #ffffff16;
	border-radius: 100px;
	
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	padding: 6px;
	width: auto;
}

.btn-tertiary:hover {
	background-color: #ffffff31;
	color: #fff;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
	background-color: #28c165!important;
	border: 3px solid #fff!important;
}

.btn:disabled {
	background-color: #ffffff12!important;
	border: 3px solid #ffffff12!important;
}


#wheel .text {
	font-size: 1.2px;
	font-weight: bold;
	fill: #000;
	font-family: 'Roboto', sans-serif;
	z-index: 55;
}


.wheel-col {
	overflow: hidden;
	height: 100vh;
}

.options-container {
	margin: 10vh;
	display: flex;
	flex-direction: column;
}

#wheel_container {
	background: var(--border);
	border: 30px solid var(--border);
	border-radius: 50%;
	box-shadow: 0 0 30px #00000063;
	position: relative;
	max-height: 200vh;
	max-width: 200vh;
	margin: -32% auto;
	margin-right: -50%;
	display: flex;
}


#marker {
	position: absolute;
	left: 0%;
	top: 48%;
	transform-origin: bottom center;
	border-top: 3vw solid transparent;
	border-bottom: 3vw solid transparent;
	border-left: 5vw solid var(--border);
	z-index: 9;

}

#wheel {
	transition: transform 6s cubic-bezier(0.22, 0.68, 0.10, 1.01);
}

.red {
	stroke: #DF474F;
	stroke-width: 2;
	stroke-linecap : round;
	stroke-dasharray: 100; 
	animation: red-anim 40s linear forwards infinite;
  }
  
  @keyframes red-anim {
	0% {
	  stroke-dashoffset: 500;
	}
	50% {
	  stroke-dashoffset: 1000;
	}  
	100% {
	  stroke-dashoffset: 500;
	} 
  }
  
  .white {
	stroke: #fff;
	stroke-width: 1.9;
	stroke-linecap : round;
	stroke-dasharray: 400; 
	animation: white-anim 20s linear forwards infinite;
  }
  
  @keyframes white-anim {
	0% {
	  stroke-dashoffset: 200;
	}
	50% {
	  stroke-dashoffset: 2000;
	}  
	100% {
	  stroke-dashoffset: 200;
	} 
  }
