flashCardBoxHolder{
	display:grid;
	grid-template-columns:auto auto;
	border:thin solid black;
	max-width:60vw;
}
generalOptions{
	display:flex;
}
.backgroundSelectHolder{
	display:flex;
	flex-flow: wrap;
	overflow:auto;
	max-width:600px;
	padding:5px;
	gap: 2px;
}
.backgroundSelectHolder input[type=radio]{
	display:none;
}

#flash_background_selector h4{
	color: #1D517D;
    font-weight: 500;
    line-height: 20px;
}

headerTextInstructions{
	display:block;
	font-weight:bold;
	width: 100%;
}

backgroundSelector{
	width:50px;
	height:50px;
	display:inline-block;
	margin:1px;
	border:thin solid rgba(0,0,0,0);
}
backgroundSelector:hover{
	box-shadow:1px 1px 2px rgba(0,0,0,0.5);
	position:relative;
	top:-2px;
	cursor:pointer;
	border:thin solid black;
}
backgroundSelector[selected]{
	box-shadow:1px 1px 2px rgba(0,0,0,0.5) inset;
	position:relative;
	top:1px;
	border:thin solid black;
}
#customColor{
	align-self:center;
	justify-self:center;
	display:flex;
    justify-content: center;
	column-gap: 5px;
}
backgroundOptions{
	border:thin solid black;
	justify-content: space-around;	
	display:flex;
}

#svgDisplay {
    width: 200px;
    /* height: 200px; */
    display: block;
    margin: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    aspect-ratio: 8.5 / 11;
    border-radius: 6px;
    box-shadow: 0px 3px 4px 3px rgb(0 0 0 / 25%);
    background-color: currentcolor;
}

[name="background_colors[]"]{
	padding: 0px;
    background: white;
    display: flex;
    height: 60px;
    width: 40px;
    border: none;
    box-shadow: 0px 2px 2px 2px rgb(0 0 0 / 25%);
}


#svgDisplay div {
    background: hsl(0deg 0% 100%);
    width: 100%;
    /* margin: 10%; */
    height: 100%;
    display: flex;
    /* position: absolute; */
    border-radius: 5px;
	display:none;
}


@media only screen and (max-device-width: 480px) {
	flashcardboxholder {
		grid-template-columns: auto;
		width: 100%;
		max-width: 100%;
	}
	backgroundOptions {
		flex-direction: column;
		overflow:auto;
	}

	.backgroundSelectHolder {
		display: flex;
		flex-flow: nowrap;
		overflow: auto;
		max-width: unset;
		border: thin solid black;
		height: unset;
		justify-content: space-between;
	}
	.backgroundSelectHolder backgroundselector{
		margin:0vh 1vw;
		height:15vw;
		width:15vw;
		border:Thin solid black;
	}
	#svgDisplay{
		margin: auto;
	}
	[name="background_colors[]"]{
		width:13vw;
		height:13vw;
		margin:1vw;
	}
}


