@charset "utf-8";
/* CSS Document */

:root{
/*	----------------------------------------------------------  SIZES  */	
	--full-width: 100%;
	--inner-width: 1360px;
	--innerst-width: 800px;
	
	
/*	---------------------------------------------------------  COLORS  */
	--bg-color-test: rgba(255,0,0,0.1);
	
	--error-red: rgba(220,0,0,1);
	--confirmation-green: rgb(0, 171, 0);
	

/*	----------------------------------------------------------  FONTS  */	
	--saira: 'Saira', 'Arial', sans-serif;
	
	--thin: 		100;
	--extralight: 	200;
	--light: 	 	300;
	--regular: 	 	400;
	--medium: 	 	500;
	--semibold:  	600;
	--bold: 	 	700;
	--extrabold: 	800;
	--black: 	 	900;
}

* {
	box-sizing:border-box;
}

html, body {
	width:100%;
	height:auto;
	min-height:100vh;
	position:relative;
	
	padding:0;
	margin:0;
	
	font-family: var(--saira); 
	font-style: normal;
	font-size: 93.75%;
	color: rgba(0,0,0,1);
}

html{
	/*	force scrollbars  */
	overflow-y:scroll;
	scroll-behavior: smooth;	
}

	h1, h2, h3, h4, h5, h6, p, td, ul, li, figure, button {
		margin:0;
		padding:0;
		font-weight:normal;
		border:0;
		outline:0;
		background-color:transparent;
	}




/*	---------------------------------------------------------------------------------  BASE CLASSES  */

	.flxR{
		display:flex;
		flex-flow:row;
		flex-wrap:nowrap;
	}
	.flxC{
		display:flex;
		flex-flow:column;
		flex-wrap:nowrap;
	}
	.flxi{
		display: inline-flex;
	}
	.flxJCA	{ justify-content:space-around; }
	.flxJCB	{ justify-content:space-between; }
	.flxJCC	{ justify-content:center; }
	.flxJCE	{ justify-content:flex-end; }
	.flxJCS	{ justify-content:flex-start; }

	.flxAIC	{ align-items:center; }
	.flxAIE	{ align-items:flex-end; }
	.flxAIS	{ align-items:flex-start; }
	.flxAIX	{ align-items:stretch; }

	.flxWrp	{ flex-wrap:wrap; }


	.grd{
		display: grid;
	}


	.fllW{
		width:100%;
		height:auto;
	}
	.fllH{
		height:100%;
		width:auto;
	}
	.fllWH{
		width:100%;
		height:100%;
		display: block;
	}

	.innerWidth{
		width:100%;
		max-width: var(--inner-width);
		margin:0 auto;
	}

	.innerstWidth{
		width:100%;
		max-width: var(--innerst-width);
		margin:0 auto;
	}

	.scrH{
		height: auto;
		min-height: 100vh;
	}



	h1{
		padding: 0 25px 10px;

		font-family: var(--saira);
		font-size: 2.8rem;
		font-weight: var(--extrabold);
		font-style: italic;
		letter-spacing: 0.05rem;
		line-height: 1;
		text-transform: uppercase;
		text-align: center;
		
		margin: 10px 0 10px;
	}
	@media screen and (min-width: 666px){
		h1{
			font-size: 3.6rem;
		}
	}


	h2{
		padding: 0 25px 10px;

		font-family: var(--saira);
		font-size: 1.6rem;
		font-weight: var(--semibold);
		font-style: italic;
		letter-spacing: 0.05rem;
		line-height: 1.1;
		text-transform: uppercase;
		text-align: center;
		
		margin: 30px 0 20px;
	}

		h2:first-of-type {
			margin-top: 0;
		}

	p{
		font-family: var(--saira);
		font-size: 1.25rem;
		font-style: italic;
		color: black;
	}



	hr{
		display: block;
		margin: 30px 0;
		border: 0;
		border-top: 1px solid rgba(0,0,0,0.1);
	}

	.errorsWrp{
		width: 100%;
		
		display: block;

		color: var(--error-red);
	}
		.errorsFramed{
			width: calc(100% + 40px);

			margin: 0 -20px 20px;
			padding: 20px 20px;

			border: 1px  solid var(--error-red);
			border-radius: 10px;

			background-color: rgba(255,220,220,1);
		}
		.errorsWrp p{
			color: inherit;
		}


