#language_buttons{
	text-align:center;	
}
/* #full_tutorial-box{
	width:60%;
	margin:12px auto 8px auto;
} */
.full_tutorial-manualvideo-box{
	margin-top:8px;	
	display: flex;
	gap: 1rem;

}
.full_tutorial-link-box{
	padding: 1rem;
	flex-grow: 1;
}
.full_tutorial-link{
	font-size:120%;
}
.video-thumbnail-wrapper {
    text-align: center;
    position: relative;
	max-width: 30%;
}
.video-thumbnail-wrapper img {
    width: 90%;
    height: auto;
    /* padding: 1rem; */
}
.play-button {
    width: 75px; /* Width of the button */
    height: 75px; /* Height of the button */
    background-color: #00000042; /* Background of the play button */
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Makes the container circular */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.play-button:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 30px; /* Adjust size of play triangle */
    border-color: transparent transparent transparent white; /* Triangle color */
    position: absolute;
}
@media only screen and (max-width: 1250px){
	.video-thumbnail-wrapper {
		max-width: none;
	}
}

@media only screen and (max-width: 1023px){
	#full_tutorial-box {
		width: 100%;
		text-align:center;
		margin: 12px 0px 8px 0px;
	}
	.full_tutorial-manualvideo-box{
		flex-direction: column;
		align-items: center;
	}
}
/* #quick-guides{
	
} */
#quick-guides ul{
	list-style:none;
	width:80%;
	margin:0px auto;
}
#quick-guides li{
	font-size:110%;
	padding:16px 0px;
	border-bottom:1px solid #003366;
}