.learn-page {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	align-items: center;
}

.learn-new-word-container {
	width: 100%;
	height: 40%;
	background-color: rgb(253,94,83);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 0px 6px lightgrey;
}

.learn-page-speaker {
	position: relative;
	width: 40px;
	height: 40px;
	background-size: auto 60%;
	background-repeat: no-repeat;
	background-position: center;
	margin: 10px;
	background-color: #e3e3e3;
	cursor: pointer;
	box-shadow: 2px 2px 6px lightgrey;
	border-width: 0px;
	border-radius: 3px;
	outline: none;
}

.learn-top-bar {
	position: absolute;
	top: 0px;
	left: 0px;
	display: flex;
	flex-direction: row;
	width: 100%;
	padding-top: 15px;
}

.learn-home-button {
	background-image: url(./img/home.svg);
	background-size: auto;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,0);
	border-width: 0px;
	height: 20px;
	width: 20px;
	cursor: pointer;
	margin-left: 15px;
}

.learn-new-word {
	font-family: hand-bold;
	font-size: 64px;
	color: whitesmoke;
	margin: 0px;
	margin-top: 10vh;
	margin-bottom: 2vh;
	text-shadow: 1px 1px 2px grey;
}

.learn-type {
	font-family: hand;
	font-size: 16px;
	background-color: whitesmoke;
	color: darkslategrey;
	border-width: 0px;
	border-radius: 3px;
	margin: 0px;
    padding: 3px 5px;
    box-shadow: 1px 1px 4px grey;
    height: fit-container;
}

.info-slot-content-html .learn-type {
	margin-right: 20px;
}

.learn-context-container {
	height: calc(60% - 10px);
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 10px;
}

.learn-info-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	flex-grow: 1;
	max-width: min(70%, 800px);
}

.learn-type-container {
	flex-grow: 2;
}

.learn-slot-container {
	flex-grow: 7;
	display: flex;
	flex-direction: column;
}

.learn-button {
	border-width: 0px;
	background-color: white;
	font-family: hand-bold;
	font-size: 30px;
	width: 10%;
	cursor: pointer;
	height: 30%;
}

.learn-button-disabled {
	border-width: 0px;
	background-color: white;
	font-family: hand-bold;
	font-size: 30px;
	width: 10%;
	height: 30%;
}

.learn-button:hover {
	background-color: lightgrey;
}