* {
	--primary-color : #E43958;
	--black-color : #42434D;
	--white-color : #f1e7da;
}

::backdrop {
	--bg-backdrop: #E43958;
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: var(--black-color);
	margin: 0;
	padding: 0px;
	box-sizing: border-box;
	background-color: var(--white-color);
	font-family: Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

li{
	display: flex;
	justify-content: space-between;
	border: 1px solid;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 5px;
	font-size: large;
	align-items: center;
	margin: 5px 0;
}

ul{
	width: 90%;
	max-height: 325px;
	overflow-y: auto;
	height: 325px;
	padding: 0;
	display: flex;
	flex-direction: column;
	margin: 0 auto 1em auto;
}

h2{
	margin: 0.25rem 0;
}


ul.round-list-container{
	width: 90%;
	overflow-y: auto;
	padding: 0;
	display: flex;
	flex-direction: column;
	margin: 0 auto 1em auto;
	max-height: 66vh;
	height: 66vh;
}

header{
	background-color: var(--white-color);
	padding: 15px 5px;
	font-size: 1.25em;
	/* box-shadow: rgb(0 0 0 / 8%) 0px 0.7rem 2.5rem; */
	font-weight: 900;
}

.flex {
	display: flex;
}

.align-center{
	align-items: center;
}

.inline-block{
	display: inline-block;
}

.space-between{
	justify-content: space-between;
}

header::first-letter{
	color: var(--primary-color);
	text-decoration: underline;
}

label{
	width: 100%;
}

span.index {
	color: var(--primary-color);
	margin-right: 8px;
	font-weight: 900;
}

.link{
	color: var(--primary-color);
    font-weight: 600;
    margin: 12px 0;
}

input[type="text"], button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	box-sizing: border-box;
	border: 1px solid var(--black-color);
	border-radius: 3px;
	background-color: var(--white-color);
	outline: none;
	color: var(--black-color);
}

input[type="number"]{
	outline: none;
    color: var(--primary-color);
    border: none;
    border-bottom: 1px solid;
    width: 20%;
	font-size: 1.25em;
	text-align: center;
}

input[type="checkbox"]:checked + label {
	font-weight: 900;
} 

.m-r-5{
	margin-right: 5px;
}

.m-b-10{
	margin-bottom: 10px;
}

input[type="text"]{
	padding: 1em;
}

main{
	display: flex;
	justify-content: center;
	flex-direction: column;
}

main.row{
	flex-direction: row;
}

main.footer{
	position: fixed;
	bottom: 0;
	padding: 8px;
	background-color: var(--white-color); 
	box-shadow: 5px -6px 19px rgb(0 0 0 / 8%);
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

.row{
	display: flex;
	flex-direction: row;
}

.row-end{
	justify-content: flex-end;
}