.confirmed{
	color: var(--confirmation-green);
	font-weight: 600;
}
.confirmed:not(.confirmed:first-of-type){
	padding: 20px 0 0;
}

	.notifications{
		margin: 10px 0 15px;
	}






/*	---------------------------------------------------------------------------------------  HEADER  */
.csv2pdf_hdrWrp{
	width:100%;
	
	position: relative;
	top: 50px;
}

.csv2pdf_hdr{
	width:100%;
	max-width: 800px;
	
	padding: 0 25px;
}




/*	---------------------------------------------------------------------------------  MAIN CONTENT  */
.csv2pdf_mainWrp{
	width:100%;
	
	position: relative;
	top: 50px;
}

.csv2pdf_main{
	width:100%;
	max-width: 800px;
	
	padding: 0 40px;
}

.csv2pdf_blockWrp{
	width: calc(100% + 40px);
	max-width: 800px;

	margin: 0 -20px;
}

.csv2pdf_block{
	width: 100%;
	height: auto;

	padding: 20px 20px 40px;

	overflow: hidden;
	word-wrap: break-word;

	border: 1px solid rgba(0,0,0,0.1);
	/*
	border-top-left-radius: 30px;
	border-bottom-right-radius: 30px;
	*/
	border-radius: 10px;

	background: radial-gradient(circle, rgba(255, 231, 248, 0) 0%, rgba(184, 219, 255, 0.3) 70%, rgba(216, 236, 255, 0.9) 100%);
}
.csv2pdf_blockRaceSeries{ grid-area: 1 / 1 / 2 / 2; }
.csv2pdf_blockDriverData{ grid-area: 2 / 1 / 3 / 2; }

@media screen and (min-width: 800px){
	.csv2pdf_blockRaceSeries{ grid-area: 1 / 1 / 3 / 2; }
	.csv2pdf_blockDriverData{ grid-area: 1 / 2 / 2 / 2; }
}

.csv2pdf_hint{
	font-size: 0.9rem;
	line-height: 0.9rem;
	opacity: 0.5;
}


.csv2pdf_fileUploadForm {
	width: calc(100% + 40px);
	max-width: 800px;

	margin: 0 -20px;

	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
}
@media screen and (min-width: 800px){
	.csv2pdf_fileUploadForm {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

form, input{
	font-family: var(--saira);
}

label{
	font-size: 1.25rem;
	font-style: italic;
}
input[type=radio]{
	accent-color: #d3a663;
}

input[type=file]{
	margin: 0 0 15px;
	font-family: var(--saira);
	font-style: italic;

	text-overflow: ellipsis;
}

input[type=submit],
.csv2pdf_nextStep{
	width: 100%;
	min-height: 70px;

	padding: 0 20px;

	font-size: 1.6rem;
	font-weight: var(--medium);
	font-style: italic;
	text-align: left;
	text-decoration: none;
	color: white;

	background: radial-gradient(circle, hsl(215deg 100% 41% / 70%) 0%, hsl(215 100% 41% / 1) 100%);
	border: 1px solid rgba(0,0,0,0.1);
	/*
	border-top-left-radius: 30px;
	border-bottom-right-radius: 30px;
	*/
	border-radius: 10px;

	cursor: pointer;
}
input[type=submit]:hover,
.csv2pdf_nextStep:hover{
	background-color: hsl(215, 100%, 41%);
}

@media screen and (min-width: 800px) {
	input[type=submit] {
		min-height: unset;
	}
	.csv2pdf_nextStep{
		max-width: 400px;
	}
}

.csv2pdf_nextStep{
	margin: 20px 0 0;
}

.csv2pdfRestart{
	display: block;
	margin: 50px 0 25px;
}

.csv2pdf_devNotes{
	margin: 0 0 100px;
	opacity: 0.4;
}
