@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');


body {
  padding: 0;
  margin: 0;
//  height: 100vh;
  width: 100vw;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  font-family: 'Titillium Web', 'Open Sans', sans-serif;
  font-size: 5vmin;
  background: #efefef;
}

.flex-container {
	display: flex;
	justify-content: center;
}

.no-border {
	border-width: 0;
}

.gap-5 {
	gap: 5px;
}

.gap-10 {
	gap: 10px;
}

.gap-20 {
	gap: 20px;
}

.column {
	flex-direction: column;
}

.row {
	flex-direction: row;
}

.flex-item {
	flex-basis: 100%;
	flex-grow: 1;	
}

section {
	flex-basis: 100%;
	flex-grow: 1;
	padding: 0 25px;
}

div {
	box-sizing: border-box;
	width: 100%;
}

.border-thin {
	border: solid 1px;
}

.color-orange {
	border-color: orange;
}

#header {
	background: rgba(164,28,49,1);
	background-image: url('/gfx/emblem_hik.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 30%;
	min-height: 150px;
	height: 350px;
}

#order_form {
	margin-top: 2rem;
	overflow: hidden;
  	transition: max-height 0.8s ease-out;
//	max-height: 800px; /* Sätt detta till en lämplig maxhöjd baserat på innehållet */
}

#order_form.hidden {
	max-height: 0;
}

section#order_form form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

section#order_form form .input_wrapper {
	flex-basis: 100%;
	flex-grow: 1;
}

input {
	box-sizing: border-box;
	width: 100%;
	font-size: 1.2rem;
    color: #212121;
    padding: 0.3rem 1.0rem;
    border-radius: 1rem;
    border: solid 1px #999;
    font-weight: 100;
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}	

input[type=submit] {
	background-color: rgb(164, 28, 49);
	color: white;
	font-weight: 700;
	font-family: 'Titillium Web', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.08rem;
	-webkit-font-smoothing: antialiased;
	background-color: rgb(164,78,99);
	background: linear-gradient(90deg, rgba(144,28,49,1), rgba(174,28,49,1));
}

#inputGetPosition {
	max-width: 50px;
//	background-image: url(/gfx/pictogram-position.webp);
//	background-size: contain;
//	background-repeat: no-repeat;
//	background-position: center;
	background-color: transparent;
	font-size: 1.6rem;
	color: rgb(144,28,49);
}

#pictoGetPosition {
	width: 30px;
}

.range_wrapper {
	display: flex;
	align-items: center;
	flex-direction: row;
}

.range input {
	padding: 0;
}








.gradient {
  background-image: linear-gradient(90deg, rgba(164,28,49,1) 0%, rgba(194,78,99,1) 56%, rgba(164,28,49,1) 100%);
  color: transparent;
  -webkit-background-clip: text;
  
//  animation: move 1s infinite;
}


.range {
	accent-color: rgb(164,28,49);
}

range::-webkit-slider-thumb {
	-webkit-appearance: none;
	box-shadow: -340px 0 0 320px #1597ff, inset 0 0 0 40px #1597ff, 340px 0 0 320px #00f18f, inset 0 0 0 40px #1597ff;
}

#bingolotter_logo {
	border: solid 1px black;
	width: 100%;
	background: url(/gfx/bingolotto_lotter.jpg);
	background-size: auto;
	height: 100px;
	background-position: center;
	background-repeat: no-repeat;
}

/******************************
	SECTIONS
	**************************/
section#order_submitted {
	display: none;
}


/******************************
	TYPOGRAPHTY
	**************************/
.form_exp {
	font-size: 1rem;
	font-weight: 600;
	color: #666;
	margin: 0;
	text-transform: uppercase;
}

.value-box {
	margin-left: 10px;
	padding: 5px 10px;
	border: 1px solid #ccc;
	border-radius: 2rem;
	background-color: #f4f4f4;
	width: 3rem;
    text-align: center;
}
}






















